FloatBuffer.CompareTo(FloatBuffer) Method

Definition

Compares this buffer to another.

[Android.Runtime.Register("compareTo", "(Ljava/nio/FloatBuffer;)I", "GetCompareTo_Ljava_nio_FloatBuffer_Handler")]
public virtual int CompareTo (Java.Nio.FloatBuffer? that);
[<Android.Runtime.Register("compareTo", "(Ljava/nio/FloatBuffer;)I", "GetCompareTo_Ljava_nio_FloatBuffer_Handler")>]
abstract member CompareTo : Java.Nio.FloatBuffer -> int
override this.CompareTo : Java.Nio.FloatBuffer -> int

Parameters

Returns

A negative integer, zero, or a positive integer as this buffer is less than, equal to, or greater than the given buffer

Attributes

Exceptions

if otherBuffer is not a float buffer.

Remarks

Compares this buffer to another.

Two float buffers are compared by comparing their sequences of remaining elements lexicographically, without regard to the starting position of each sequence within its corresponding buffer.

Pairs of float elements are compared as if by invoking Float#compare(float,float), except that -0.0 and 0.0 are considered to be equal. Float.NaN is considered by this method to be equal to itself and greater than all other float values (including Float.POSITIVE_INFINITY).

A float buffer is not comparable to any other type of object.

Java documentation for java.nio.FloatBuffer.compareTo(java.nio.FloatBuffer).

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