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
//! A Module with functions for controlling data flow
//! ## Control (//flowstdlib/control)
//! Functions to control the flow of data on connections between other processing functions

/// A module with functions to compare data elements
pub mod compare;

/// A module with functions for joining data
pub mod join;

/// A module with functions to control the flow of data based on comparisons
pub mod tap;

/// A module that is just a flow definition for passing a value depending on a control value
pub mod pass_if_lte;