constructor(input: number)
constructor(input: Uint8Array)
constructor(input: ArrayBuffer, opts?: MemoryViewOptions<F>)
constructor(input:
MemoryView<
F> | number |
Arr<
F> |
ArrayBuffer, opts:
MemoryViewOptions<
F> = [UNSUPPORTED])
static
fromArray = (arr:
Const<
F>[], fmt:
F) => unknown
setShape = (shape?: number[]) => unknown
Reinterpret the underlying type.
new MemoryView(new Uint8Array([1, 0, 0, 0])).cast("i").typedArray // new Int32Array([1])
cast = (fmt:
NewF, shape?: number[]) =>
MemoryView<
NewF>
Converts to a new format
new MemoryView(new Uint8Array([1, 0, 0, 0])).convert("i").typedArray // new Int32Array([1, 0, 0, 0])
convert = (fmt:
NewF, shape?: number[]) =>
MemoryView<
NewF>
slice = (begin: number, end?: number) => unknown
Sets typed values from another array/MemoryView into our memory,
beginning at element offset = `offset`.
set = (array:
Arr<
F2> |
MemoryView<
FmtStr>, offsetInBytes: number = 0) => unknown
Convert to a list of JS numbers (1D). Throws if the format is one of the bigint types.
to1DList = () =>
Const<
F>[]
static
ARRAYS = { b:
null, B:
null, h:
null, H:
null, i:
null, I:
null, q:
null, Q:
null, e:
null, f:
null, d:
null, ?:
null }
The number of typed elements (1D) in this MemoryView.
get
length ():
nullA typed-array “view” into the memory (creates on-the-fly).
get
typedArray ():
Arr<
F>
Return the underlying bytes as a Uint8Array.
get
bytes ():
Uint8ArrayAccess multi-dimensional elements by index.
function
getValue (...indices: : number[]):
Const<
F>
Set multi-dimensional element.
function
setValue (value:
Const<
F>, ...indices: : number[]): void
Flatten back to a single dimension.
function
flat ():
nullReshape to a new multi-dimensional shape (must have same total # of elements).
function
reshape (newShape: number[]):
nullIf 'q' or 'Q', we treat them as 64-bit bigints in JS.
get
isBigInt ():
nullIf '?' we store booleans (0/1) in a Uint8Array.
get
isBoolean ():
null