elemental2.core.Int32Array Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2018 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
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 Int32Array extends TypedArray {
@JsType(isNative = true, name = "?", namespace = JsPackage.GLOBAL)
public interface ConstructorLengthUnionType {
@JsOverlay
static Int32Array.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 JsArray asJsArray() {
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 isJsArray() {
return (Object) this instanceof JsArray;
}
@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 Int32Array.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 int BYTES_PER_ELEMENT = Int32Array__Constants.BYTES_PER_ELEMENT;
public static native Int32Array from(
Int32Array.FromSourceUnionType source, Int32Array.FromMapFn mapFn, S this_);
public static native Int32Array from(
Int32Array.FromSourceUnionType source, Int32Array.FromMapFn mapFn);
public static native Int32Array from(Int32Array.FromSourceUnionType source);
@JsOverlay
public static final Int32Array from(
JsArrayLike source, Int32Array.FromMapFn mapFn, S this_) {
return from(Js.uncheckedCast(source), mapFn, this_);
}
@JsOverlay
public static final Int32Array from(JsArrayLike source, Int32Array.FromMapFn mapFn) {
return from(Js.uncheckedCast(source), mapFn);
}
@JsOverlay
public static final Int32Array from(JsArrayLike source) {
return from(Js.uncheckedCast(source));
}
@JsOverlay
public static final Int32Array from(
JsIterable source, Int32Array.FromMapFn mapFn, S this_) {
return from(Js.uncheckedCast(source), mapFn, this_);
}
@JsOverlay
public static final Int32Array from(JsIterable source, Int32Array.FromMapFn mapFn) {
return from(Js.uncheckedCast(source), mapFn);
}
@JsOverlay
public static final Int32Array from(JsIterable source) {
return from(Js.uncheckedCast(source));
}
@JsOverlay
public static final Int32Array from(String source, Int32Array.FromMapFn mapFn, S this_) {
return from(Js.uncheckedCast(source), mapFn, this_);
}
@JsOverlay
public static final Int32Array from(String source, Int32Array.FromMapFn mapFn) {
return from(Js.uncheckedCast(source), mapFn);
}
@JsOverlay
public static final Int32Array from(String source) {
return from(Js.uncheckedCast(source));
}
@JsOverlay
public static final Int32Array from(double[] source, Int32Array.FromMapFn mapFn, S this_) {
return from(Js.>uncheckedCast(source), mapFn, this_);
}
@JsOverlay
public static final Int32Array from(double[] source, Int32Array.FromMapFn mapFn) {
return from(Js.>uncheckedCast(source), mapFn);
}
@JsOverlay
public static final Int32Array from(double[] source) {
return from(Js.>uncheckedCast(source));
}
public static native Int32Array of(double... var_args);
public Int32Array(ArrayBuffer length, int byteOffset, int length0) {}
public Int32Array(ArrayBuffer length, int byteOffset) {}
public Int32Array(ArrayBuffer length) {}
public Int32Array(ArrayBufferView length, int byteOffset, int length0) {}
public Int32Array(ArrayBufferView length, int byteOffset) {}
public Int32Array(ArrayBufferView length) {}
public Int32Array(Int32Array.ConstructorLengthUnionType length, int byteOffset, int length0) {}
public Int32Array(Int32Array.ConstructorLengthUnionType length, int byteOffset) {}
public Int32Array(Int32Array.ConstructorLengthUnionType length) {}
public Int32Array(JsArray length, int byteOffset, int length0) {}
public Int32Array(JsArray length, int byteOffset) {}
public Int32Array(JsArray length) {}
public Int32Array(SharedArrayBuffer length, int byteOffset, int length0) {}
public Int32Array(SharedArrayBuffer length, int byteOffset) {}
public Int32Array(SharedArrayBuffer length) {}
public Int32Array(double[] length, int byteOffset, int length0) {}
public Int32Array(double[] length, int byteOffset) {}
public Int32Array(double[] length) {}
public Int32Array(int length, int byteOffset, int length0) {}
public Int32Array(int length, int byteOffset) {}
public Int32Array(int length) {}
}