Deno.UnsafePointerView
UNSTABLE: Unsafe and new API, beware!
An unsafe pointer view to a memory location as specified by the pointer
value. The UnsafePointerView
API mimics the standard built in interface
DataView
for accessing the underlying types at an memory location
(numbers, strings and raw bytes).
§Properties
§Methods
Copies the memory of the pointer into a typed array. Length is determined from the typed array's byteLength
. Also takes optional offset from the pointer.
Gets an ArrayBuffer of length byteLength
at the specified byte offset from the pointer.
Gets a signed 64-bit integer at the specified byte offset from the pointer.
Gets an unsigned 64-bit integer at the specified byte offset from the pointer.
Gets a C string (null terminated string) at the specified byte offset from the pointer.
Gets a signed 32-bit float at the specified byte offset from the pointer.
Gets a signed 64-bit float at the specified byte offset from the pointer.
Gets a signed 16-bit integer at the specified byte offset from the pointer.
Gets a signed 32-bit integer at the specified byte offset from the pointer.
Gets a signed 8-bit integer at the specified byte offset from the pointer.
Gets an unsigned 16-bit integer at the specified byte offset from the pointer.