Half.CompareTo(Half) Method

Definition

Compares the two specified half-precision float values.

[Android.Runtime.Register("compareTo", "(Landroid/util/Half;)I", "", ApiSince=26)]
public int CompareTo (Android.Util.Half h);
[<Android.Runtime.Register("compareTo", "(Landroid/util/Half;)I", "", ApiSince=26)>]
member this.CompareTo : Android.Util.Half -> int

Parameters

h
Half

The half-precision float value to compare to the half-precision value represented by this Half object

Returns

The value 0 if x is numerically equal to y; a value less than 0 if x is numerically less than y; and a value greater than 0 if x is numerically greater than y

Attributes

Remarks

Compares the two specified half-precision float values. The following conditions apply during the comparison:

<ul> <li>#NaN is considered by this method to be equal to itself and greater than all other half-precision float values (including #POSITIVE_INFINITY)</li> <li>#POSITIVE_ZERO is considered by this method to be greater than #NEGATIVE_ZERO.</li> </ul>

Java documentation for android.util.Half.compareTo(android.util.Half).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to