Less than?

Comparison Pure Generic
Less than?
A 0
Result
B 0

Description

Pure function returning true if a is less than b.

When to use

Use Less than? for a strict lower-bound check — for example, detecting when a remaining count drops below a warning threshold. Both integer and decimal inputs are accepted. It is the mirror of Greater than?; you can often choose either depending on which phrasing reads more naturally in context. For a non-strict check, use Less than or equal?.

Pins

Input pins

Pin Type Default Notes
A generic(integer, decimal) 0 The value to test.
B generic(integer, decimal) 0 The threshold to compare against.

Output pins

Pin Type Notes
Result boolean True if a is strictly less than b; false otherwise.

Example

Trigger a low-stock alert when inventory drops below 10. Wire the inventory count (integer or decimal) into the A input of Less than? with B set to 10, then connect the Result output to the Condition input of Branch. The True execution output fires whenever stock is critically low, routing execution to a Send email node.

See also