flowstdlib/math/mod.rs
1//! functions for maths operations on data
2//! ## Math (//flowstdlib/math)
3//! Math Functions
4
5/// A flow to generate numbers within a range
6pub mod range;
7
8/// A flow to generate a sequence of numbers
9pub mod sequence;
10
11/// A module with functions to compare data elements
12#[path = "compare/compare.rs"]
13pub mod compare;
14/// A module with a function to add two `Numbers`
15#[path = "add/add.rs"]
16pub mod add;
17/// A module with a function to divide two `Numbers`
18#[path = "divide/divide.rs"]
19pub mod divide;
20/// A module with a function to multiply two `Numbers`
21#[path = "multiply/multiply.rs"]
22pub mod multiply;
23/// A module with a function to split a range of `Numbers`, into two sub-ranges
24#[path = "range_split/range_split.rs"]
25pub mod range_split;
26/// A module with a function to subtract two `Numbers`
27#[path = "subtract/subtract.rs"]
28pub mod subtract;
29/// A module with a function to calculate the square root of a `Number`
30#[path = "sqrt/sqrt.rs"]
31pub mod sqrt;