of
fun Memory.Companion.of(buffer: ArrayBuffer, offset: Int = 0, length: Int = buffer.byteLength - offset): Memory
Create Memory view for the specified buffer range starting at offset and the specified bytes length.
Create Memory view for the specified view.
fun Memory.Companion.of(view: ArrayBufferView, offset: Int = 0, length: Int = view.byteLength): Memory
Create Memory view for the specified view range starting at offset and the specified bytes length.
Create Memory view for the specified buffer range starting at ByteBuffer.position and ending at ByteBuffer.limit. Changing the original buffer's position/limit will not affect previously created Memory instances.