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