1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! # Rustによる競技プログラミング用ライブラリ

#![allow(non_snake_case)]
#![allow(dead_code)]

pub mod algebraic_structure;
pub mod convolution;
pub mod data_structure;
pub mod geometry;
pub mod graph;
pub mod linear_algrebra;
pub mod number_theory;
pub mod string;
pub mod utils;

// macro
mod cfor;
mod chmax;
mod chmin;
mod debug;
mod debug2D;
mod get;
mod in_ex;