ShortBuffer.Compact 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.
Compacts this buffer (optional operation).
[Android.Runtime.Register("compact", "()Ljava/nio/ShortBuffer;", "GetCompactHandler")]
public abstract Java.Nio.ShortBuffer? Compact ();
[<Android.Runtime.Register("compact", "()Ljava/nio/ShortBuffer;", "GetCompactHandler")>]
abstract member Compact : unit -> Java.Nio.ShortBuffer
Returns
This buffer
- Attributes
Exceptions
if no changes may be made to the contents of this buffer.
Remarks
Compacts this buffer (optional operation).
The shorts between the buffer's current position and its limit, if any, are copied to the beginning of the buffer. That is, the short at index p = position()
is copied to index zero, the short at index p + 1 is copied to index one, and so forth until the short at index limit()
- 1 is copied to index n = limit()
- 1
- p. The buffer's position is then set to n+1 and its limit is set to its capacity. The mark, if defined, is discarded.
The buffer's position is set to the number of shorts copied, rather than to zero, so that an invocation of this method can be followed immediately by an invocation of another relative put method.
Java documentation for java.nio.ShortBuffer.compact()
.
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.