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