class BigInt64Array extends scala.scalajs.js.Object with StObject with std.BigInt64Array
- Annotations
- @JSType() @JSGlobal("BigInt64Array") @native()
- Source
- BigInt64Array.scala
- Alphabetic
- By Inheritance
- BigInt64Array
- BigInt64Array
- NumberDictionary
- StObject
- Object
- Any
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new BigInt64Array(buffer: ArrayBufferLike, byteOffset: Unit, length: Double)
- new BigInt64Array(buffer: ArrayBufferLike, byteOffset: Double, length: Double)
- new BigInt64Array(buffer: ArrayBufferLike, byteOffset: Double)
- new BigInt64Array(length: Double)
- new BigInt64Array(buffer: ArrayBufferLike)
- new BigInt64Array(array: scala.scalajs.js.Iterable[scala.scalajs.js.BigInt])
- new BigInt64Array()
Value Members
- final def !=(arg0: Any): scala.Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): scala.Boolean
- Definition Classes
- AnyRef → Any
- val BYTES_PER_ELEMENT: Double
The size in bytes of each element in the array.
The size in bytes of each element in the array.
- Definition Classes
- BigInt64Array
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val buffer: ArrayBufferLike
The ArrayBuffer instance referenced by the array.
The ArrayBuffer instance referenced by the array.
- Definition Classes
- BigInt64Array
- val byteLength: Double
The length in bytes of the array.
The length in bytes of the array.
- Definition Classes
- BigInt64Array
- val byteOffset: Double
The offset in bytes of the array.
The offset in bytes of the array.
- Definition Classes
- BigInt64Array
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- def copyWithin(target: Double, start: Double, end: Double): BigInt64Array.this.type
- Definition Classes
- BigInt64Array
- def copyWithin(target: Double, start: Double): BigInt64Array.this.type
Returns the this object after copying a section of the array identified by start and end to the same array starting at position target
Returns the this object after copying a section of the array identified by start and end to the same array starting at position target
- target
If target is negative, it is treated as length+target where length is the length of the array.
- start
If start is negative, it is treated as length+start. If end is negative, it is treated as length+end.
- Definition Classes
- BigInt64Array
- def entries(): IterableIterator[Tuple2[Double, scala.scalajs.js.BigInt]]
Yields index, value pairs for every entry in the array.
Yields index, value pairs for every entry in the array.
- Definition Classes
- BigInt64Array
- final def eq(arg0: AnyRef): scala.Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): scala.Boolean
- Definition Classes
- AnyRef → Any
- def every(predicate: Function3[scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, scala.Boolean], thisArg: Any): scala.Boolean
- Definition Classes
- BigInt64Array
- def every(predicate: Function3[scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, scala.Boolean]): scala.Boolean
Determines whether all the members of an array satisfy the specified test.
Determines whether all the members of an array satisfy the specified test.
- predicate
A function that accepts up to three arguments. The every method calls the predicate function for each element in the array until the predicate returns false, or until the end of the array.
- Definition Classes
- BigInt64Array
- def fill(value: scala.scalajs.js.BigInt, start: Unit, end: Double): BigInt64Array.this.type
- Definition Classes
- BigInt64Array
- def fill(value: scala.scalajs.js.BigInt, start: Double, end: Double): BigInt64Array.this.type
- Definition Classes
- BigInt64Array
- def fill(value: scala.scalajs.js.BigInt, start: Double): BigInt64Array.this.type
- Definition Classes
- BigInt64Array
- def fill(value: scala.scalajs.js.BigInt): BigInt64Array.this.type
Returns the this object after filling the section identified by start and end with value
Returns the this object after filling the section identified by start and end with value
- value
value to fill array section with
- Definition Classes
- BigInt64Array
- def filter(predicate: Function3[scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, Any], thisArg: Any): std.BigInt64Array
- Definition Classes
- BigInt64Array
- def filter(predicate: Function3[scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, Any]): std.BigInt64Array
Returns the elements of an array that meet the condition specified in a callback function.
Returns the elements of an array that meet the condition specified in a callback function.
- predicate
A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.
- Definition Classes
- BigInt64Array
- def find(predicate: Function3[scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, scala.Boolean], thisArg: Any): UndefOr[scala.scalajs.js.BigInt]
- Definition Classes
- BigInt64Array
- def find(predicate: Function3[scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, scala.Boolean]): UndefOr[scala.scalajs.js.BigInt]
Returns the value of the first element in the array where predicate is true, and undefined otherwise.
Returns the value of the first element in the array where predicate is true, and undefined otherwise.
- predicate
find calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, find immediately returns that element value. Otherwise, find returns undefined.
- Definition Classes
- BigInt64Array
- def findIndex(predicate: Function3[scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, scala.Boolean], thisArg: Any): Double
- Definition Classes
- BigInt64Array
- def findIndex(predicate: Function3[scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, scala.Boolean]): Double
Returns the index of the first element in the array where predicate is true, and -1 otherwise.
Returns the index of the first element in the array where predicate is true, and -1 otherwise.
- predicate
find calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, findIndex immediately returns that element index. Otherwise, findIndex returns -1.
- Definition Classes
- BigInt64Array
- def forEach(callbackfn: Function3[scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, Unit], thisArg: Any): Unit
- Definition Classes
- BigInt64Array
- def forEach(callbackfn: Function3[scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, Unit]): Unit
Performs the specified action for each element in an array.
Performs the specified action for each element in an array.
- callbackfn
A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.
- Definition Classes
- BigInt64Array
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def hasOwnProperty(v: scala.Predef.String): scala.Boolean
- Definition Classes
- Object
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def includes(searchElement: scala.scalajs.js.BigInt, fromIndex: Double): scala.Boolean
- Definition Classes
- BigInt64Array
- def includes(searchElement: scala.scalajs.js.BigInt): scala.Boolean
Determines whether an array includes a certain element, returning true or false as appropriate.
Determines whether an array includes a certain element, returning true or false as appropriate.
- searchElement
The element to search for.
- Definition Classes
- BigInt64Array
- def indexOf(searchElement: scala.scalajs.js.BigInt, fromIndex: Double): Double
- Definition Classes
- BigInt64Array
- def indexOf(searchElement: scala.scalajs.js.BigInt): Double
Returns the index of the first occurrence of a value in an array.
Returns the index of the first occurrence of a value in an array.
- searchElement
The value to locate in the array.
- Definition Classes
- BigInt64Array
- final def isInstanceOf[T0]: scala.Boolean
- Definition Classes
- Any
- def isPrototypeOf(v: scala.scalajs.js.Object): scala.Boolean
- Definition Classes
- Object
- val iterator: Function0[IterableIterator[scala.scalajs.js.BigInt]]
- Definition Classes
- BigInt64Array
- Annotations
- @JSName(js.Symbol.iterator)
- def join(separator: java.lang.String): java.lang.String
- Definition Classes
- BigInt64Array
- def join(): java.lang.String
Adds all the elements of an array separated by the specified separator string.
Adds all the elements of an array separated by the specified separator string.
- Definition Classes
- BigInt64Array
- def keys(): IterableIterator[Double]
Yields each index in the array.
Yields each index in the array.
- Definition Classes
- BigInt64Array
- def lastIndexOf(searchElement: scala.scalajs.js.BigInt, fromIndex: Double): Double
- Definition Classes
- BigInt64Array
- def lastIndexOf(searchElement: scala.scalajs.js.BigInt): Double
Returns the index of the last occurrence of a value in an array.
Returns the index of the last occurrence of a value in an array.
- searchElement
The value to locate in the array.
- Definition Classes
- BigInt64Array
- val length: Double
The length of the array.
The length of the array.
- Definition Classes
- BigInt64Array
- def map(callbackfn: Function3[scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, scala.scalajs.js.BigInt], thisArg: Any): std.BigInt64Array
- Definition Classes
- BigInt64Array
- def map(callbackfn: Function3[scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, scala.scalajs.js.BigInt]): std.BigInt64Array
Calls a defined callback function on each element of an array, and returns an array that contains the results.
Calls a defined callback function on each element of an array, and returns an array that contains the results.
- callbackfn
A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.
- Definition Classes
- BigInt64Array
- final def ne(arg0: AnyRef): scala.Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def propertyIsEnumerable(v: scala.Predef.String): scala.Boolean
- Definition Classes
- Object
- def reduce[U](callbackfn: Function4[U, scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, U], initialValue: U): U
Calls the specified callback function for all the elements in an array.
Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
- callbackfn
A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.
- initialValue
If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
- Definition Classes
- BigInt64Array
- def reduce(callbackfn: Function4[scala.scalajs.js.BigInt, scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, scala.scalajs.js.BigInt]): scala.scalajs.js.BigInt
Calls the specified callback function for all the elements in an array.
Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
- callbackfn
A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.
- Definition Classes
- BigInt64Array
- def reduceRight[U](callbackfn: Function4[U, scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, U], initialValue: U): U
Calls the specified callback function for all the elements in an array, in descending order.
Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
- callbackfn
A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.
- initialValue
If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
- Definition Classes
- BigInt64Array
- def reduceRight(callbackfn: Function4[scala.scalajs.js.BigInt, scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, scala.scalajs.js.BigInt]): scala.scalajs.js.BigInt
Calls the specified callback function for all the elements in an array, in descending order.
Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
- callbackfn
A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.
- Definition Classes
- BigInt64Array
- def reverse(): BigInt64Array.this.type
Reverses the elements in the array.
Reverses the elements in the array.
- Definition Classes
- BigInt64Array
- def set(array: ArrayLike[scala.scalajs.js.BigInt], offset: Double): Unit
- Definition Classes
- BigInt64Array
- def set(array: ArrayLike[scala.scalajs.js.BigInt]): Unit
Sets a value or an array of values.
Sets a value or an array of values.
- array
A typed or untyped array of values to set.
- Definition Classes
- BigInt64Array
- def slice(start: Unit, end: Double): std.BigInt64Array
- Definition Classes
- BigInt64Array
- def slice(start: Double, end: Double): std.BigInt64Array
- Definition Classes
- BigInt64Array
- def slice(start: Double): std.BigInt64Array
- Definition Classes
- BigInt64Array
- def slice(): std.BigInt64Array
Returns a section of an array.
Returns a section of an array.
- Definition Classes
- BigInt64Array
- def some(predicate: Function3[scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, scala.Boolean], thisArg: Any): scala.Boolean
- Definition Classes
- BigInt64Array
- def some(predicate: Function3[scala.scalajs.js.BigInt, Double, BigInt64Array.this.type, scala.Boolean]): scala.Boolean
Determines whether the specified callback function returns true for any element of an array.
Determines whether the specified callback function returns true for any element of an array.
- predicate
A function that accepts up to three arguments. The some method calls the predicate function for each element in the array until the predicate returns true, or until the end of the array.
- Definition Classes
- BigInt64Array
- def sort(compareFn: Function2[scala.scalajs.js.BigInt, scala.scalajs.js.BigInt, |[Double, scala.scalajs.js.BigInt]]): BigInt64Array.this.type
- Definition Classes
- BigInt64Array
- def sort(): BigInt64Array.this.type
Sorts the array.
Sorts the array.
- Definition Classes
- BigInt64Array
- def subarray(begin: Unit, end: Double): std.BigInt64Array
- Definition Classes
- BigInt64Array
- def subarray(begin: Double, end: Double): std.BigInt64Array
- Definition Classes
- BigInt64Array
- def subarray(begin: Double): std.BigInt64Array
- Definition Classes
- BigInt64Array
- def subarray(): std.BigInt64Array
Gets a new BigInt64Array view of the ArrayBuffer store for this array, referencing the elements at begin, inclusive, up to end, exclusive.
Gets a new BigInt64Array view of the ArrayBuffer store for this array, referencing the elements at begin, inclusive, up to end, exclusive.
- Definition Classes
- BigInt64Array
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toLocaleString(): scala.Predef.String
- Definition Classes
- Object
- def toString(): java.lang.String
- Definition Classes
- AnyRef → Any
- val toStringTag: stdStrings.BigInt64Array
- Definition Classes
- BigInt64Array
- Annotations
- @JSName(js.Symbol.toStringTag)
- def valueOf(): Any
- Definition Classes
- Object
- def values(): IterableIterator[scala.scalajs.js.BigInt]
Yields each value in the array.
Yields each value in the array.
- Definition Classes
- BigInt64Array
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated