1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! functions for maths operations on data
//! ## Math (//flowstdlib/math)
//! Math Functions
/// A flow to generate numbers within a range
/// A flow to generate a sequence of numbers
/// A module with a function to add two `Numbers`
/// A module with functions to compare data elements
/// A module with a function to calculate the cosine of a number (radians)
/// A module with a function to divide two `Numbers`
/// A module with a function to multiply two `Numbers`
/// A module with a function to split a range of `Numbers`, into two sub-ranges
/// A module with a function to calculate the sine of a number (radians)
/// A module with a function to calculate the square root of a `Number`
/// A module with a function to subtract two `Numbers`
/// A module with a function to calculate the tangent of a number (radians)