flowstdlib 1.0.0

The standard library of functions and flows for 'flow' programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function = "tap"
description = "Control the flow of data (flow it through this function, or have it disappear) based on a boolean control value."
source = "tap.rs"
docs = "tap.md"
type = "rust"

[[input]]
name = "data" # - the data flow we wish to control the flow if

[[input]]
name = "control" # - a boolean value to determine in `data` is passed on or not
type = "boolean"

[[output]] # `data` is output if `control` is true, nothing if `control` is false