ByteBuffer.AsLongBuffer 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.
Creates a view of this byte buffer as a long buffer.
[Android.Runtime.Register("asLongBuffer", "()Ljava/nio/LongBuffer;", "GetAsLongBufferHandler")]
public abstract Java.Nio.LongBuffer AsLongBuffer ();
[<Android.Runtime.Register("asLongBuffer", "()Ljava/nio/LongBuffer;", "GetAsLongBufferHandler")>]
abstract member AsLongBuffer : unit -> Java.Nio.LongBuffer
Returns
A new long buffer
- Attributes
Remarks
Creates a view of this byte buffer as a long buffer.
The content of the new buffer will start at this buffer's current position. Changes to this buffer's content will be visible in the new buffer, and vice versa; the two buffers' position, limit, and mark values will be independent.
The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided by eight, and its mark will be undefined. The new buffer will be direct if, and only if, this buffer is direct, and it will be read-only if, and only if, this buffer is read-only.
Java documentation for java.nio.ByteBuffer.asLongBuffer()
.
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.