Java com.google.gwt.typedarrays.client Float32Array fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Method

Float32Arraycreate(ArrayBuffer buffer)
Float32Arraycreate(float[] data)
Create a new ArrayBuffer with enough bytes to hold array.length elements of this typed array, then create a typed array view referring to the full buffer.
Float32Arraycreate(Float32Array array)
Create a new ArrayBuffer with enough bytes to hold array.length elements of this typed array, then create a typed array view referring to the full buffer.
Float32Arraycreate(int size)
Create a new ArrayBuffer with enough bytes to hold length elements of this typed array, then creates a typed array view referring to the full buffer.
Float32Arraycreate(JsArrayNumber data)
Create a new ArrayBuffer with enough bytes to hold array.length elements of this typed array, then create a typed array view referring to the full buffer.
Float32Arraycreate(ArrayBuffer buffer, int byteOffset)
Float32Arraycreate(ArrayBuffer buffer, int byteOffset, int length)
Create a new TypedArray object using the passed ArrayBuffer for its storage.
Float32Arraycreate(float[] data, int offset, int len)
floatget(int index)
Returns the element at the given numeric index.
intgetByteLength()
The offset of this ArrayBufferView from the start of its ArrayBuffer, in bytes, as fixed at construction time.
intgetLength()
The length of the TypedArray in elements, as fixed at construction time.