MCPcopy Create free account
hub / github.com/davidgiven/luje / compareTo

Method compareTo

lib/java/lang/Float.java:132–134  ·  view source on GitHub ↗

Compares this object to the specified float object to determine their relative order. There are two special cases: Float.NaN is equal to Float.NaN and it is greater than any other float value, including Float.POSITIVE_INFINITY; +0.0f is greater than -0.0f</l

(Float object)

Source from the content-addressed store, hash-verified

130 * @since 1.2
131 */
132 public int compareTo(Float object) {
133 return compare(value, object.value);
134 }
135
136 @Override
137 public byte byteValue() {

Callers

nothing calls this directly

Calls 1

compareMethod · 0.95

Tested by

no test coverage detected