Method AsInt64Buffer
AsInt64Buffer()
Returns a long buffer which is based on the remaining content of this byte buffer.
The new buffer's position is zero, its limit and capacity is the number of remaining bytes divided by eight, and its mark is not set. The new buffer's read-only property and byte order are the same as this buffer's. The new buffer is direct if this byte buffer is direct.
The new buffer shares its content with this buffer, which means either buffer's change of content will be visible to the other. The two buffer's position, limit and mark are independent.
Declaration
public abstract Int64Buffer AsInt64Buffer()
Returns
Type | Description |
---|---|
Int64Buffer | a long buffer which is based on the content of this byte buffer. |