Expand description
Suiron’s comparison functions: equal, less_than, greater_than, etc.
The functions defined in this module support Suiron’s built-in
arithmetic functions.
They are called from
unify_sfunction()
in built_in_functions.rs.
Functions§
- bip_
equal - Compares two strings or two numbers. Succeeds if equal.
- bip_
greater_ than - Compares strings or numbers. Succeeds if first > second.
- bip_
greater_ than_ or_ equal - Compares strings or numbers. Succeeds if first >= second.
- bip_
less_ than - Compares strings or numbers. Succeeds if first < second.
- bip_
less_ than_ or_ equal - Compares strings or numbers. Succeeds if first <= second.