flowstdlib 0.8.6

The native version of the standard library for 'flow' programs compiled with the 'flowc' compiler
Documentation
/// Let a piece of data pass, if it is less-than-or-equal to a control value
///
/// ## Include using
/// ```toml
/// [[process]]
/// alias = "pilte"
/// source = "lib:://flowstdlib/control/pass_if_lte"
/// ```
///
/// ## Inputs
/// * `in` [Number] - numerical input to control the flow of
/// * `max` [Number] - numerical control value
///
/// [[output]]
/// name = "control"
/// type = "Number"
///
/// ## Outputs
/// * `passed` [Number] - `in` value if it is less than or equal to `max`
/// * `blocked` [Boolean] - `in` value if it more than (NOT less than or equal to) `max`
/// * `control` [Boolean] - `max` passed to the output each time
pub struct PassIfLte;