Uses of Class
elemental2.core.Int8Array
-
-
Uses of Int8Array in elemental2.core
Methods in elemental2.core that return Int8Array Modifier and Type Method Description default Int8Array
Atomics.AddTypedArrayUnionType. asInt8Array()
default Int8Array
Atomics.AndTypedArrayUnionType. asInt8Array()
default Int8Array
Atomics.CompareExchangeTypedArrayUnionType. asInt8Array()
default Int8Array
Atomics.ExchangeTypedArrayUnionType. asInt8Array()
default Int8Array
Atomics.OrTypedArrayUnionType. asInt8Array()
default Int8Array
Atomics.StoreTypedArrayUnionType. asInt8Array()
default Int8Array
Atomics.SubTypedArrayUnionType. asInt8Array()
default Int8Array
Atomics.XorTypedArrayUnionType. asInt8Array()
static Int8Array
Int8Array. from(double[] source)
static Int8Array
Int8Array. from(double[] source, Int8Array.FromMapFn mapFn)
static <S> Int8Array
Int8Array. from(double[] source, Int8Array.FromMapFn mapFn, S thisArg)
static Int8Array
Int8Array. from(Int8Array.FromSourceUnionType source)
static Int8Array
Int8Array. from(Int8Array.FromSourceUnionType source, Int8Array.FromMapFn mapFn)
static <S> Int8Array
Int8Array. from(Int8Array.FromSourceUnionType source, Int8Array.FromMapFn mapFn, S thisArg)
static Int8Array
Int8Array. from(JsIterable<java.lang.Double> source)
static Int8Array
Int8Array. from(JsIterable<java.lang.Double> source, Int8Array.FromMapFn mapFn)
static <S> Int8Array
Int8Array. from(JsIterable<java.lang.Double> source, Int8Array.FromMapFn mapFn, S thisArg)
static Int8Array
Int8Array. from(java.lang.String source)
static Int8Array
Int8Array. from(java.lang.String source, Int8Array.FromMapFn mapFn)
static <S> Int8Array
Int8Array. from(java.lang.String source, Int8Array.FromMapFn mapFn, S thisArg)
static Int8Array
Int8Array. from(jsinterop.base.JsArrayLike<java.lang.Double> source)
static Int8Array
Int8Array. from(jsinterop.base.JsArrayLike<java.lang.Double> source, Int8Array.FromMapFn mapFn)
static <S> Int8Array
Int8Array. from(jsinterop.base.JsArrayLike<java.lang.Double> source, Int8Array.FromMapFn mapFn, S thisArg)
static Int8Array
Int8Array. of(double... var_args)
Methods in elemental2.core with parameters of type Int8Array Modifier and Type Method Description static double
Atomics. add(Int8Array typedArray, int index, double value)
static double
Atomics. and(Int8Array typedArray, int index, double value)
static double
Atomics. compareExchange(Int8Array typedArray, int index, double expectedValue, double replacementValue)
static double
Atomics. exchange(Int8Array typedArray, int index, double value)
static double
Atomics. or(Int8Array typedArray, int index, double value)
static double
Atomics. store(Int8Array typedArray, int index, double value)
static double
Atomics. sub(Int8Array typedArray, int index, double value)
static double
Atomics. xor(Int8Array typedArray, int index, double value)
-