numberlab 0.1.9

A collection of numerical algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub(crate) mod one;

/// Collection of various numerical algorithms
pub mod algorithm;
/// Collection of coordinate formulas
pub mod coordinate;
/// Collection of Figurate sequence
pub mod figurate;
/// Collection of various number formula algorithms
pub mod formula;
/// Collection of various number pattern algorithms
pub mod pattern;
/// Collection of Prime algorithms
pub mod prime;
/// Collection of various number sequence algorithms
pub mod sequence;
/// Collection of various Data Structure
pub mod structure;