flowstdlib 0.142.0

The standard library of functions and flows for 'flow' programs
Documentation
function = "compare"
source = "compare.rs"
docs = "compare.md"
type = "rust"

[[input]]
name = "left" # - left hand input
type = "number"

[[input]]
name = "right" # - right hand input
type = "number"

[[output]]
name = "equal" # - `equal` - outputs true if the two values are equal
type = "boolean"

[[output]]
name = "ne" # - `ne` - outputs true if the two values are not equal
type = "boolean"

[[output]]
name = "lt" # - `lt` - outputs true if the left hand value is less than the right hand value
type = "boolean"

[[output]]
name = "lte" # - `lte` - outputs true if the left hand value is less than or equal to the right hand value
type = "boolean"

[[output]]
name = "gt" # - `gt` - outputs true if the left hand value is greater than the right hand value
type = "boolean"

[[output]]
name = "gte" # - `gte` - outputs true if the left hand value is greater than or equal to the right hand value
type = "boolean"