Free-function version of opCmp, useful to compare primitive scalar types in generic code.
assert( 2.opCmp(3) < 0 ); assert( 3.opCmp(2) > 0 ); assert( 2.opCmp(2) == 0 ); assert( 2.opCmp(3) != 0 );
Free-function version of opCmp, useful to compare primitive scalar types in generic code.