public native static operator<( readonly a as Float, readonly b as Float ) as Boolean
Tests whether a is strictly lower than b.
a
b
true when a < b.
true
a < b
assert Float(3.0) < Float(10.0)