ByteBuffer.AsDoubleBuffer Method

Definition

Creates a view of this byte buffer as a double buffer.

[Android.Runtime.Register("asDoubleBuffer", "()Ljava/nio/DoubleBuffer;", "GetAsDoubleBufferHandler")]
public abstract Java.Nio.DoubleBuffer AsDoubleBuffer ();
[<Android.Runtime.Register("asDoubleBuffer", "()Ljava/nio/DoubleBuffer;", "GetAsDoubleBufferHandler")>]
abstract member AsDoubleBuffer : unit -> Java.Nio.DoubleBuffer

Returns

A new double buffer

Attributes

Remarks

Creates a view of this byte buffer as a double 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.asDoubleBuffer().

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