numberlab/
lib.rs

1/// Collection of various numerical algorithms
2pub mod algorithm;
3/// Collection of coordinate formulas
4pub mod coordinate;
5/// Collection of Figurate sequence
6pub mod figurate;
7/// Collection of various number formula algorithms
8pub mod formula;
9/// Collection of various number pattern algorithms
10pub mod pattern;
11/// Collection of Prime algorithms
12pub mod prime;
13/// Collection of various number sequence algorithms
14pub mod sequence;
15/// Collection of various Data Structure
16pub mod structure;