Package | Description |
---|---|
com.google.gwt.typedarrays.client | |
com.google.gwt.typedarrays.server | |
com.google.gwt.typedarrays.shared |
Modifier and Type | Class and Description |
---|---|
class |
Float64ArrayNative
JS native implementation of
Float64Array . |
Modifier and Type | Method and Description |
---|---|
Float64Array |
NoSupportImpl.createFloat64Array(ArrayBuffer buffer,
int byteOffset,
int length) |
Float64Array |
Float64ArrayNative.subarray(int begin) |
Float64Array |
Float64ArrayNative.subarray(int begin,
int end) |
Modifier and Type | Method and Description |
---|---|
void |
Float64ArrayNative.set(Float64Array array) |
void |
Float64ArrayNative.set(Float64Array array,
int offset) |
static void |
JsUtils.set(Float64Array dest,
JsArrayNumber array) |
static void |
JsUtils.set(Float64Array dest,
JsArrayNumber array,
int offset) |
Modifier and Type | Class and Description |
---|---|
class |
Float64ArrayImpl
Pure Java implementation of
Float64Array . |
Modifier and Type | Method and Description |
---|---|
Float64Array |
JavaImpl.createFloat64Array(ArrayBuffer buffer,
int byteOffset,
int length) |
Float64Array |
Float64ArrayImpl.subarray(int begin) |
Float64Array |
Float64ArrayImpl.subarray(int begin,
int end) |
Modifier and Type | Method and Description |
---|---|
void |
Float64ArrayImpl.set(Float64Array array) |
void |
Float64ArrayImpl.set(Float64Array array,
int offset) |
Modifier and Type | Method and Description |
---|---|
static Float64Array |
TypedArrays.createFloat64Array(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). |
Float64Array |
TypedArrays.Impl.createFloat64Array(ArrayBuffer buffer) |
static Float64Array |
TypedArrays.createFloat64Array(ArrayBuffer buffer,
int byteOffset)
Create a
Float64Array instance on buffer , starting at
byteOffset into the buffer, continuing to the end of the buffer
(which must be an integral number of elements). |
Float64Array |
TypedArrays.Impl.createFloat64Array(ArrayBuffer buffer,
int byteOffset) |
static Float64Array |
TypedArrays.createFloat64Array(ArrayBuffer buffer,
int byteOffset,
int length)
Create a
Float64Array instance on buffer , starting at
byteOffset into the buffer, continuing for length
elements. |
abstract Float64Array |
TypedArrays.Impl.createFloat64Array(ArrayBuffer buffer,
int byteOffset,
int length) |
Float64Array |
TypedArrays.Impl.createFloat64Array(double[] array) |
static Float64Array |
TypedArrays.createFloat64Array(int length)
|
Float64Array |
TypedArrays.Impl.createFloat64Array(int length) |
Float64Array |
Float64Array.subarray(int begin)
Create a new view from the same array, from
offset to the end of
this view. |
Float64Array |
Float64Array.subarray(int begin,
int end)
Create a new view from the same array, from
offset to (but not
including) end in this view. |
Modifier and Type | Method and Description |
---|---|
void |
Float64Array.set(Float64Array array)
Set multiple elements in this view from another view, storing starting at 0.
|
void |
Float64Array.set(Float64Array array,
int offset)
Set multiple elements in this view from another view, storing starting at the
requested offset.
|