elemental2.core.Float32Array Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elemental2-core Show documentation
Show all versions of elemental2-core Show documentation
Thin Java abstractions for the standard built-in objects for Javascript.
package elemental2.core;
import jsinterop.annotations.JsFunction;
import jsinterop.annotations.JsOverlay;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;
import jsinterop.base.Js;
import jsinterop.base.JsArrayLike;
@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public class Float32Array extends TypedArray {
@JsType(isNative = true, name = "?", namespace = JsPackage.GLOBAL)
public interface ConstructorLengthUnionType {
@JsOverlay
static Float32Array.ConstructorLengthUnionType of(Object o) {
return Js.cast(o);
}
@JsOverlay
default ArrayBuffer asArrayBuffer() {
return Js.cast(this);
}
@JsOverlay
default ArrayBufferView asArrayBufferView() {
return Js.cast(this);
}
@JsOverlay
default int asInt() {
return Js.asInt(this);
}
@JsOverlay
default int[] asIntArray() {
return Js.cast(this);
}
@JsOverlay
default SharedArrayBuffer asSharedArrayBuffer() {
return Js.cast(this);
}
@JsOverlay
default boolean isArrayBuffer() {
return (Object) this instanceof ArrayBuffer;
}
@JsOverlay
default boolean isArrayBufferView() {
return (Object) this instanceof ArrayBufferView;
}
@JsOverlay
default boolean isInt() {
return (Object) this instanceof Double;
}
@JsOverlay
default boolean isIntArray() {
return (Object) this instanceof Object[];
}
@JsOverlay
default boolean isSharedArrayBuffer() {
return (Object) this instanceof SharedArrayBuffer;
}
}
@JsFunction
public interface FromMapFn {
double onInvoke(double p0);
}
@JsType(isNative = true, name = "?", namespace = JsPackage.GLOBAL)
public interface FromSourceUnionType {
@JsOverlay
static Float32Array.FromSourceUnionType of(Object o) {
return Js.cast(o);
}
@JsOverlay
default JsArrayLike asJsArrayLike() {
return Js.cast(this);
}
@JsOverlay
default JsIterable asJsIterable() {
return Js.cast(this);
}
@JsOverlay
default String asString() {
return Js.asString(this);
}
@JsOverlay
default boolean isString() {
return (Object) this instanceof String;
}
}
@JsOverlay
public static final double BYTES_PER_ELEMENT = Float32Array__Constants.BYTES_PER_ELEMENT;
@JsOverlay
public static final Float32Array from(
Double[] source, Float32Array.FromMapFn mapFn, S this_) {
return from(Js.>uncheckedCast(source), mapFn, this_);
}
@JsOverlay
public static final Float32Array from(Double[] source, Float32Array.FromMapFn mapFn) {
return from(Js.>uncheckedCast(source), mapFn);
}
@JsOverlay
public static final Float32Array from(Double[] source) {
return from(Js.>uncheckedCast(source));
}
public static native Float32Array from(
Float32Array.FromSourceUnionType source, Float32Array.FromMapFn mapFn, S this_);
public static native Float32Array from(
Float32Array.FromSourceUnionType source, Float32Array.FromMapFn mapFn);
public static native Float32Array from(Float32Array.FromSourceUnionType source);
@JsOverlay
public static final Float32Array from(
JsArrayLike source, Float32Array.FromMapFn mapFn, S this_) {
return from(Js.uncheckedCast(source), mapFn, this_);
}
@JsOverlay
public static final Float32Array from(JsArrayLike source, Float32Array.FromMapFn mapFn) {
return from(Js.uncheckedCast(source), mapFn);
}
@JsOverlay
public static final Float32Array from(JsArrayLike source) {
return from(Js.uncheckedCast(source));
}
@JsOverlay
public static final Float32Array from(
JsIterable source, Float32Array.FromMapFn mapFn, S this_) {
return from(Js.uncheckedCast(source), mapFn, this_);
}
@JsOverlay
public static final Float32Array from(JsIterable source, Float32Array.FromMapFn mapFn) {
return from(Js.uncheckedCast(source), mapFn);
}
@JsOverlay
public static final Float32Array from(JsIterable source) {
return from(Js.uncheckedCast(source));
}
@JsOverlay
public static final Float32Array from(String source, Float32Array.FromMapFn mapFn, S this_) {
return from(Js.uncheckedCast(source), mapFn, this_);
}
@JsOverlay
public static final Float32Array from(String source, Float32Array.FromMapFn mapFn) {
return from(Js.uncheckedCast(source), mapFn);
}
@JsOverlay
public static final Float32Array from(String source) {
return from(Js.uncheckedCast(source));
}
public static native Float32Array of(double... var_args);
public Float32Array(ArrayBuffer length, int byteOffset, int length0) {}
public Float32Array(ArrayBuffer length, int byteOffset) {}
public Float32Array(ArrayBuffer length) {}
public Float32Array(ArrayBufferView length, int byteOffset, int length0) {}
public Float32Array(ArrayBufferView length, int byteOffset) {}
public Float32Array(ArrayBufferView length) {}
public Float32Array(
Float32Array.ConstructorLengthUnionType length, int byteOffset, int length0) {}
public Float32Array(Float32Array.ConstructorLengthUnionType length, int byteOffset) {}
public Float32Array(Float32Array.ConstructorLengthUnionType length) {}
public Float32Array(SharedArrayBuffer length, int byteOffset, int length0) {}
public Float32Array(SharedArrayBuffer length, int byteOffset) {}
public Float32Array(SharedArrayBuffer length) {}
public Float32Array(int length, int byteOffset, int length0) {}
public Float32Array(int[] length, int byteOffset, int length0) {}
public Float32Array(int length, int byteOffset) {}
public Float32Array(int[] length, int byteOffset) {}
public Float32Array(int length) {}
public Float32Array(int[] length) {}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy