lexcmp
lexcmp(x, y)
Compare x
and y
lexicographically and return -1, 0, or 1 depending on whether x
is less than, equal to, or greater than y
, respectively. This function should be defined for lexicographically comparable types, and lexless
will call lexcmp
by default.
Examples
See Also
User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.