cp_library_rs/lib.rs
1//! # Rustによる競技プログラミング用ライブラリ
2
3#![allow(non_snake_case)]
4#![allow(dead_code)]
5
6pub mod algebraic_structure;
7pub mod convolution;
8pub mod data_structure;
9pub mod geometry;
10pub mod graph;
11pub mod linear_algrebra;
12pub mod number_theory;
13pub mod string;
14pub mod tree;
15pub mod utils;
16
17// macro
18mod cfor;
19mod chmax;
20mod chmin;
21mod debug;
22mod debug2D;
23mod get;
24mod in_ex;