function = "compare"
description = "Compare two input values and emit boolean outputs for equality and ordering relations"
source = "compare.rs"
docs = "compare.md"
type = "rust"
[[input]]
name = "left"
type = "number"
[[input]]
name = "right"
type = "number"
[[output]]
name = "equal"
type = "boolean"
[[output]]
name = "ne"
type = "boolean"
[[output]]
name = "lt"
type = "boolean"
[[output]]
name = "lte"
type = "boolean"
[[output]]
name = "gt"
type = "boolean"
[[output]]
name = "gte"
type = "boolean"