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
14
15
16
17
/// Generate a sequence of numbers between a start and end number that is supplied
///
/// ## Include using
/// ```toml
/// [[process]]
/// alias = "sequence"
/// source = "lib://flowstdlib/math/sequence"
/// ```
///
/// ## Inputs
/// * `start` - the first number of the sequence to generate, type `Number`
/// * `end` - the last number of the sequence, type `Number`
///
/// ## Outputs
/// * `sequence` the output sequence of type `Number`
/// * `done` a signal of value `true` that is output when the sequence ends, type `Bool`
pub struct Sequence;