flowstdlib 0.8.6

The native version of the standard library for 'flow' programs compiled with the 'flowc' compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! ## Math (//flowstdlib/math)
//! Math Functions

/// A module with a function to add two `Numbers`
pub mod add;
/// A module with a function to divide two `Numbers`
pub mod divide;
/// A module with a function to subtract two `Numbers`
pub mod subtract;
/// A module with a function to generate a sequence of `Numbers`
pub mod sequence;
/// A module with a function to calculate the sqare root of a `Number`
pub mod sqrt;