IntBuffer.CompareTo(IntBuffer) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Compares this buffer to another.
[Android.Runtime.Register("compareTo", "(Ljava/nio/IntBuffer;)I", "GetCompareTo_Ljava_nio_IntBuffer_Handler")]
public virtual int CompareTo (Java.Nio.IntBuffer? that);
[<Android.Runtime.Register("compareTo", "(Ljava/nio/IntBuffer;)I", "GetCompareTo_Ljava_nio_IntBuffer_Handler")>]
abstract member CompareTo : Java.Nio.IntBuffer -> int
override this.CompareTo : Java.Nio.IntBuffer -> int
Parameters
- that
- IntBuffer
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 other
is not an int buffer.
Remarks
Compares this buffer to another.
Two int 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 int
elements are compared as if by invoking Integer#compare(int,int)
.
A int buffer is not comparable to any other type of object.
Java documentation for java.nio.IntBuffer.compareTo(java.nio.IntBuffer)
.
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.