flowstdlib 0.142.0

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

[[input]]
name = "dividend" # - the number to be divided, of type `Number`
type = "number"

[[input]]
name = "divisor" # - the number to divide by, of type `Number`
type = "number"

[[output]]
name = "result" # - the result of the division, of type `Number`
type = "number"

[[output]]
name = "remainder" # - the remainder of the division, of type `Number`
type = "number"