Java com.google.gwt.typedarrays.shared TypedArrays fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.typedarrays.shared TypedArrays fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.typedarrays.shared TypedArrays.

The text is from its open source code.

Method

ArrayBuffercreateArrayBuffer(int length)
Create a new ArrayBuffer of length bytes.
Float32ArraycreateFloat32Array(ArrayBuffer buffer)
Create a Float32Array instance on buffer , starting at starting at the beginning of the buffer and continuing to the end (which must be an integral number of elements).
Float32ArraycreateFloat32Array(int length)
Create a Float32Array instance of length elements, backed by a new ArrayBuffer .
Float32ArraycreateFloat32Array(ArrayBuffer buffer, int byteOffset, int length)
Create a Float32Array instance on buffer , starting at byteOffset into the buffer, continuing for length elements.
Float64ArraycreateFloat64Array(ArrayBuffer buffer)
Create a Float64Array instance on buffer , starting at starting at the beginning of the buffer and continuing to the end (which must be an integral number of elements).
Float64ArraycreateFloat64Array(int length)
Create a Float64Array instance of length elements, backed by a new ArrayBuffer .
Int16ArraycreateInt16Array(ArrayBuffer buffer)
Create a Int16Array instance on buffer , starting at starting at the beginning of the buffer and continuing to the end (which must be an integral number of elements).
Int16ArraycreateInt16Array(int length)
Create a Int16Array instance of length elements, backed by a new ArrayBuffer .
Int16ArraycreateInt16Array(ArrayBuffer buffer, int byteOffset, int length)
Create a Int16Array instance on buffer , starting at byteOffset into the buffer, continuing for length elements.
Int32ArraycreateInt32Array(ArrayBuffer buffer)
Create a Int32Array instance on buffer , starting at starting at the beginning of the buffer and continuing to the end (which must be an integral number of elements).
Int32ArraycreateInt32Array(int length)
Create a Int32Array instance of length elements, backed by a new ArrayBuffer .
Int32ArraycreateInt32Array(ArrayBuffer buffer, int byteOffset, int length)
Create a Int32Array instance on buffer , starting at byteOffset into the buffer, continuing for length elements.
Int8ArraycreateInt8Array(ArrayBuffer buffer)
Create a Int8Array instance on buffer , starting at starting at the beginning of the buffer and continuing to the end.
Int8ArraycreateInt8Array(int length)
Create a Int8Array instance of length elements, backed by a new ArrayBuffer .
Uint16ArraycreateUint16Array(ArrayBuffer buffer)
Create a Uint16Array instance on buffer , starting at starting at the beginning of the buffer and continuing to the end (which must be an integral number of elements).
Uint16ArraycreateUint16Array(int length)
Create a Uint16Array instance of length elements, backed by a new ArrayBuffer .
Uint8ArraycreateUint8Array(ArrayBuffer buffer)
Create a Uint8Array instance on buffer , starting at starting at the beginning of the buffer and continuing to the end (which must be an integral number of elements).
Uint8ArraycreateUint8Array(int length)
Create a Uint8Array instance of length elements, backed by a new ArrayBuffer .