class BigUint64Array extends Object with TypedArray[BigInt, BigUint64Array]
ECMAScript 2020
A TypedArray of unsigned 64-bit integers represented as js.BigInt.
- Alphabetic
- By Inheritance
- BigUint64Array
- TypedArray
- Iterable
- ArrayBufferView
- Object
- Any
- AnyRef
- Any
- by iterableOps
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new BigUint64Array(buffer: ArrayBuffer, byteOffset: Int = 0, length: Int = js.native)
Creates a BigInt64Array view on the given ArrayBuffer
- new BigUint64Array(array: Iterable[BigInt])
Creates a new BigInt64Array with the elements in the given array.
Creates a new BigInt64Array with the elements in the given array.
Each elements must be BigInt (no conversion).
- new BigUint64Array(typedArray: BigUint64Array)
Creates a new BigInt64Array with the same elements than the given TypedArray
Creates a new BigInt64Array with the same elements than the given TypedArray
Each elements must be BigInt (no conversion).
- new BigUint64Array(length: Int)
Constructs a BigUint64Array with the given length.
Constructs a BigUint64Array with the given length. Initialized to all 0
Value Members
- final def !=(arg0: scala.Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- Implicit
- This member is added by an implicit conversion from BigUint64Array toany2stringadd[BigUint64Array] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
- final def ++[B >: A](suffix: collection.IterableOnce[B]): collection.Iterable[B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- Annotations
- @inline()
- def ->[B](y: B): (BigUint64Array, B)
- Implicit
- This member is added by an implicit conversion from BigUint64Array toArrowAssoc[BigUint64Array] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
- final def ==(arg0: scala.Any): Boolean
- Definition Classes
- AnyRef → Any
- final def addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- def addString(b: collection.mutable.StringBuilder, start: String, sep: String, end: String): collection.mutable.StringBuilder
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def apply(index: Int): BigInt
Retrieve element at index
Retrieve element at index
- Definition Classes
- TypedArray
- Annotations
- @JSBracketAccess()
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val buffer: ArrayBuffer
The underlying buffer of this ArrayBufferView
The underlying buffer of this ArrayBufferView
- Definition Classes
- ArrayBufferView
- val byteLength: Int
The number of bytes of this ArrayBufferView
The number of bytes of this ArrayBufferView
- Definition Classes
- ArrayBufferView
- val byteOffset: Int
The offset of this ArrayBufferView in the underlying buffer
The offset of this ArrayBufferView in the underlying buffer
- Definition Classes
- ArrayBufferView
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def collect[B](pf: PartialFunction[BigInt, B]): collection.Iterable[B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnceOps
- def collectFirst[B](pf: PartialFunction[BigInt, B]): Option[B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def concat[B >: A](suffix: collection.IterableOnce[B]): collection.Iterable[B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Int
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def copyToArray[B >: A](xs: scala.Array[B], start: Int): Int
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding()
- def copyToArray[B >: A](xs: scala.Array[B]): Int
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding()
- def corresponds[B](that: collection.IterableOnce[B])(p: (BigInt, B) => Boolean): Boolean
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def count(p: (BigInt) => Boolean): Int
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def drop(n: Int): collection.Iterable[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnceOps
- def dropRight(n: Int): collection.Iterable[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def dropWhile(p: (BigInt) => Boolean): collection.Iterable[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnceOps
- def empty: collection.Iterable[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableFactoryDefaults → IterableOps
- def ensuring(cond: (BigUint64Array) => Boolean, msg: => scala.Any): BigUint64Array
- Implicit
- This member is added by an implicit conversion from BigUint64Array toEnsuring[BigUint64Array] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: (BigUint64Array) => Boolean): BigUint64Array
- Implicit
- This member is added by an implicit conversion from BigUint64Array toEnsuring[BigUint64Array] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean, msg: => scala.Any): BigUint64Array
- Implicit
- This member is added by an implicit conversion from BigUint64Array toEnsuring[BigUint64Array] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean): BigUint64Array
- Implicit
- This member is added by an implicit conversion from BigUint64Array toEnsuring[BigUint64Array] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def exists(p: (BigInt) => Boolean): Boolean
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def fill(value: BigInt): Unit
Fills this entire TypedArray with a given value.
Fills this entire TypedArray with a given value.
- Definition Classes
- TypedArray
- def fill(value: BigInt, start: Int): Unit
Fills a subrange of this TypedArray with a given value, until then end of the array.
Fills a subrange of this TypedArray with a given value, until then end of the array.
- Definition Classes
- TypedArray
- def fill(value: BigInt, start: Int, end: Int): Unit
Fills a subrange of this TypedArray with a given value.
Fills a subrange of this TypedArray with a given value.
- Definition Classes
- TypedArray
- def filter(pred: (BigInt) => Boolean): collection.Iterable[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnceOps
- def filterNot(pred: (BigInt) => Boolean): collection.Iterable[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnceOps
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def find(p: (BigInt) => Boolean): Option[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def flatMap[B](f: (BigInt) => collection.IterableOnce[B]): collection.Iterable[B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnceOps
- def flatten[B](implicit asIterable: (BigInt) => collection.IterableOnce[B]): collection.Iterable[B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnceOps
- def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def foldLeft[B](z: B)(op: (B, BigInt) => B): B
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def foldRight[B](z: B)(op: (BigInt, B) => B): B
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def forall(p: (BigInt) => Boolean): Boolean
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def foreach[U](f: (BigInt) => U): Unit
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def get(index: Int): BigInt
Retrieve element at index
Retrieve element at index
- Definition Classes
- TypedArray
- Annotations
- @JSBracketAccess()
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def groupBy[K](f: (BigInt) => K): collection.immutable.Map[K, collection.Iterable[BigInt]]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def groupMap[K, B](key: (BigInt) => K)(f: (BigInt) => B): collection.immutable.Map[K, collection.Iterable[B]]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def groupMapReduce[K, B](key: (BigInt) => K)(f: (BigInt) => B)(reduce: (B, B) => B): collection.immutable.Map[K, B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def grouped(size: Int): collection.Iterator[collection.Iterable[BigInt]]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def hasOwnProperty(v: String): Boolean
Tests whether this object has the specified property as a direct property.
Tests whether this object has the specified property as a direct property.
Unlike js.Object.hasProperty, this method does not check down the object's prototype chain.
MDN
- Definition Classes
- Object
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def head: BigInt
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def headOption: Option[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def init: collection.Iterable[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def inits: collection.Iterator[collection.Iterable[BigInt]]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def isEmpty: Boolean
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isPrototypeOf(v: Object): Boolean
Tests whether this object is in the prototype chain of another object.
Tests whether this object is in the prototype chain of another object.
- Definition Classes
- Object
- def isTraversableAgain: Boolean
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnceOps
- def iterableFactory: IterableFactory[collection.Iterable]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- Iterable → IterableOps
- def iterator: collection.Iterator[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnce
- Annotations
- @inline()
- def jsIterator(): Iterator[BigInt]
JavaScript Iterator for this Iterable.
JavaScript Iterator for this Iterable.
- Definition Classes
- TypedArray → Iterable
- Annotations
- @JSName(symbol = js.Symbol.iterator)
- def knownSize: Int
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnce
- def last: BigInt
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def lastOption: Option[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def lazyZip[B]: ([B](that: Iterable[B]): scala.collection.LazyZip2[scala.scalajs.js.BigInt,B,_1.type]) forSome {val _1: IterableOps[BigInt]}
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- Iterable
- val length: Int
The number of elements in this TypedArray
The number of elements in this TypedArray
- Definition Classes
- TypedArray
- def map[B](f: (BigInt) => B): collection.Iterable[B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnceOps
- def max[B >: A](implicit ord: math.Ordering[B]): BigInt
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def maxBy[B](f: (BigInt) => B)(implicit cmp: math.Ordering[B]): BigInt
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def maxByOption[B](f: (BigInt) => B)(implicit cmp: math.Ordering[B]): Option[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def min[B >: A](implicit ord: math.Ordering[B]): BigInt
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def minBy[B](f: (BigInt) => B)(implicit cmp: math.Ordering[B]): BigInt
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def minByOption[B](f: (BigInt) => B)(implicit cmp: math.Ordering[B]): Option[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def minOption[B >: A](implicit ord: math.Ordering[B]): Option[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- final def mkString: String
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def mkString(sep: String): String
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def mkString(start: String, sep: String, end: String): String
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def nonEmpty: Boolean
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding()
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def partition(p: (BigInt) => Boolean): (collection.Iterable[BigInt], collection.Iterable[BigInt])
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def partitionMap[A1, A2](f: (BigInt) => Either[A1, A2]): (collection.Iterable[A1], collection.Iterable[A2])
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def product[B >: A](implicit num: math.Numeric[B]): B
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def propertyIsEnumerable(v: String): Boolean
Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain.
Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain.
If the object does not have the specified property, this method returns false.
MDN
- Definition Classes
- Object
- def reduce[B >: A](op: (B, B) => B): B
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def reduceLeft[B >: A](op: (B, BigInt) => B): B
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def reduceLeftOption[B >: A](op: (B, BigInt) => B): Option[B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def reduceOption[B >: A](op: (B, B) => B): Option[B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def reduceRight[B >: A](op: (BigInt, B) => B): B
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def reduceRightOption[B >: A](op: (BigInt, B) => B): Option[B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def scan[B >: A](z: B)(op: (B, B) => B): collection.Iterable[B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def scanLeft[B](z: B)(op: (B, BigInt) => B): collection.Iterable[B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnceOps
- def scanRight[B](z: B)(op: (BigInt, B) => B): collection.Iterable[B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def set(array: Array[_ <: BigInt], offset: Int): Unit
Set the values from array in this TypedArray at given offset
Set the values from array in this TypedArray at given offset
- Definition Classes
- TypedArray
- def set(array: Array[_ <: BigInt]): Unit
Set the values from array in this TypedArray
Set the values from array in this TypedArray
- Definition Classes
- TypedArray
- def set(typedArray: BigUint64Array, offset: Int): Unit
Set the values of typedArray in this TypedArray at given offset
Set the values of typedArray in this TypedArray at given offset
- Definition Classes
- TypedArray
- def set(typedArray: BigUint64Array): Unit
Set the values of typedArray in this TypedArray
Set the values of typedArray in this TypedArray
- Definition Classes
- TypedArray
- def set(index: Int, value: BigInt): Unit
Set element at index
Set element at index
- Definition Classes
- TypedArray
- Annotations
- @JSBracketAccess()
- def size: Int
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def sizeCompare(that: collection.Iterable[_]): Int
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def sizeCompare(otherSize: Int): Int
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- final def sizeIs: SizeCompareOps
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- Annotations
- @inline()
- def slice(from: Int, until: Int): collection.Iterable[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnceOps
- def sliding(size: Int, step: Int): collection.Iterator[collection.Iterable[BigInt]]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def sliding(size: Int): collection.Iterator[collection.Iterable[BigInt]]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def span(p: (BigInt) => Boolean): (collection.Iterable[BigInt], collection.Iterable[BigInt])
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnceOps
- def splitAt(n: Int): (collection.Iterable[BigInt], collection.Iterable[BigInt])
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnceOps
- def stepper[S <: Stepper[_]](implicit shape: StepperShape[BigInt, S]): S
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnce
- def subarray(begin: Int, end: Int = ???): BigUint64Array
Create a new TypedArray view of this TypedArray at given location
Create a new TypedArray view of this TypedArray at given location
- Definition Classes
- TypedArray
- def sum[B >: A](implicit num: math.Numeric[B]): B
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def tail: collection.Iterable[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def tails: collection.Iterator[collection.Iterable[BigInt]]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def take(n: Int): collection.Iterable[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnceOps
- def takeRight(n: Int): collection.Iterable[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def takeWhile(p: (BigInt) => Boolean): collection.Iterable[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnceOps
- def tapEach[U](f: (BigInt) => U): collection.Iterable[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnceOps
- def to[C1](factory: Factory[BigInt, C1]): C1
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- final def toBuffer[B >: A]: Buffer[B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- def toIndexedSeq: collection.immutable.IndexedSeq[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def toList: collection.immutable.List[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def toLocaleString(): String
- Definition Classes
- Object
- def toMap[K, V](implicit ev: <:<[BigInt, (K, V)]): collection.immutable.Map[K, V]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def toSeq: collection.immutable.Seq[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def toSet[B >: A]: collection.immutable.Set[B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def toString(): String
- Definition Classes
- AnyRef → Any
- def toVector: collection.immutable.Vector[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- def transpose[B](implicit asIterable: (BigInt) => collection.Iterable[B]): collection.Iterable[collection.Iterable[B]]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def unzip[A1, A2](implicit asPair: (BigInt) => (A1, A2)): (collection.Iterable[A1], collection.Iterable[A2])
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def unzip3[A1, A2, A3](implicit asTriple: (BigInt) => (A1, A2, A3)): (collection.Iterable[A1], collection.Iterable[A2], collection.Iterable[A3])
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def update(index: Int, value: BigInt): Unit
Set element at index
Set element at index
- Definition Classes
- TypedArray
- Annotations
- @JSBracketAccess()
- def valueOf(): scala.Any
- Definition Classes
- Object
- def view: View[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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()
- def withFilter(p: (BigInt) => Boolean): WithFilter[BigInt, collection.Iterable]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def zip[B](that: collection.IterableOnce[B]): collection.Iterable[(BigInt, B)]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def zipAll[A1 >: A, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): collection.Iterable[(A1, B)]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- def zipWithIndex: collection.Iterable[(BigInt, Int)]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps → IterableOnceOps
Shadowed Implicit Value Members
- def toString(): String
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(bigUint64Array: IterableOps[BigInt]).toString()
- Definition Classes
- Iterable → AnyRef → Any
Deprecated Value Members
- def ++:[B >: A](that: collection.IterableOnce[B]): collection.Iterable[B]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable
- final def /:[B](z: B)(op: (B, BigInt) => B): B
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use foldLeft instead of /:
- final def :\[B](z: B)(op: (BigInt, B) => B): B
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use foldRight instead of :\
- def aggregate[B](z: => B)(seqop: (B, BigInt) => B, combop: (B, B) => B): B
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0)
aggregateis not relevant for sequential collections. UsefoldLeft(z)(seqop)instead.
- def companion: IterableFactory[collection.Iterable]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- Annotations
- @deprecated @deprecatedOverriding() @inline()
- Deprecated
(Since version 2.13.0) Use iterableFactory instead
- final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use
dest ++= collinstead
- def formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from BigUint64Array toStringFormat[BigUint64Array] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.12.16) Use
formatString.format(value)instead ofvalue.formatted(formatString), or use thef""string interpolator. In Java 15 and later,formattedresolves to the new method in String which has reversed parameters.
- def hasDefiniteSize: Boolean
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)
- final def repr: collection.Iterable[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside
- def seq: IterableOps[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- Iterable
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Iterable.seq always returns the iterable itself
- final def toIterable: IterableOps[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- Iterable → IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.7) toIterable is internal and will be made protected; its name is similar to
toListortoSeq, but it doesn't copy non-immutable collections
- final def toIterator: collection.Iterator[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator instead of .toIterator
- final def toStream: collection.immutable.Stream[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .to(LazyList) instead of .toStream
- final def toTraversable: collection.Traversable[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) toTraversable is internal and will be made protected; its name is similar to
toListortoSeq, but it doesn't copy non-immutable collections
- def view(from: Int, until: Int): View[BigInt]
- Implicit
- This member is added by an implicit conversion from BigUint64Array toIterableOps[BigInt] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
- Definition Classes
- IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)
- def →[B](y: B): (BigUint64Array, B)
- Implicit
- This member is added by an implicit conversion from BigUint64Array toArrowAssoc[BigUint64Array] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use
->instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.