_<_

Definitions:

number, number
Source: /avail/Avail/Foundation/Bootstrap/Infallible Primitives
Categories: Primitives, Numbers, Mathematics, Relations
Is the first argument strictly less than the second argument?
Position Name Type Description
Parameters
1 arg1 number A number.
2 arg2 number A number.
Returns boolean `true` if the first argument is strictly less than the second argument, `false` otherwise.
string, string
Source: /avail/Avail/Foundation/Strings
Categories: Strings, Relations
Compare two strings lexicographically by Unicode code point.
Position Name Type Description
Parameters
1 s1 string
2 s2 string
Returns boolean true if s1 collates strictly before s2, false otherwise.
character, character
Source: /avail/Avail/Foundation/Characters
Categories: Mathematics, Relations, Numbers, Unicode
Is a 's code point lesser than b 's code point?
Position Name Type Description
Parameters
1 a character A character.
2 b character A character.
Returns boolean true if a 's code point is lesser than b 's code point, false otherwise.