Compares two values to check if x is strictly less than y. If x is an object with a lt method, it returns x.lt(y). Otherwise it returns the result of x < y.
x
y
lt
x.lt(y)
x < y
true if x is strictly less than y or false otherwise.
true
false
Generated using TypeDoc
Compares two values to check if
x
is strictly less thany
. Ifx
is an object with alt
method, it returnsx.lt(y)
. Otherwise it returns the result ofx < y
.Returns
true
ifx
is strictly less thany
orfalse
otherwise.