Packages

class Array[A] extends Object with Iterable[A]

Arrays are list-like objects whose prototype has methods to perform traversal and mutation operations. Neither the length of a JavaScript array nor the types of its elements are fixed. Since an array's size length grow or shrink at any time, JavaScript arrays are not guaranteed to be dense. In general, these are convenient characteristics; but if these features are not desirable for your particular use, you might consider using typed arrays.

MDN

To construct a new array with uninitialized elements, use the constructor of this class. To construct a new array with specified elements, as if you used the array literal syntax in JavaScript, use the Array.apply method instead.

A

Type of the elements of the array

Annotations
@JSType() @native() @JSGlobal()
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Array
  2. Iterable
  3. Object
  4. Any
  5. AnyRef
  6. Any
Implicitly
  1. by jsArrayOps
  2. by wrapArray
  3. by iterableOps
  4. by arrayAsIterable
  5. by any2stringadd
  6. by StringFormat
  7. by Ensuring
  8. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Array(arrayLength: Int)

    Creates a new array with the given length.

    Creates a new array with the given length.

    arrayLength

    Initial length of the array.

  2. new Array()

    Creates a new array of length 0.

Value Members

  1. final def !=(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Array[A] toany2stringadd[Array[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++[B >: A](ys: Array[_ <: B]): Array[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  5. final def ++[B >: A](ys: collection.IterableOnce[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  6. final def ++[B >: A](suffix: collection.IterableOnce[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @inline()
  7. final def ++[B >: A](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @inline()
  8. final def ++[B >: A](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOps
    Annotations
    @inline()
  9. final def ++:[B >: A](prefix: Array[_ <: B]): Array[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  10. final def ++:[B >: A](prefix: collection.IterableOnce[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  11. final def ++:[B >: A](prefix: collection.IterableOnce[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  12. final def +:[B >: A](x: B): Array[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  13. final def +:[B >: A](elem: B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @inline()
  14. def ->[B](y: B): (Array[A], B)
    Implicit
    This member is added by an implicit conversion from Array[A] toArrowAssoc[Array[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  15. final def :+[B >: A](x: B): Array[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  16. final def :+[B >: A](elem: B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @inline()
  17. final def :++[B >: A](suffix: Array[_ <: B]): Array[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  18. final def :++[B >: A](suffix: collection.IterableOnce[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  19. final def :++[B >: A](suffix: collection.IterableOnce[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @inline()
  20. final def ==(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  21. def andThen[C](k: PartialFunction[A, C]): PartialFunction[Int, C]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  22. def andThen[C](k: (A) => C): PartialFunction[Int, C]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction → Function1
  23. def appended[B >: A](x: B): Array[B]

    A copy of this array with an element appended.

    A copy of this array with an element appended.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  24. def appended[B >: A](elem: B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  25. def appendedAll[B >: A](suffix: Array[_ <: B]): Array[B]

    A copy of this array with all elements of an array appended.

    A copy of this array with all elements of an array appended.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  26. def appendedAll[B >: A](suffix: collection.IterableOnce[B]): Array[B]

    A copy of this array with all elements of a collection appended.

    A copy of this array with all elements of a collection appended.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  27. def appendedAll[B >: A](suffix: collection.IterableOnce[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  28. def apply(index: Int): A

    Access the element at the given index.

    Access the element at the given index.

    Annotations
    @JSBracketAccess()
  29. def applyOrElse[A1 <: A, B1 >: B](x: A1, default: (A1) => B1): B1
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  30. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  31. def canEqual(that: scala.Any): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Seq → Equals
  32. def className: String
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedArray → Iterable
    Annotations
    @inline()
  33. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  34. def collect[B](pf: PartialFunction[A, B]): Array[B]

    Builds a new array by applying a partial function to all elements of this array on which the function is defined.

    Builds a new array by applying a partial function to all elements of this array on which the function is defined.

    B

    the element type of the returned array.

    pf

    the partial function which filters and maps the array.

    returns

    a new array resulting from applying the given partial function pf to each element on which it is defined and collecting the results. The order of the elements is preserved.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  35. def collect[B](pf: PartialFunction[A, B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  36. def collectFirst[B](f: PartialFunction[A, B]): Option[B]

    Finds the first element of the array for which the given partial function is defined, and applies the partial function to it.

    Finds the first element of the array for which the given partial function is defined, and applies the partial function to it.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  37. def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  38. def compose[A](g: (A) => Int): (A) => A
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  39. def concat[B >: A](items: Array[_ <: B]*): Array[B]

    concat creates a new array consisting of the elements in the this object on which it is called, followed in order by, for each argument, the elements of that argument (if the argument is an array) or the argument itself (if the argument is not an array).

    concat creates a new array consisting of the elements in the this object on which it is called, followed in order by, for each argument, the elements of that argument (if the argument is an array) or the argument itself (if the argument is not an array).

    MDN

  40. def containsSlice[B](that: collection.Seq[B]): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  41. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Int

    Copy elements of this array to a Scala array.

    Copy elements of this array to a Scala array.

    Fills the given array xs starting at index start with at most len values. Copying will stop once either all the elements of this array have been copied, or the end of the array is reached, or len elements have been copied.

    B

    the type of the elements of the array.

    xs

    the array to fill.

    start

    the starting index within the destination array.

    len

    the maximal number of elements to copy.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  42. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Int

    Copy elements of this array to a Scala array.

    Copy elements of this array to a Scala array.

    Fills the given array xs starting at index start. Copying will stop once either all the elements of this array have been copied, or the end of the array is reached.

    B

    the type of the elements of the array.

    xs

    the array to fill.

    start

    the starting index within the destination array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  43. def copyToArray[B >: A](xs: scala.Array[B]): Int

    Copy elements of this array to a Scala array.

    Copy elements of this array to a Scala array.

    Fills the given array xs starting at index 0. Copying will stop once either all the elements of this array have been copied, or the end of the array is reached.

    B

    the type of the elements of the array.

    xs

    the array to fill.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  44. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  45. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  46. def copyToArray[B >: A](xs: scala.Array[B]): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  47. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  48. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  49. def copyToArray[B >: A](xs: scala.Array[B]): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  50. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Int
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
  51. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Int
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
  52. def copyToArray[B >: A](xs: scala.Array[B]): Int
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
  53. def corresponds[B](that: collection.Seq[B])(p: (A, B) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  54. def diff[B >: A](that: Seq[B]): Array[A]

    Computes the multiset difference between this array and another sequence.

    Computes the multiset difference between this array and another sequence.

    that

    the sequence of elements to remove

    returns

    a new array which contains all elements of this array except some of occurrences of elements that also appear in that. If an element value x appears n times in that, then the first n occurrences of x will not form part of the result, but any following occurrences will.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  55. def diff[B >: A](that: collection.Seq[B]): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  56. def distinctBy[B](f: (A) => B): Array[A]

    Selects all the elements of this array ignoring the duplicates as determined by == after applying the transforming function f.

    Selects all the elements of this array ignoring the duplicates as determined by == after applying the transforming function f.

    B

    the type of the elements after being transformed by f

    f

    The transforming function whose result is used to determine the uniqueness of each element

    returns

    a new array consisting of all the elements of this array without duplicates.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  57. def distinctBy[B](f: (A) => B): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  58. def elementWise: ElementWiseExtractor[Int, A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  59. def endsWith[B >: A](that: collection.Iterable[B]): Boolean

    Tests whether this array ends with the given sequence.

    Tests whether this array ends with the given sequence.

    that

    the sequence to test

    returns

    true if this array has that as a suffix, false otherwise.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  60. def endsWith[B >: A](that: Array[B]): Boolean

    Tests whether this array ends with the given array.

    Tests whether this array ends with the given array.

    that

    the array to test

    returns

    true if this array has that as a suffix, false otherwise.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  61. def endsWith[B >: A](that: collection.Iterable[B]): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  62. def ensuring(cond: (Array[A]) => Boolean, msg: => scala.Any): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toEnsuring[Array[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  63. def ensuring(cond: (Array[A]) => Boolean): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toEnsuring[Array[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  64. def ensuring(cond: Boolean, msg: => scala.Any): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toEnsuring[Array[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  65. def ensuring(cond: Boolean): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toEnsuring[Array[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  66. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  67. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  68. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  69. def findLast(p: (A) => Boolean): Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  70. def flatMap[BS, B](f: (A) => BS)(implicit asIterable: (BS) => collection.Iterable[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  71. def flatMap[B](f: (A) => collection.IterableOnce[B]): Array[B]

    Builds a new array by applying a function to all elements of this array and using the elements of the resulting collections.

    Builds a new array by applying a function to all elements of this array and using the elements of the resulting collections.

    B

    the element type of the returned array.

    f

    the function to apply to each element.

    returns

    a new array resulting from applying the given collection-valued function f to each element of this array and concatenating the results.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  72. def flatMap[B](f: (A) => collection.IterableOnce[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  73. def flatten[B](implicit asIterable: (A) => collection.Iterable[B]): Array[B]

    Flattens a two-dimensional array by concatenating all its rows into a single array.

    Flattens a two-dimensional array by concatenating all its rows into a single array.

    B

    Type of row elements.

    asIterable

    A function that converts elements of this array to rows - Iterables of type B.

    returns

    An array obtained by concatenating rows of this array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  74. def flatten[B](implicit toIterableOnce: (A) => collection.IterableOnce[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  75. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1

    Folds the elements of this array using the specified associative binary operator.

    Folds the elements of this array using the specified associative binary operator.

    A1

    a type parameter for the binary operator, a supertype of A.

    z

    a neutral element for the fold operation; may be added to the result an arbitrary number of times, and must not change the result (e.g., Nil for list concatenation, 0 for addition, or 1 for multiplication).

    op

    a binary operator that must be associative.

    returns

    the result of applying the fold operator op between all the elements, or z if this array is empty.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  76. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  77. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  78. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
  79. def foldLeft[B](z: B)(op: (B, A) => B): B

    Applies a binary operator to a start value and all elements of this array, going left to right.

    Applies a binary operator to a start value and all elements of this array, going left to right.

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this array, going left to right with the start value z on the left:

    op(...op(z, x_1), x_2, ..., x_n)

    where x1, ..., xn are the elements of this array. Returns z if this array is empty.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  80. def foldRight[B](z: B)(op: (A, B) => B): B

    Applies a binary operator to all elements of this array and a start value, going right to left.

    Applies a binary operator to all elements of this array and a start value, going right to left.

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this array, going right to left with the start value z on the right:

    op(x_1, op(x_2, ... op(x_n, z)...))

    where x1, ..., xn are the elements of this array. Returns z if this array is empty.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  81. def foldRight[B](z: B)(op: (A, B) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOps → IterableOnceOps
  82. def foreach[U](f: (A) => U): Unit

    Apply f to each element for its side effects.

    Apply f to each element for its side effects.

    Note: [U] parameter needed to help scalac's type inference.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  83. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Array[A] toStringFormat[Array[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  84. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  85. def groupBy[K](f: (A) => K): collection.immutable.Map[K, Array[A]]

    Partitions this array into a map of arrays according to some discriminator function.

    Partitions this array into a map of arrays according to some discriminator function.

    K

    the type of keys returned by the discriminator function.

    f

    the discriminator function.

    returns

    A map from keys to arrays such that the following invariant holds:

    (xs groupBy f)(k) = xs filter (x => f(x) == k)

    That is, every key k is bound to an array of those elements x for which f(x) equals k.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  86. def groupMap[K, B](key: (A) => K)(f: (A) => B): collection.immutable.Map[K, Array[B]]

    Partitions this array into a map of arrays according to a discriminator function key.

    Partitions this array into a map of arrays according to a discriminator function key.

    Each element in a group is transformed into a value of type B using the value function.

    It is equivalent to groupBy(key).mapValues(_.map(f)), but more efficient.

    case class User(name: String, age: Int)
    
    def namesByAge(users: js.Array[User]): Map[Int, js.Array[String]] =
      users.groupMap(_.age)(_.name)
    K

    the type of keys returned by the discriminator function

    B

    the type of values returned by the transformation function

    key

    the discriminator function

    f

    the element transformation function

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  87. 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
  88. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  89. def indexOf[B >: A](elem: B): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOf(elem, from) instead - indexOf(elem) calls indexOf(elem, 0)", "2.13.0")
  90. def indexOfSlice[B >: A](that: collection.Seq[B]): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOfSlice(that, from) instead - indexOfSlice(that) calls indexOfSlice(that, 0)", "2.13.0")
  91. def indexOfSlice[B >: A](that: collection.Seq[B], from: Int): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  92. def indexWhere(p: (A) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexWhere(p, from) instead - indexWhere(p) calls indexWhere(p, 0)", "2.13.0")
  93. def intersect[B >: A](that: Seq[B]): Array[A]

    Computes the multiset intersection between this array and another sequence.

    Computes the multiset intersection between this array and another sequence.

    that

    the sequence of elements to intersect with.

    returns

    a new array which contains all elements of this array which also appear in that. If an element value x appears n times in that, then the first n occurrences of x will be retained in the result, but any following occurrences will be omitted.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  94. def intersect[B >: A](that: collection.Seq[B]): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  95. def isDefinedAt(idx: Int): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  96. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  97. 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
  98. def join(seperator: String = ","): String

    The join() method joins all elements of an array into a string.

    The join() method joins all elements of an array into a string.

    separator Specifies a string to separate each element of the array. The separator is converted to a string if necessary. If omitted, the array elements are separated with a comma.

  99. def jsIterator(): Iterator[A]

    ECMAScript 6 JavaScript Iterator for this Array.

    ECMAScript 6 JavaScript Iterator for this Array.

    Definition Classes
    ArrayIterable
    Annotations
    @JSName(symbol = js.Symbol.iterator)
  100. def jsSlice(start: Int = 0, end: Int = Int.MaxValue): Array[A]

    The slice() method returns a shallow copy of a portion of an array.

    The slice() method returns a shallow copy of a portion of an array.

    MDN

    Annotations
    @JSName(name = "slice")
  101. def lastIndexOfSlice[B >: A](that: collection.Seq[B]): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override lastIndexOfSlice(that, end) instead - lastIndexOfSlice(that) calls lastIndexOfSlice(that, Int.MaxValue)", "2.13.0")
  102. def lastIndexOfSlice[B >: A](that: collection.Seq[B], end: Int): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  103. def lastIndexWhere(p: (A) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override lastIndexWhere(p, end) instead - lastIndexWhere(p) calls lastIndexWhere(p, Int.MaxValue)", "2.13.0")
  104. def length: Int

    Length of the array.

  105. final def lengthCompare(that: collection.Iterable[_]): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOps → SeqOps
  106. def length_=(v: Int): Unit

    Sets the length of the array.

    Sets the length of the array. If the new length is bigger than the old length, created slots are filled with undefined (irrespective of the type argument A!). If the new length is smaller than the old length, the array is shrunk.

  107. def lift: (Int) => Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  108. def map[B](f: (A) => B): Array[B]

    Builds a new array by applying a function to all elements of this array.

    Builds a new array by applying a function to all elements of this array.

    B

    the element type of the returned array.

    f

    the function to apply to each element.

    returns

    a new aray resulting from applying the given function f to each element of this array and collecting the results.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  109. def map[B](f: (A) => B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  110. def mapResult[NewTo](f: (WrappedArray[A]) => NewTo): Builder[A, NewTo]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  111. def max[B >: A](implicit ord: math.Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  112. def max[B >: A](implicit ord: math.Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  113. def max[B >: A](implicit ord: math.Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
  114. def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  115. def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  116. def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
  117. def min[B >: A](implicit ord: math.Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  118. def min[B >: A](implicit ord: math.Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  119. def min[B >: A](implicit ord: math.Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
  120. def minOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  121. def minOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  122. def minOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
  123. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  124. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  125. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  126. def orElse[A1 <: A, B1 >: B](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  127. def padTo[B >: A](len: Int, elem: B): Array[B]

    A copy of this array with an element value appended until a given target length is reached.

    A copy of this array with an element value appended until a given target length is reached.

    B

    the element type of the returned array.

    len

    the target length

    elem

    the padding value

    returns

    a new array consisting of all elements of this array followed by the minimal number of occurrences of elem so that the resulting collection has a length of at least len.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  128. def padTo[B >: A](len: Int, elem: B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  129. def partitionMap[A1, A2](f: (A) => Either[A1, A2]): (Array[A1], Array[A2])

    Applies a function f to each element of the array and returns a pair of arrays: the first one made of those values returned by f that were wrapped in scala.util.Left, and the second one made of those wrapped in scala.util.Right.

    Applies a function f to each element of the array and returns a pair of arrays: the first one made of those values returned by f that were wrapped in scala.util.Left, and the second one made of those wrapped in scala.util.Right.

    Example:

    val xs = js.Array(1, "one", 2, "two", 3, "three").partitionMap {
      case i: Int    => Left(i)
      case s: String => Right(s)
    }
    // xs == (js.Array(1, 2, 3),
    //        js.Array("one", "two", "three"))
    A1

    the element type of the first resulting collection

    A2

    the element type of the second resulting collection

    f

    the 'split function' mapping the elements of this array to an scala.util.Either

    returns

    a pair of arrays: the first one made of those values returned by f that were wrapped in scala.util.Left, and the second one made of those wrapped in scala.util.Right.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  130. def partitionMap[A1, A2](f: (A) => Either[A1, A2]): (WrappedArray[A1], WrappedArray[A2])
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  131. def patch[B >: A](from: Int, other: collection.IterableOnce[B], replaced: Int): Array[B]

    Returns a copy of this array with patched values.

    Returns a copy of this array with patched values.

    Patching at negative indices is the same as patching starting at 0. Patching at indices at or larger than the length of the original array appends the patch to the end. If more values are replaced than actually exist, the excess is ignored.

    from

    The start index from which to patch

    other

    The patch values

    replaced

    The number of values in the original array that are replaced by the patch.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  132. def patch[B >: A](from: Int, other: collection.IterableOnce[B], replaced: Int): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  133. def pop(): A

    The pop() method removes the last element from an array and returns that element.

    The pop() method removes the last element from an array and returns that element.

    MDN

  134. def prepended[B >: A](x: B): Array[B]

    A copy of this array with an element prepended.

    A copy of this array with an element prepended.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  135. def prepended[B >: A](elem: B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOps → SeqOps
  136. def prependedAll[B >: A](prefix: Array[_ <: B]): Array[B]

    A copy of this array with all elements of an array prepended.

    A copy of this array with all elements of an array prepended.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  137. def prependedAll[B >: A](prefix: collection.IterableOnce[B]): Array[B]

    A copy of this array with all elements of a collection prepended.

    A copy of this array with all elements of a collection prepended.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  138. def prependedAll[B >: A](prefix: collection.IterableOnce[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  139. def product[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  140. def product[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  141. def product[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
  142. 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
  143. def push(items: A*): Int

    The push() method mutates an array by appending the given elements and returning the new length of the array.

    The push() method mutates an array by appending the given elements and returning the new length of the array.

    MDN

  144. def reduce[B >: A](op: (B, B) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  145. def reduce[B >: A](op: (B, B) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  146. def reduce[B >: A](op: (B, B) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
  147. def reduceLeft[B >: A](op: (B, A) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  148. def reduceLeft[B >: A](op: (B, A) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  149. def reduceLeft[B >: A](op: (B, A) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
  150. def reduceLeftOption[B >: A](op: (B, A) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  151. def reduceLeftOption[B >: A](op: (B, A) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  152. def reduceLeftOption[B >: A](op: (B, A) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
  153. def reduceOption[B >: A](op: (B, B) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  154. def reduceOption[B >: A](op: (B, B) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  155. def reduceOption[B >: A](op: (B, B) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
  156. def reduceRight[B >: A](op: (A, B) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  157. def reduceRight[B >: A](op: (A, B) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  158. def reduceRight[B >: A](op: (A, B) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
  159. def reduceRightOption[B >: A](op: (A, B) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  160. def reduceRightOption[B >: A](op: (A, B) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  161. def reduceRightOption[B >: A](op: (A, B) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
  162. def result(): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedArray → Builder
    Annotations
    @inline()
  163. def reverseInPlace(): Array[A]

    The reverse() method reverses an array in place.

    The reverse() method reverses an array in place. The first array element becomes the last and the last becomes the first.

    MDN

    Annotations
    @JSName(name = "reverse")
  164. def runWith[U](action: (A) => U): (Int) => Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  165. def sameElements[B >: A](that: collection.IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  166. def scan[B >: A](z: B)(op: (B, B) => B): Array[B]

    Computes a prefix scan of the elements of the array.

    Computes a prefix scan of the elements of the array.

    Note: The neutral element z may be applied more than once.

    B

    element type of the resulting array

    z

    neutral element for the operator op

    op

    the associative operator for the scan

    returns

    a new array containing the prefix scan of the elements in this array

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  167. def scan[B >: A](z: B)(op: (B, B) => B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  168. def scan[B >: A](z: B)(op: (B, B) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  169. def scan[B >: A](z: B)(op: (B, B) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOps
  170. def scanLeft[B](z: B)(op: (B, A) => B): Array[B]

    Produces an array containing cumulative results of applying the binary operator going left to right.

    Produces an array containing cumulative results of applying the binary operator going left to right.

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

    array with intermediate values. Example:

    js.Array(1, 2, 3, 4).scanLeft(0)(_ + _) == js.Array(0, 1, 3, 6, 10)
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  171. def scanLeft[B](z: B)(op: (B, A) => B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  172. def scanRight[B](z: B)(op: (A, B) => B): Array[B]

    Produces an array containing cumulative results of applying the binary operator going right to left.

    Produces an array containing cumulative results of applying the binary operator going right to left.

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

    array with intermediate values. Example:

    js.Array(4, 3, 2, 1).scanRight(0)(_ + _) == js.Array(10, 6, 3, 1, 0)
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  173. def search[B >: A](elem: B, from: Int, to: Int)(implicit ord: math.Ordering[B]): SearchResult
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOps → SeqOps
  174. def search[B >: A](elem: B)(implicit ord: math.Ordering[B]): SearchResult
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOps → SeqOps
  175. def segmentLength(p: (A) => Boolean, from: Int): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  176. final def segmentLength(p: (A) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  177. def shift(): A

    The shift() method removes the first element from an array and returns that element.

    The shift() method removes the first element from an array and returns that element. This method changes the length of the array.

    MDN

  178. final def sizeHint(coll: collection.IterableOnce[_], delta: Int): Unit
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  179. def sizeHint(size: Int): Unit
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  180. final def sizeHintBounded(size: Int, boundingColl: collection.Iterable[_]): Unit
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  181. def sort(compareFn: Function2[A, A, Int] = ???): Array[A]

    The sort() method sorts the elements of an array in place and returns the array.

    The sort() method sorts the elements of an array in place and returns the array. The sort is not necessarily stable. The default sort order is lexicographic (not numeric).

    If compareFunction is not supplied, elements are sorted by converting them to strings and comparing strings in lexicographic ("dictionary" or "telephone book," not numerical) order. For example, "80" comes before "9" in lexicographic order, but in a numeric sort 9 comes before 80.

    MDN

  182. def sortBy[B](f: (A) => B)(implicit ord: Ordering[B]): Array[A]

    Sorts this array according to the Ordering which results from transforming an implicitly given Ordering with a transformation function.

    Sorts this array according to the Ordering which results from transforming an implicitly given Ordering with a transformation function.

    B

    the target type of the transformation f, and the type where the ordering ord is defined.

    f

    the transformation function mapping elements to some other domain B.

    ord

    the ordering assumed on domain B.

    returns

    an array consisting of the elements of this array sorted according to the ordering where x < y if ord.lt(f(x), f(y)).

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    See also

    scala.math.Ordering

  183. def sortBy[B](f: (A) => B)(implicit ord: Ordering[B]): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  184. def sortInPlace[B >: A]()(implicit ord: math.Ordering[B]): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOps
  185. def sortInPlaceBy[B](f: (A) => B)(implicit ord: math.Ordering[B]): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOps
  186. def sortInPlaceWith(lt: (A, A) => Boolean): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOps
  187. def sorted[B >: A](implicit ord: Ordering[B]): Array[A]

    Sorts this array according to an Ordering.

    Sorts this array according to an Ordering.

    The sort is stable. That is, elements that are equal (as determined by lt) appear in the same order in the sorted sequence as in the original.

    ord

    the ordering to be used to compare elements.

    returns

    an array consisting of the elements of this array sorted according to the ordering ord.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    See also

    scala.math.Ordering

  188. def sorted[B >: A](implicit ord: Ordering[B]): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  189. def splice(index: Int, deleteCount: Int, items: A*): Array[A]

    Removes and adds new elements at a given index in the array.

    Removes and adds new elements at a given index in the array.

    This method first removes deleteCount elements starting from the index index, then inserts the new elements items at that index.

    If index is negative, it is treated as that number of elements starting from the end of the array.

    index

    Index where to start changes

    deleteCount

    Number of elements to delete from index

    items

    Elements to insert at index

    returns

    An array of the elements that were deleted

  190. def startsWith[B >: A](that: collection.IterableOnce[B], offset: Int = 0): Boolean

    Tests whether this array contains the given sequence at a given index.

    Tests whether this array contains the given sequence at a given index.

    that

    the sequence to test

    offset

    the index where the sequence is searched.

    returns

    true if the sequence that is contained in this array at index offset, otherwise false.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  191. def startsWith[B >: A](that: Array[B], offset: Int): Boolean

    Tests whether this array contains the given array at a given index.

    Tests whether this array contains the given array at a given index.

    that

    the array to test

    offset

    the index where the array is searched.

    returns

    true if the array that is contained in this array at index offset, otherwise false.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  192. def startsWith[B >: A](that: Array[B]): Boolean

    Tests whether this array starts with the given array.

    Tests whether this array starts with the given array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  193. def startsWith[B >: A](that: collection.IterableOnce[B], offset: Int): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  194. def stepper[S <: Stepper[_]](implicit shape: StepperShape[A, S]): S with EfficientSplit
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOps → IterableOnce
  195. def sum[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  196. def sum[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  197. def sum[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
  198. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  199. def tapEach[U](f: (A) => U): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  200. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]

    Create a copy of this array as a Scala array.

    Create a copy of this array as a Scala array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  201. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  202. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  203. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
  204. def toLocaleString(): String
    Definition Classes
    Object
  205. def toString(): String
    Definition Classes
    AnyRef → Any
  206. def transpose[B](implicit asArray: (A) => Array[B]): Array[Array[B]]

    Transposes a two dimensional array.

    Transposes a two dimensional array.

    B

    Type of row elements.

    asArray

    A function that converts elements of this array to rows - arrays of type B.

    returns

    An array obtained by replacing elements of this arrays with rows the represent.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  207. def unapply(a: Int): Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  208. def unshift(items: A*): Int

    The unshift() method adds one or more elements to the beginning of an array and returns the new length of the array.

    The unshift() method adds one or more elements to the beginning of an array and returns the new length of the array.

    MDN

  209. def unzip[A1, A2](implicit asPair: (A) => (A1, A2)): (Array[A1], Array[A2])

    Converts an array of pairs into an array of first elements and an array of second elements.

    Converts an array of pairs into an array of first elements and an array of second elements.

    A1

    the type of the first half of the element pairs

    A2

    the type of the second half of the element pairs

    asPair

    an implicit conversion which asserts that the element type of this array is a pair.

    returns

    a pair of Arrays, containing, respectively, the first and second half of each element pair of this array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  210. def unzip[A1, A2](implicit asPair: (A) => (A1, A2)): (WrappedArray[A1], WrappedArray[A2])
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  211. def unzip3[A1, A2, A3](implicit asTriple: (A) => (A1, A2, A3)): (Array[A1], Array[A2], Array[A3])

    Converts an array of triples into three arrays, one containing the elements from each position of the triple.

    Converts an array of triples into three arrays, one containing the elements from each position of the triple.

    A1

    the type of the first of three elements in the triple

    A2

    the type of the second of three elements in the triple

    A3

    the type of the third of three elements in the triple

    asTriple

    an implicit conversion which asserts that the element type of this array is a triple.

    returns

    a triple of Arrays, containing, respectively, the first, second, and third elements from each element triple of this array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  212. def unzip3[A1, A2, A3](implicit asTriple: (A) => (A1, A2, A3)): (WrappedArray[A1], WrappedArray[A2], WrappedArray[A3])
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  213. def update(index: Int, value: A): Unit

    Set the element at the given index.

    Set the element at the given index.

    Annotations
    @JSBracketAccess()
  214. def updated[B >: A](index: Int, elem: B): Array[B]

    A copy of this array with one single replaced element.

    A copy of this array with one single replaced element.

    index

    the position of the replacement

    elem

    the replacing element

    returns

    a new array which is a copy of this array with the element at position index replaced by elem.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Exceptions thrown

    IndexOutOfBoundsException if index does not satisfy 0 <= index < length.

  215. def updated[B >: A](index: Int, elem: B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  216. def valueOf(): scala.Any
    Definition Classes
    Object
  217. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  218. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  219. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  220. def zip[B](that: collection.IterableOnce[B]): Array[(A, B)]

    Returns an array formed from this array and another iterable collection by combining corresponding elements in pairs.

    Returns an array formed from this array and another iterable collection by combining corresponding elements in pairs.

    If one of the two collections is longer than the other, its remaining elements are ignored.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    returns

    a new array containing pairs consisting of corresponding elements of this array and that. The length of the returned array is the minimum of the lengths of this array and that.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  221. def zip[B](that: collection.IterableOnce[B]): WrappedArray[(A, B)]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  222. def zipAll[A1 >: A, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): Array[(A1, B)]

    Returns an array formed from this array and another iterable collection by combining corresponding elements in pairs.

    Returns an array formed from this array and another iterable collection by combining corresponding elements in pairs.

    If one of the two collections is shorter than the other, placeholder elements are used to extend the shorter collection to the length of the longer.

    that

    the iterable providing the second half of each result pair

    thisElem

    the element to be used to fill up the result if this array is shorter than that.

    thatElem

    the element to be used to fill up the result if that is shorter than this array.

    returns

    a new array containing pairs consisting of corresponding elements of this array and that. The length of the returned array is the maximum of the lengths of this array and that. If this array is shorter than that, thisElem values are used to pad the result. If that is shorter than this array, thatElem values are used to pad the result.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  223. def zipAll[A1 >: A, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): WrappedArray[(A1, B)]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  224. 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 Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  225. 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 Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOps

Shadowed Implicit Value Members

  1. final def ++=(ys: collection.IterableOnce[A]): Array[A]

    Alias for addAll

    Alias for addAll

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).++=(ys)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  2. final def ++=(xs: collection.IterableOnce[A]): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).++=(xs)
    Definition Classes
    Growable
    Annotations
    @inline()
  3. final def ++=:(elems: collection.IterableOnce[A]): Array[A]

    Alias for prependAll

    Alias for prependAll

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).++=:(elems)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  4. final def ++=:(elems: collection.IterableOnce[A]): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).++=:(elems)
    Definition Classes
    Buffer
    Annotations
    @inline()
  5. final def +=(elem: A): Array[A]

    Alias for addOne

    Alias for addOne

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).+=(elem)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  6. final def +=(elem: A): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).+=(elem)
    Definition Classes
    Growable
    Annotations
    @inline()
  7. final def +=:(elem: A): Array[A]

    Alias for prepend

    Alias for prepend

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).+=:(elem)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  8. final def +=:(elem: A): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).+=:(elem)
    Definition Classes
    Buffer
    Annotations
    @inline()
  9. final def --=(ys: collection.IterableOnce[A]): Array[A]

    Alias for subtractAll

    Alias for subtractAll

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).--=(ys)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  10. final def --=(xs: collection.IterableOnce[A]): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).--=(xs)
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  11. final def -=(elem: A): Array[A]

    Alias for subtractOne

    Alias for subtractOne

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).-=(elem)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  12. final def -=(elem: A): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).-=(elem)
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  13. def addAll(ys: collection.IterableOnce[A]): Array[A]

    Adds all elements produced by an IterableOnce to this array.

    Adds all elements produced by an IterableOnce to this array.

    returns

    the array itself.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).addAll(ys)
    Definition Classes
    ArrayOps
  14. def addAll(xs: collection.IterableOnce[A]): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).addAll(xs)
    Definition Classes
    Growable
  15. def addOne(elem: A): Array[A]

    Appends a single element to this array.

    Appends a single element to this array.

    elem

    the element to add.

    returns

    the array itself

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).addOne(elem)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  16. def addOne(elem: A): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).addOne(elem)
    Definition Classes
    WrappedArray → Growable
    Annotations
    @inline()
  17. final def addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).addString(b)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  18. final def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).addString(b, sep)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  19. 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 Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).addString(b, start, sep, end)
    Definition Classes
    IterableOnceOps
  20. final def addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).addString(b)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  21. final def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).addString(b, sep)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  22. 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 Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).addString(b, start, sep, end)
    Definition Classes
    IterableOnceOps
  23. final def addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).addString(b)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  24. final def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).addString(b, sep)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  25. 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 Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).addString(b, start, sep, end)
    Definition Classes
    IterableOnceOps
  26. final def append(elem: A): Array[A]

    Appends the given element to this array.

    Appends the given element to this array.

    elem

    the element to append.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).append(elem)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  27. final def append(elem: A): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).append(elem)
    Definition Classes
    Buffer
    Annotations
    @inline()
  28. final def appendAll(ys: collection.IterableOnce[A]): Array[A]

    Appends the elements contained in an iterable object to this array.

    Appends the elements contained in an iterable object to this array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).appendAll(ys)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  29. final def appendAll(xs: collection.IterableOnce[A]): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).appendAll(xs)
    Definition Classes
    Buffer
    Annotations
    @inline()
  30. def apply(index: Int): A
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (array: WrappedArray[A]).apply(index)
    Definition Classes
    WrappedArray → SeqOps → Function1
    Annotations
    @inline()
  31. def clear(): Unit

    Clears the array's contents.

    Clears the array's contents.

    After this operation, the array is empty.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).clear()
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  32. def clear(): Unit
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).clear()
    Definition Classes
    WrappedArray → Builder → Clearable
    Annotations
    @inline()
  33. def clone(): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (array: WrappedArray[A]).clone()
    Definition Classes
    SeqOps → Cloneable → AnyRef
  34. def collect[B](pf: PartialFunction[A, B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).collect(pf)
    Definition Classes
    IterableOps → IterableOnceOps
  35. def collect[B](pf: PartialFunction[A, B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).collect(pf)
    Definition Classes
    IterableOps → IterableOnceOps
  36. def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).collectFirst(pf)
    Definition Classes
    IterableOnceOps
  37. def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).collectFirst(pf)
    Definition Classes
    IterableOnceOps
  38. def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).collectFirst(pf)
    Definition Classes
    IterableOnceOps
  39. def combinations(n: Int): collection.Iterator[Array[A]]

    Iterates over combinations.

    Iterates over combinations.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).combinations(n)
    Definition Classes
    ArrayOps
  40. def combinations(n: Int): collection.Iterator[WrappedArray[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).combinations(n)
    Definition Classes
    SeqOps
  41. final def concat[B >: A](suffix: collection.IterableOnce[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (array: WrappedArray[A]).concat(suffix)
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  42. def concat[B >: A](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] 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:
    (array: IterableOps[A]).concat(suffix)
    Definition Classes
    IterableOps
  43. def concat[B >: A](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    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:
    (array: collection.Iterable[A]).concat(suffix)
    Definition Classes
    IterableOps
  44. def contains(elem: A): Boolean

    Tests whether this array contains a given value as an element.

    Tests whether this array contains a given value as an element.

    elem

    the element to test.

    returns

    true if this array has an element that is equal (as determined by ==) to elem, false otherwise.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).contains(elem)
    Definition Classes
    ArrayOps
  45. def contains[A1 >: A](elem: A1): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).contains(elem)
    Definition Classes
    SeqOps
  46. def corresponds[B](that: collection.IterableOnce[B])(p: (A, B) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).corresponds(that)(p)
    Definition Classes
    IterableOnceOps
  47. def corresponds[B](that: collection.IterableOnce[B])(p: (A, B) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).corresponds(that)(p)
    Definition Classes
    IterableOnceOps
  48. def corresponds[B](that: collection.IterableOnce[B])(p: (A, B) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).corresponds(that)(p)
    Definition Classes
    IterableOnceOps
  49. def count(p: (A) => Boolean): Int

    Counts the number of elements in this array which satisfy a predicate.

    Counts the number of elements in this array which satisfy a predicate.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).count(p)
    Definition Classes
    ArrayOps
  50. def count(p: (A) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).count(p)
    Definition Classes
    IterableOnceOps
  51. def count(p: (A) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).count(p)
    Definition Classes
    IterableOnceOps
  52. def count(p: (A) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).count(p)
    Definition Classes
    IterableOnceOps
  53. def distinct: Array[A]

    Selects all the elements of this array ignoring the duplicates.

    Selects all the elements of this array ignoring the duplicates.

    returns

    a new array consisting of all the elements of this array without duplicates.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).distinct
    Definition Classes
    ArrayOps
  54. def distinct: WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).distinct
    Definition Classes
    SeqOps
  55. def drop(n: Int): Array[A]

    The rest of the array without its n first elements.

    The rest of the array without its n first elements.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).drop(n)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  56. def drop(n: Int): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).drop(n)
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  57. def drop(n: Int): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).drop(n)
    Definition Classes
    IterableOps → IterableOnceOps
  58. def drop(n: Int): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).drop(n)
    Definition Classes
    IterableOps → IterableOnceOps
  59. def dropInPlace(n: Int): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).dropInPlace(n)
    Definition Classes
    ArrayOps
  60. def dropInPlace(n: Int): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).dropInPlace(n)
    Definition Classes
    Buffer
  61. def dropRight(n: Int): Array[A]

    The rest of the array without its n last elements.

    The rest of the array without its n last elements.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).dropRight(n)
    Definition Classes
    ArrayOps
  62. def dropRight(n: Int): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).dropRight(n)
    Definition Classes
    IndexedSeqOps → IterableOps
  63. def dropRight(n: Int): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).dropRight(n)
    Definition Classes
    IterableOps
  64. def dropRight(n: Int): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).dropRight(n)
    Definition Classes
    IterableOps
  65. def dropRightInPlace(n: Int): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).dropRightInPlace(n)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  66. def dropRightInPlace(n: Int): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).dropRightInPlace(n)
    Definition Classes
    Buffer
  67. def dropWhile(p: (A) => Boolean): Array[A]

    Drops the longest prefix of elements that satisfy a predicate.

    Drops the longest prefix of elements that satisfy a predicate.

    p

    The predicate used to test elements.

    returns

    the longest suffix of this array whose first element does not satisfy the predicate p.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).dropWhile(p)
    Definition Classes
    ArrayOps
  68. def dropWhile(p: (A) => Boolean): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).dropWhile(p)
    Definition Classes
    IterableOps → IterableOnceOps
  69. def dropWhile(p: (A) => Boolean): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).dropWhile(p)
    Definition Classes
    IterableOps → IterableOnceOps
  70. def dropWhile(p: (A) => Boolean): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).dropWhile(p)
    Definition Classes
    IterableOps → IterableOnceOps
  71. def dropWhileInPlace(p: (A) => Boolean): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).dropWhileInPlace(p)
    Definition Classes
    ArrayOps
  72. def dropWhileInPlace(p: (A) => Boolean): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).dropWhileInPlace(p)
    Definition Classes
    Buffer
  73. def empty: WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).empty
    Definition Classes
    IterableFactoryDefaults → IterableOps
  74. def empty: collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).empty
    Definition Classes
    IterableFactoryDefaults → IterableOps
  75. def empty: collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).empty
    Definition Classes
    IterableFactoryDefaults → IterableOps
  76. def equals(o: scala.Any): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (array: WrappedArray[A]).equals(o)
    Definition Classes
    Seq → Equals → AnyRef → Any
  77. def exists(f: (A) => Boolean): Boolean

    Tests whether a predicate holds for at least one element of this array.

    Tests whether a predicate holds for at least one element of this array.

    returns

    true if the given predicate p is satisfied by at least one element of this array, otherwise false

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).exists(f)
    Definition Classes
    ArrayOps
  78. def exists(p: (A) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).exists(p)
    Definition Classes
    IterableOnceOps
  79. def exists(p: (A) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).exists(p)
    Definition Classes
    IterableOnceOps
  80. def exists(p: (A) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).exists(p)
    Definition Classes
    IterableOnceOps
  81. def filter(p: (A) => Boolean): Array[A]

    Selects all elements of this array which satisfy a predicate.

    Selects all elements of this array which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new array consisting of all elements of this array that satisfy the given predicate p.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).filter(p)
    Definition Classes
    ArrayOps
  82. def filter(pred: (A) => Boolean): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).filter(pred)
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  83. def filter(pred: (A) => Boolean): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).filter(pred)
    Definition Classes
    IterableOps → IterableOnceOps
  84. def filter(pred: (A) => Boolean): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).filter(pred)
    Definition Classes
    IterableOps → IterableOnceOps
  85. def filterInPlace(p: (A) => Boolean): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).filterInPlace(p)
    Definition Classes
    ArrayOps
  86. def filterInPlace(p: (A) => Boolean): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).filterInPlace(p)
    Definition Classes
    IndexedBuffer
  87. def filterNot(p: (A) => Boolean): Array[A]

    Selects all elements of this array which do not satisfy a predicate.

    Selects all elements of this array which do not satisfy a predicate.

    returns

    a new array consisting of all elements of this array that do not satisfy the given predicate pred.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).filterNot(p)
    Definition Classes
    ArrayOps
  88. def filterNot(pred: (A) => Boolean): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).filterNot(pred)
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  89. def filterNot(pred: (A) => Boolean): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).filterNot(pred)
    Definition Classes
    IterableOps → IterableOnceOps
  90. def filterNot(pred: (A) => Boolean): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).filterNot(pred)
    Definition Classes
    IterableOps → IterableOnceOps
  91. def find(f: (A) => Boolean): Option[A]

    Finds the first element of the array satisfying a predicate, if any.

    Finds the first element of the array satisfying a predicate, if any.

    returns

    an option value containing the first element in the array that satisfies p, or None if none exists.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).find(f)
    Definition Classes
    ArrayOps
  92. def find(p: (A) => Boolean): Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).find(p)
    Definition Classes
    IterableOnceOps
  93. def find(p: (A) => Boolean): Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).find(p)
    Definition Classes
    IterableOnceOps
  94. def find(p: (A) => Boolean): Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).find(p)
    Definition Classes
    IterableOnceOps
  95. def flatMap[B](f: (A) => collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).flatMap(f)
    Definition Classes
    IterableOps → IterableOnceOps
  96. def flatMap[B](f: (A) => collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).flatMap(f)
    Definition Classes
    IterableOps → IterableOnceOps
  97. def flatMapInPlace(f: (A) => collection.IterableOnce[A]): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).flatMapInPlace(f)
    Definition Classes
    ArrayOps
  98. def flatMapInPlace(f: (A) => collection.IterableOnce[A]): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).flatMapInPlace(f)
    Definition Classes
    IndexedBuffer
  99. def flatten[B](implicit asIterable: (A) => collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).flatten(asIterable)
    Definition Classes
    IterableOps → IterableOnceOps
  100. def flatten[B](implicit asIterable: (A) => collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).flatten(asIterable)
    Definition Classes
    IterableOps → IterableOnceOps
  101. def foldLeft[B](z: B)(op: (B, A) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).foldLeft(z)(op)
    Definition Classes
    IterableOnceOps
  102. def foldLeft[B](z: B)(op: (B, A) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).foldLeft(z)(op)
    Definition Classes
    IterableOnceOps
  103. def foldLeft[B](z: B)(op: (B, A) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).foldLeft(z)(op)
    Definition Classes
    IterableOnceOps
  104. def foldRight[B](z: B)(op: (A, B) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).foldRight(z)(op)
    Definition Classes
    IterableOnceOps
  105. def foldRight[B](z: B)(op: (A, B) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).foldRight(z)(op)
    Definition Classes
    IterableOnceOps
  106. def forall(f: (A) => Boolean): Boolean

    Tests whether a predicate holds for all elements of this array.

    Tests whether a predicate holds for all elements of this array.

    returns

    true if this array is empty or the given predicate p holds for all elements of this array, otherwise false.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).forall(f)
    Definition Classes
    ArrayOps
  107. def forall(p: (A) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).forall(p)
    Definition Classes
    IterableOnceOps
  108. def forall(p: (A) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).forall(p)
    Definition Classes
    IterableOnceOps
  109. def forall(p: (A) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).forall(p)
    Definition Classes
    IterableOnceOps
  110. def foreach[U](f: (A) => U): Unit
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).foreach(f)
    Definition Classes
    IterableOnceOps
  111. def foreach[U](f: (A) => U): Unit
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).foreach(f)
    Definition Classes
    IterableOnceOps
  112. def foreach[U](f: (A) => U): Unit
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).foreach(f)
    Definition Classes
    IterableOnceOps
  113. def groupBy[K](f: (A) => K): collection.immutable.Map[K, WrappedArray[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).groupBy(f)
    Definition Classes
    IterableOps
  114. def groupBy[K](f: (A) => K): collection.immutable.Map[K, collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).groupBy(f)
    Definition Classes
    IterableOps
  115. def groupBy[K](f: (A) => K): collection.immutable.Map[K, collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).groupBy(f)
    Definition Classes
    IterableOps
  116. def groupMap[K, B](key: (A) => K)(f: (A) => B): collection.immutable.Map[K, WrappedArray[B]]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).groupMap(key)(f)
    Definition Classes
    IterableOps
  117. def groupMap[K, B](key: (A) => K)(f: (A) => B): collection.immutable.Map[K, collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).groupMap(key)(f)
    Definition Classes
    IterableOps
  118. def groupMap[K, B](key: (A) => K)(f: (A) => B): collection.immutable.Map[K, collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).groupMap(key)(f)
    Definition Classes
    IterableOps
  119. def groupMapReduce[K, B](key: (A) => K)(f: (A) => B)(reduce: (B, B) => B): collection.immutable.Map[K, B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).groupMapReduce(key)(f)(reduce)
    Definition Classes
    IterableOps
  120. def groupMapReduce[K, B](key: (A) => K)(f: (A) => B)(reduce: (B, B) => B): collection.immutable.Map[K, B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).groupMapReduce(key)(f)(reduce)
    Definition Classes
    IterableOps
  121. def groupMapReduce[K, B](key: (A) => K)(f: (A) => B)(reduce: (B, B) => B): collection.immutable.Map[K, B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).groupMapReduce(key)(f)(reduce)
    Definition Classes
    IterableOps
  122. def grouped(size: Int): collection.Iterator[Array[A]]

    Partitions elements in fixed size arrays.

    Partitions elements in fixed size arrays.

    size

    the number of elements per group

    returns

    An iterator producing arrays of size size, except the last will be less than size size if the elements don't divide evenly.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).grouped(size)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
    See also

    scala.collection.Iterator, method grouped

  123. def grouped(size: Int): collection.Iterator[WrappedArray[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).grouped(size)
    Definition Classes
    IterableOps
  124. def grouped(size: Int): collection.Iterator[collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).grouped(size)
    Definition Classes
    IterableOps
  125. def grouped(size: Int): collection.Iterator[collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).grouped(size)
    Definition Classes
    IterableOps
  126. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (array: WrappedArray[A]).hashCode()
    Definition Classes
    Seq → AnyRef → Any
  127. def head: A

    Selects the first element of this array.

    Selects the first element of this array.

    returns

    the first element of this array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).head
    Definition Classes
    ArrayOps
    Exceptions thrown

    NoSuchElementException if the array is empty.

  128. def head: A
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).head
    Definition Classes
    IndexedSeqOps → IterableOps
  129. def head: A
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).head
    Definition Classes
    IterableOps
  130. def head: A
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).head
    Definition Classes
    IterableOps
  131. def headOption: Option[A]

    Optionally selects the first element.

    Optionally selects the first element.

    returns

    the first element of this array if it is nonempty, None if it is empty.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).headOption
    Definition Classes
    ArrayOps
  132. def headOption: Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).headOption
    Definition Classes
    IndexedSeqOps → IterableOps
  133. def headOption: Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).headOption
    Definition Classes
    IterableOps
  134. def headOption: Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).headOption
    Definition Classes
    IterableOps
  135. def indexOf(elem: A, from: Int = 0): Int

    Finds the index of the first occurrence of some value in this array after or at some start index.

    Finds the index of the first occurrence of some value in this array after or at some start index.

    elem

    the element value to search for.

    from

    the start index

    returns

    the index >= from of the first element of this array that is equal (as determined by ==) to elem, or -1, if none exists.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).indexOf(elem, from)
    Definition Classes
    ArrayOps
  136. def indexOf[B >: A](elem: B, from: Int): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).indexOf(elem, from)
    Definition Classes
    SeqOps
  137. def indexWhere(f: (A) => Boolean, from: Int = 0): Int

    Finds the index of the first element satisfying some predicate after or at some start index.

    Finds the index of the first element satisfying some predicate after or at some start index.

    from

    the start index

    returns

    the index >= from of the first element of this array that satisfies the predicate p, or -1, if none exists.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).indexWhere(f, from)
    Definition Classes
    ArrayOps
  138. def indexWhere(p: (A) => Boolean, from: Int): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).indexWhere(p, from)
    Definition Classes
    SeqOps
  139. def indices: Range

    Produces the range of all indices of this sequence.

    Produces the range of all indices of this sequence.

    returns

    a Range value from 0 to one less than the length of this array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).indices
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  140. def indices: collection.immutable.Range
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).indices
    Definition Classes
    SeqOps
  141. def init: Array[A]

    The initial part of the array without its last element.

    The initial part of the array without its last element.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).init
    Definition Classes
    ArrayOps
  142. def init: WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).init
    Definition Classes
    IterableOps
  143. def init: collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).init
    Definition Classes
    IterableOps
  144. def init: collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).init
    Definition Classes
    IterableOps
  145. def inits: collection.Iterator[Array[A]]

    Iterates over the inits of this array.

    Iterates over the inits of this array.

    The first value will be this array and the final one will be an empty array, with the intervening values the results of successive applications of init.

    returns

    an iterator over all the inits of this array

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).inits
    Definition Classes
    ArrayOps
  146. def inits: collection.Iterator[WrappedArray[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).inits
    Definition Classes
    IterableOps
  147. def inits: collection.Iterator[collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).inits
    Definition Classes
    IterableOps
  148. def inits: collection.Iterator[collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).inits
    Definition Classes
    IterableOps
  149. def insert(idx: Int, elem: A): Unit

    Inserts a new element at a given index into this array.

    Inserts a new element at a given index into this array.

    idx

    the index where the new elements is inserted.

    elem

    the element to insert.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).insert(idx, elem)
    Definition Classes
    ArrayOps
    Exceptions thrown

    IndexOutOfBoundsException if the index idx is not in the valid range 0 <= idx <= length.

  150. def insert(idx: Int, elem: A): Unit
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).insert(idx, elem)
    Definition Classes
    WrappedArray → Buffer
    Annotations
    @inline()
  151. def insertAll(idx: Int, elems: collection.IterableOnce[A]): Unit

    Inserts new elements at the index idx.

    Inserts new elements at the index idx.

    As opposed to the method update, this method will not replace an element with a new one. Instead, it will insert a new element at index idx.

    idx

    the index where a new element will be inserted.

    elems

    the iterable object providing all elements to insert.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).insertAll(idx, elems)
    Definition Classes
    ArrayOps
    Exceptions thrown

    IndexOutOfBoundsException if idx is out of bounds.

  152. def insertAll(n: Int, elems: collection.IterableOnce[A]): Unit
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).insertAll(n, elems)
    Definition Classes
    WrappedArray → Buffer
    Annotations
    @inline()
  153. def isEmpty: Boolean

    Tests whether the array is empty.

    Tests whether the array is empty.

    returns

    true if the array contains no elements, false otherwise.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).isEmpty
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  154. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).isEmpty
    Definition Classes
    SeqOps → IterableOnceOps
  155. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).isEmpty
    Definition Classes
    IterableOnceOps
  156. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).isEmpty
    Definition Classes
    IterableOnceOps
  157. def isTraversableAgain: Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).isTraversableAgain
    Definition Classes
    IterableOps → IterableOnceOps
  158. def isTraversableAgain: Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).isTraversableAgain
    Definition Classes
    IterableOps → IterableOnceOps
  159. def isTraversableAgain: Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).isTraversableAgain
    Definition Classes
    IterableOps → IterableOnceOps
  160. def iterableFactory: SeqFactory[WrappedArray]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).iterableFactory
    Definition Classes
    WrappedArray → IndexedBuffer → IndexedSeq → IndexedSeq → Buffer → Seq → Iterable → Seq → Iterable → IterableOps
  161. def iterableFactory: IterableFactory[collection.Iterable]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).iterableFactory
    Definition Classes
    Iterable → IterableOps
  162. def iterableFactory: IterableFactory[collection.Iterable]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).iterableFactory
    Definition Classes
    Iterable → IterableOps
  163. def iterator: collection.Iterator[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).iterator
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  164. def iterator: collection.Iterator[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).iterator
    Definition Classes
    IndexedSeqOps → IterableOnce
  165. def iterator: collection.Iterator[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).iterator
    Definition Classes
    IterableOps → IterableOnce
    Annotations
    @inline()
  166. def iterator: collection.Iterator[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).iterator
    Definition Classes
    IterableOnce
  167. def knownSize: Int

    The size of this array.

    The size of this array.

    returns

    the number of elements in this array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).knownSize
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  168. def knownSize: Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).knownSize
    Definition Classes
    WrappedArray → IndexedSeqOps → Buffer → Growable → IterableOnce
    Annotations
    @inline()
  169. def knownSize: Int
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).knownSize
    Definition Classes
    IterableOnce
  170. def knownSize: Int
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).knownSize
    Definition Classes
    IterableOnce
  171. def last: A

    Selects the last element of this array.

    Selects the last element of this array.

    returns

    the last element of this array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).last
    Definition Classes
    ArrayOps
    Exceptions thrown

    NoSuchElementException if the array is empty.

  172. def last: A
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).last
    Definition Classes
    IndexedSeqOps → IterableOps
  173. def last: A
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).last
    Definition Classes
    IterableOps
  174. def last: A
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).last
    Definition Classes
    IterableOps
  175. def lastIndexOf(elem: A, end: Int = xs.length - 1): Int

    Finds the index of the last occurrence of some value in this array before or at a given end index.

    Finds the index of the last occurrence of some value in this array before or at a given end index.

    elem

    the element value to search for.

    end

    the end index.

    returns

    the index <= end of the last element of this array that is equal (as determined by ==) to elem, or -1, if none exists.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).lastIndexOf(elem, end)
    Definition Classes
    ArrayOps
  176. def lastIndexOf[B >: A](elem: B, end: Int): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).lastIndexOf(elem, end)
    Definition Classes
    SeqOps
  177. def lastIndexWhere(p: (A) => Boolean, end: Int = xs.length - 1): Int

    Finds the index of the last element satisfying some predicate before or at given end index.

    Finds the index of the last element satisfying some predicate before or at given end index.

    p

    the predicate used to test elements.

    returns

    the index <= end of the last element of this array that satisfies the predicate p, or -1, if none exists.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).lastIndexWhere(p, end)
    Definition Classes
    ArrayOps
  178. def lastIndexWhere(p: (A) => Boolean, end: Int): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).lastIndexWhere(p, end)
    Definition Classes
    SeqOps
  179. def lastOption: Option[A]

    Optionally selects the last element.

    Optionally selects the last element.

    returns

    the last element of this array$ if it is nonempty, None if it is empty.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).lastOption
    Definition Classes
    ArrayOps
  180. def lastOption: Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).lastOption
    Definition Classes
    IterableOps
  181. def lastOption: Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).lastOption
    Definition Classes
    IterableOps
  182. def lastOption: Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).lastOption
    Definition Classes
    IterableOps
  183. def lazyZip[B]: ([B](that: Iterable[B]): scala.collection.LazyZip2[A,B,_1.type]) forSome {val _1: WrappedArray[A]}
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).lazyZip
    Definition Classes
    Iterable
  184. def lazyZip[B]: ([B](that: Iterable[B]): scala.collection.LazyZip2[A,B,_1.type]) forSome {val _1: IterableOps[A]}
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).lazyZip
    Definition Classes
    Iterable
  185. def lazyZip[B]: ([B](that: Iterable[B]): scala.collection.LazyZip2[A,B,_1.type]) forSome {val _1: collection.Iterable[A]}
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).lazyZip
    Definition Classes
    Iterable
  186. def length: Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (array: WrappedArray[A]).length
    Definition Classes
    WrappedArray → SeqOps
    Annotations
    @inline()
  187. def lengthCompare(len: Int): Int

    Compares the length of this array to a test value.

    Compares the length of this array to a test value.

    len

    the test value that gets compared with the length.

    returns

    A value x where

    x <  0       if this.length <  len
    x == 0       if this.length == len
    x >  0       if this.length >  len
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).lengthCompare(len)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  188. final def lengthCompare(len: Int): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).lengthCompare(len)
    Definition Classes
    IndexedSeqOps → SeqOps
  189. def lengthIs: Int

    Method mirroring SeqOps.lengthIs for consistency, except it returns an Int because length is known and comparison is constant-time.

    Method mirroring SeqOps.lengthIs for consistency, except it returns an Int because length is known and comparison is constant-time.

    These operations are equivalent to lengthCompare(Int), and allow the following more readable usages:

    this.lengthIs < len     // this.lengthCompare(len) < 0
    this.lengthIs <= len    // this.lengthCompare(len) <= 0
    this.lengthIs == len    // this.lengthCompare(len) == 0
    this.lengthIs != len    // this.lengthCompare(len) != 0
    this.lengthIs >= len    // this.lengthCompare(len) >= 0
    this.lengthIs > len     // this.lengthCompare(len) > 0
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).lengthIs
    Definition Classes
    ArrayOps
  190. final def lengthIs: SizeCompareOps
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).lengthIs
    Definition Classes
    SeqOps
    Annotations
    @inline()
  191. def map[B](f: (A) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).map(f)
    Definition Classes
    IterableOps → IterableOnceOps
  192. def map[B](f: (A) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).map(f)
    Definition Classes
    IterableOps → IterableOnceOps
  193. def mapInPlace(f: (A) => A): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).mapInPlace(f)
    Definition Classes
    ArrayOps
  194. def mapInPlace(f: (A) => A): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).mapInPlace(f)
    Definition Classes
    IndexedSeqOps
  195. def maxBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceOps
  196. def maxBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceOps
  197. def maxBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceOps
  198. def maxByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).maxByOption(f)(cmp)
    Definition Classes
    IterableOnceOps
  199. def maxByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).maxByOption(f)(cmp)
    Definition Classes
    IterableOnceOps
  200. def maxByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).maxByOption(f)(cmp)
    Definition Classes
    IterableOnceOps
  201. def minBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).minBy(f)(cmp)
    Definition Classes
    IterableOnceOps
  202. def minBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).minBy(f)(cmp)
    Definition Classes
    IterableOnceOps
  203. def minBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).minBy(f)(cmp)
    Definition Classes
    IterableOnceOps
  204. def minByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).minByOption(f)(cmp)
    Definition Classes
    IterableOnceOps
  205. def minByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).minByOption(f)(cmp)
    Definition Classes
    IterableOnceOps
  206. def minByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).minByOption(f)(cmp)
    Definition Classes
    IterableOnceOps
  207. final def mkString: String
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).mkString
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  208. final def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).mkString(sep)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  209. final def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).mkString(start, sep, end)
    Definition Classes
    IterableOnceOps
  210. final def mkString: String
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).mkString
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  211. final def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).mkString(sep)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  212. final def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).mkString(start, sep, end)
    Definition Classes
    IterableOnceOps
  213. final def mkString: String
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).mkString
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  214. final def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).mkString(sep)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  215. final def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).mkString(start, sep, end)
    Definition Classes
    IterableOnceOps
  216. def nonEmpty: Boolean

    Tests whether the array is not empty.

    Tests whether the array is not empty.

    returns

    true if the array contains at least one element, false otherwise.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).nonEmpty
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  217. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).nonEmpty
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  218. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).nonEmpty
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  219. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).nonEmpty
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  220. def padToInPlace(len: Int, elem: A): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).padToInPlace(len, elem)
    Definition Classes
    ArrayOps
  221. def padToInPlace(len: Int, elem: A): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).padToInPlace(len, elem)
    Definition Classes
    Buffer
  222. def partition(p: (A) => Boolean): (Array[A], Array[A])

    A pair of, first, all elements that satisfy predicate p and, second, all elements that do not.

    A pair of, first, all elements that satisfy predicate p and, second, all elements that do not.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).partition(p)
    Definition Classes
    ArrayOps
  223. def partition(p: (A) => Boolean): (WrappedArray[A], WrappedArray[A])
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).partition(p)
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  224. def partition(p: (A) => Boolean): (collection.Iterable[A], collection.Iterable[A])
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).partition(p)
    Definition Classes
    IterableOps
  225. def partition(p: (A) => Boolean): (collection.Iterable[A], collection.Iterable[A])
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).partition(p)
    Definition Classes
    IterableOps
  226. def partitionMap[A1, A2](f: (A) => Either[A1, A2]): (collection.Iterable[A1], collection.Iterable[A2])
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).partitionMap(f)
    Definition Classes
    IterableOps
  227. def partitionMap[A1, A2](f: (A) => Either[A1, A2]): (collection.Iterable[A1], collection.Iterable[A2])
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).partitionMap(f)
    Definition Classes
    IterableOps
  228. def patchInPlace(from: Int, patch: collection.IterableOnce[A], replaced: Int): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).patchInPlace(from, patch, replaced)
    Definition Classes
    ArrayOps
    Annotations
    @noinline()
  229. def patchInPlace(from: Int, patch: collection.IterableOnce[A], replaced: Int): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).patchInPlace(from, patch, replaced)
    Definition Classes
    IndexedBuffer → Buffer
  230. def permutations: collection.Iterator[Array[A]]

    Iterates over distinct permutations.

    Iterates over distinct permutations.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).permutations
    Definition Classes
    ArrayOps
  231. def permutations: collection.Iterator[WrappedArray[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).permutations
    Definition Classes
    SeqOps
  232. def prepend(elem: A): Array[A]

    Prepends a single element at the front of this array.

    Prepends a single element at the front of this array.

    elem

    the element to add.

    returns

    the array itself

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).prepend(elem)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  233. def prepend(elem: A): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).prepend(elem)
    Definition Classes
    WrappedArray → Buffer
    Annotations
    @inline()
  234. def prependAll(elems: collection.IterableOnce[A]): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).prependAll(elems)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  235. def prependAll(xs: collection.IterableOnce[A]): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).prependAll(xs)
    Definition Classes
    WrappedArray → Buffer
    Annotations
    @inline()
  236. def remove(idx: Int, count: Int): Unit

    Removes consecutive elements starting at a given index position.

    Removes consecutive elements starting at a given index position.

    idx

    the index which refers to the first element to remove.

    count

    the number of elements to remove.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).remove(idx, count)
    Definition Classes
    ArrayOps
    Exceptions thrown

    IllegalArgumentException if count < 0.

    IndexOutOfBoundsException if the index idx is not in the valid range 0 <= idx <= length - count (with count > 0).

  237. def remove(idx: Int): A

    Removes the element at a given index position.

    Removes the element at a given index position.

    idx

    the index which refers to the element to delete.

    returns

    the element that was formerly at index idx.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).remove(idx)
    Definition Classes
    ArrayOps
    Exceptions thrown

    IndexOutOfBoundsException if idx is out of bounds.

  238. def remove(n: Int, count: Int): Unit
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).remove(n, count)
    Definition Classes
    WrappedArray → Buffer
  239. def remove(n: Int): A
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).remove(n)
    Definition Classes
    WrappedArray → Buffer
  240. def reverse: Array[A]

    Returns a new array with the elements in reversed order.

    Returns a new array with the elements in reversed order.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).reverse
    Definition Classes
    ArrayOps
  241. def reverse: WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).reverse
    Definition Classes
    IndexedSeqOps → SeqOps
  242. def reverseIterator: collection.Iterator[A]

    An iterator yielding elements in reversed order.

    An iterator yielding elements in reversed order.

    Note: xs.reverseIterator is the same as xs.reverse.iterator but implemented more efficiently.

    returns

    an iterator yielding the elements of this array in reversed order

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).reverseIterator
    Definition Classes
    ArrayOps
  243. def reverseIterator: collection.Iterator[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).reverseIterator
    Definition Classes
    IndexedSeqOps → SeqOps
  244. def scanLeft[B](z: B)(op: (B, A) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).scanLeft(z)(op)
    Definition Classes
    IterableOps → IterableOnceOps
  245. def scanLeft[B](z: B)(op: (B, A) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).scanLeft(z)(op)
    Definition Classes
    IterableOps → IterableOnceOps
  246. def scanRight[B](z: B)(op: (A, B) => B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).scanRight(z)(op)
    Definition Classes
    IterableOps
  247. def scanRight[B](z: B)(op: (A, B) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).scanRight(z)(op)
    Definition Classes
    IterableOps
  248. def scanRight[B](z: B)(op: (A, B) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).scanRight(z)(op)
    Definition Classes
    IterableOps
  249. def size: Int

    The size of this array.

    The size of this array.

    returns

    the number of elements in this array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).size
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  250. final def size: Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).size
    Definition Classes
    SeqOps → IterableOnceOps
  251. def size: Int
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).size
    Definition Classes
    IterableOnceOps
  252. def size: Int
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).size
    Definition Classes
    IterableOnceOps
  253. def sizeCompare(otherSize: Int): Int

    Compares the size of this array to a test value.

    Compares the size of this array to a test value.

    otherSize

    the test value that gets compared with the size.

    returns

    A value x where

    x <  0       if this.size <  otherSize
    x == 0       if this.size == otherSize
    x >  0       if this.size >  otherSize
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).sizeCompare(otherSize)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  254. final def sizeCompare(that: collection.Iterable[_]): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).sizeCompare(that)
    Definition Classes
    SeqOps → IterableOps
  255. final def sizeCompare(otherSize: Int): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).sizeCompare(otherSize)
    Definition Classes
    SeqOps → IterableOps
  256. def sizeCompare(that: collection.Iterable[_]): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).sizeCompare(that)
    Definition Classes
    IterableOps
  257. def sizeCompare(otherSize: Int): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).sizeCompare(otherSize)
    Definition Classes
    IterableOps
  258. def sizeCompare(that: collection.Iterable[_]): Int
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).sizeCompare(that)
    Definition Classes
    IterableOps
  259. def sizeCompare(otherSize: Int): Int
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).sizeCompare(otherSize)
    Definition Classes
    IterableOps
  260. def sizeIs: Int

    Method mirroring IterableOps.sizeIs for consistency, except it returns an Int because size is known and comparison is constant-time.

    Method mirroring IterableOps.sizeIs for consistency, except it returns an Int because size is known and comparison is constant-time.

    These operations are equivalent to sizeCompare(Int), and allow the following more readable usages:

    this.sizeIs < size     // this.sizeCompare(size) < 0
    this.sizeIs <= size    // this.sizeCompare(size) <= 0
    this.sizeIs == size    // this.sizeCompare(size) == 0
    this.sizeIs != size    // this.sizeCompare(size) != 0
    this.sizeIs >= size    // this.sizeCompare(size) >= 0
    this.sizeIs > size     // this.sizeCompare(size) > 0
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).sizeIs
    Definition Classes
    ArrayOps
  261. final def sizeIs: SizeCompareOps
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).sizeIs
    Definition Classes
    IterableOps
    Annotations
    @inline()
  262. final def sizeIs: SizeCompareOps
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).sizeIs
    Definition Classes
    IterableOps
    Annotations
    @inline()
  263. final def sizeIs: SizeCompareOps
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).sizeIs
    Definition Classes
    IterableOps
    Annotations
    @inline()
  264. def slice(from: Int, until: Int): Array[A]

    Selects an interval of elements.

    Selects an interval of elements.

    The returned array is made up of all elements x which satisfy the invariant:

    from <= indexOf(x) < until
    from

    the lowest index to include from this array.

    until

    the lowest index to EXCLUDE from this array.

    returns

    an array containing the elements greater than or equal to index from extending up to (but not including) index until of this array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).slice(from, until)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  265. def slice(from: Int, until: Int): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).slice(from, until)
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  266. def slice(from: Int, until: Int): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).slice(from, until)
    Definition Classes
    IterableOps → IterableOnceOps
  267. def slice(from: Int, until: Int): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).slice(from, until)
    Definition Classes
    IterableOps → IterableOnceOps
  268. def sliceInPlace(start: Int, end: Int): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).sliceInPlace(start, end)
    Definition Classes
    ArrayOps
  269. def sliceInPlace(start: Int, end: Int): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).sliceInPlace(start, end)
    Definition Classes
    Buffer
  270. def sliding(size: Int, step: Int = 1): collection.Iterator[Array[A]]

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped).

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped).

    size

    the number of elements per group

    step

    the distance between the first elements of successive groups

    returns

    An iterator producing arrays of size size, except the last element (which may be the only element) will be truncated if there are fewer than size elements remaining to be grouped.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).sliding(size, step)
    Definition Classes
    ArrayOps
    See also

    scala.collection.Iterator, method sliding

  271. def sliding(size: Int, step: Int): collection.Iterator[WrappedArray[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).sliding(size, step)
    Definition Classes
    IterableOps
  272. def sliding(size: Int): collection.Iterator[WrappedArray[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).sliding(size)
    Definition Classes
    IterableOps
  273. def sliding(size: Int, step: Int): collection.Iterator[collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).sliding(size, step)
    Definition Classes
    IterableOps
  274. def sliding(size: Int): collection.Iterator[collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).sliding(size)
    Definition Classes
    IterableOps
  275. def sliding(size: Int, step: Int): collection.Iterator[collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).sliding(size, step)
    Definition Classes
    IterableOps
  276. def sliding(size: Int): collection.Iterator[collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).sliding(size)
    Definition Classes
    IterableOps
  277. def sortWith(lt: (A, A) => Boolean): Array[A]

    Sorts this array according to a comparison function.

    Sorts this array according to a comparison function.

    The sort is stable. That is, elements that are equal (as determined by lt) appear in the same order in the sorted sequence as in the original.

    lt

    the comparison function which tests whether its first argument precedes its second argument in the desired ordering.

    returns

    an array consisting of the elements of this array sorted according to the comparison function lt.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).sortWith(lt)
    Definition Classes
    ArrayOps
  278. def sortWith(lt: (A, A) => Boolean): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).sortWith(lt)
    Definition Classes
    SeqOps
  279. def span(p: (A) => Boolean): (Array[A], Array[A])

    Splits this array into a prefix/suffix pair according to a predicate.

    Splits this array into a prefix/suffix pair according to a predicate.

    Note: c.span(p) is equivalent to (but more efficient than) (c.takeWhile(p), c.dropWhile(p)), provided the evaluation of the predicate p does not cause any side-effects.

    p

    the test predicate

    returns

    a pair consisting of the longest prefix of this array whose chars all satisfy p, and the rest of this array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).span(p)
    Definition Classes
    ArrayOps
  280. def span(p: (A) => Boolean): (WrappedArray[A], WrappedArray[A])
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).span(p)
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  281. def span(p: (A) => Boolean): (collection.Iterable[A], collection.Iterable[A])
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).span(p)
    Definition Classes
    IterableOps → IterableOnceOps
  282. def span(p: (A) => Boolean): (collection.Iterable[A], collection.Iterable[A])
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).span(p)
    Definition Classes
    IterableOps → IterableOnceOps
  283. def splitAt(n: Int): (Array[A], Array[A])

    Splits this array into two at a given position.

    Splits this array into two at a given position.

    Note: c.splitAt(n) is equivalent to (c.take(n), c.drop(n)).

    n

    the position at which to split.

    returns

    a pair of arrays consisting of the first n elements of this array, and the other elements.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).splitAt(n)
    Definition Classes
    ArrayOps
  284. def splitAt(n: Int): (WrappedArray[A], WrappedArray[A])
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).splitAt(n)
    Definition Classes
    IterableOps → IterableOnceOps
  285. def splitAt(n: Int): (collection.Iterable[A], collection.Iterable[A])
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).splitAt(n)
    Definition Classes
    IterableOps → IterableOnceOps
  286. def splitAt(n: Int): (collection.Iterable[A], collection.Iterable[A])
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).splitAt(n)
    Definition Classes
    IterableOps → IterableOnceOps
  287. def stepper[S <: Stepper[_]](implicit shape: StepperShape[A, S]): S
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).stepper(shape)
    Definition Classes
    IterableOnce
  288. def stepper[S <: Stepper[_]](implicit shape: StepperShape[A, S]): S
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).stepper(shape)
    Definition Classes
    IterableOnce
  289. def subtractAll(ys: collection.IterableOnce[A]): Array[A]

    Removes all elements produced by an iterator from this array.

    Removes all elements produced by an iterator from this array.

    returns

    the array itself

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).subtractAll(ys)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  290. def subtractAll(xs: collection.IterableOnce[A]): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).subtractAll(xs)
    Definition Classes
    Shrinkable
  291. def subtractOne(elem: A): Array[A]

    Removes a single element from this array.

    Removes a single element from this array.

    elem

    the element to remove.

    returns

    the array itself

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).subtractOne(elem)
    Definition Classes
    ArrayOps
  292. def subtractOne(x: A): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).subtractOne(x)
    Definition Classes
    Buffer → Shrinkable
  293. def tail: Array[A]

    The rest of the array without its first element.

    The rest of the array without its first element.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).tail
    Definition Classes
    ArrayOps
  294. def tail: WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).tail
    Definition Classes
    IterableOps
  295. def tail: collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).tail
    Definition Classes
    IterableOps
  296. def tail: collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).tail
    Definition Classes
    IterableOps
  297. def tails: collection.Iterator[Array[A]]

    Iterates over the tails of this array.

    Iterates over the tails of this array.

    The first value will be this array and the final one will be an empty array, with the intervening values the results of successive applications of tail.

    returns

    an iterator over all the tails of this array

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).tails
    Definition Classes
    ArrayOps
  298. def tails: collection.Iterator[WrappedArray[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).tails
    Definition Classes
    IterableOps
  299. def tails: collection.Iterator[collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).tails
    Definition Classes
    IterableOps
  300. def tails: collection.Iterator[collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).tails
    Definition Classes
    IterableOps
  301. def take(n: Int): Array[A]

    An array containing the first n elements of this array.

    An array containing the first n elements of this array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).take(n)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  302. def take(n: Int): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).take(n)
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  303. def take(n: Int): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).take(n)
    Definition Classes
    IterableOps → IterableOnceOps
  304. def take(n: Int): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).take(n)
    Definition Classes
    IterableOps → IterableOnceOps
  305. def takeInPlace(n: Int): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).takeInPlace(n)
    Definition Classes
    ArrayOps
  306. def takeInPlace(n: Int): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).takeInPlace(n)
    Definition Classes
    Buffer
  307. def takeRight(n: Int): Array[A]

    An array containing the last n elements of this array.

    An array containing the last n elements of this array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).takeRight(n)
    Definition Classes
    ArrayOps
  308. def takeRight(n: Int): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).takeRight(n)
    Definition Classes
    IndexedSeqOps → IterableOps
  309. def takeRight(n: Int): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).takeRight(n)
    Definition Classes
    IterableOps
  310. def takeRight(n: Int): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).takeRight(n)
    Definition Classes
    IterableOps
  311. def takeRightInPlace(n: Int): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).takeRightInPlace(n)
    Definition Classes
    ArrayOps
  312. def takeRightInPlace(n: Int): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).takeRightInPlace(n)
    Definition Classes
    Buffer
  313. def takeWhile(p: (A) => Boolean): Array[A]

    Takes the longest prefix of elements that satisfy a predicate.

    Takes the longest prefix of elements that satisfy a predicate.

    p

    The predicate used to test elements.

    returns

    the longest prefix of this array whose elements all satisfy the predicate p.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).takeWhile(p)
    Definition Classes
    ArrayOps
  314. def takeWhile(p: (A) => Boolean): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).takeWhile(p)
    Definition Classes
    IterableOps → IterableOnceOps
  315. def takeWhile(p: (A) => Boolean): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).takeWhile(p)
    Definition Classes
    IterableOps → IterableOnceOps
  316. def takeWhile(p: (A) => Boolean): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).takeWhile(p)
    Definition Classes
    IterableOps → IterableOnceOps
  317. def takeWhileInPlace(p: (A) => Boolean): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).takeWhileInPlace(p)
    Definition Classes
    ArrayOps
  318. def takeWhileInPlace(p: (A) => Boolean): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).takeWhileInPlace(p)
    Definition Classes
    Buffer
  319. def tapEach[U](f: (A) => U): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).tapEach(f)
    Definition Classes
    IterableOps → IterableOnceOps
  320. def tapEach[U](f: (A) => U): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).tapEach(f)
    Definition Classes
    IterableOps → IterableOnceOps
  321. def to[C1](factory: Factory[A, C1]): C1
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).to(factory)
    Definition Classes
    IterableOnceOps
  322. def to[C1](factory: Factory[A, C1]): C1
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).to(factory)
    Definition Classes
    IterableOnceOps
  323. def to[C1](factory: Factory[A, C1]): C1
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).to(factory)
    Definition Classes
    IterableOnceOps
  324. final def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).toBuffer
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  325. final def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).toBuffer
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  326. final def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).toBuffer
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  327. def toIndexedSeq: collection.immutable.IndexedSeq[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).toIndexedSeq
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  328. def toIndexedSeq: collection.immutable.IndexedSeq[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).toIndexedSeq
    Definition Classes
    IterableOnceOps
  329. def toIndexedSeq: collection.immutable.IndexedSeq[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).toIndexedSeq
    Definition Classes
    IterableOnceOps
  330. def toIndexedSeq: collection.immutable.IndexedSeq[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).toIndexedSeq
    Definition Classes
    IterableOnceOps
  331. final def toIterable: WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).toIterable
    Definition Classes
    Iterable → IterableOps
  332. final def toIterable: IterableOps[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).toIterable
    Definition Classes
    Iterable → IterableOps
  333. final def toIterable: collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).toIterable
    Definition Classes
    Iterable → IterableOps
  334. def toList: collection.immutable.List[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).toList
    Definition Classes
    IterableOnceOps
  335. def toList: collection.immutable.List[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).toList
    Definition Classes
    IterableOnceOps
  336. def toList: collection.immutable.List[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).toList
    Definition Classes
    IterableOnceOps
  337. def toMap[K, V](implicit ev: <:<[A, (K, V)]): collection.immutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).toMap(ev)
    Definition Classes
    IterableOnceOps
  338. def toMap[K, V](implicit ev: <:<[A, (K, V)]): collection.immutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).toMap(ev)
    Definition Classes
    IterableOnceOps
  339. def toMap[K, V](implicit ev: <:<[A, (K, V)]): collection.immutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).toMap(ev)
    Definition Classes
    IterableOnceOps
  340. final def toSeq: collection.immutable.Seq[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).toSeq
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  341. def toSeq: collection.immutable.Seq[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).toSeq
    Definition Classes
    IterableOnceOps
  342. def toSeq: collection.immutable.Seq[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).toSeq
    Definition Classes
    IterableOnceOps
  343. def toSeq: collection.immutable.Seq[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).toSeq
    Definition Classes
    IterableOnceOps
  344. def toSet[B >: A]: collection.immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).toSet
    Definition Classes
    IterableOnceOps
  345. def toSet[B >: A]: collection.immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).toSet
    Definition Classes
    IterableOnceOps
  346. def toSet[B >: A]: collection.immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).toSet
    Definition Classes
    IterableOnceOps
  347. def toString(): String
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (array: WrappedArray[A]).toString()
    Definition Classes
    Seq → Function1 → Iterable → AnyRef → Any
  348. def toString(): String
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] 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:
    (array: IterableOps[A]).toString()
    Definition Classes
    Iterable → AnyRef → Any
  349. def toString(): String
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    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:
    (array: collection.Iterable[A]).toString()
    Definition Classes
    Iterable → AnyRef → Any
  350. def toVector: collection.immutable.Vector[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).toVector
    Definition Classes
    IterableOnceOps
  351. def toVector: collection.immutable.Vector[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).toVector
    Definition Classes
    IterableOnceOps
  352. def toVector: collection.immutable.Vector[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).toVector
    Definition Classes
    IterableOnceOps
  353. def transpose[B](implicit asIterable: (A) => collection.Iterable[B]): WrappedArray[WrappedArray[B]]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).transpose(asIterable)
    Definition Classes
    IterableOps
  354. def transpose[B](implicit asIterable: (A) => collection.Iterable[B]): collection.Iterable[collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).transpose(asIterable)
    Definition Classes
    IterableOps
  355. def transpose[B](implicit asIterable: (A) => collection.Iterable[B]): collection.Iterable[collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).transpose(asIterable)
    Definition Classes
    IterableOps
  356. def trimEnd(n: Int): Unit

    Removes the last n elements of this array.

    Removes the last n elements of this array.

    n

    the number of elements to remove from the end of this array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).trimEnd(n)
    Definition Classes
    ArrayOps
  357. def trimEnd(n: Int): Unit
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).trimEnd(n)
    Definition Classes
    Buffer
  358. def trimStart(n: Int): Unit

    Removes the first n elements of this array.

    Removes the first n elements of this array.

    n

    the number of elements to remove from the beginning of this array.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).trimStart(n)
    Definition Classes
    ArrayOps
  359. def trimStart(n: Int): Unit
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).trimStart(n)
    Definition Classes
    Buffer
  360. def unzip[A1, A2](implicit asPair: (A) => (A1, A2)): (collection.Iterable[A1], collection.Iterable[A2])
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).unzip(asPair)
    Definition Classes
    IterableOps
  361. def unzip[A1, A2](implicit asPair: (A) => (A1, A2)): (collection.Iterable[A1], collection.Iterable[A2])
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).unzip(asPair)
    Definition Classes
    IterableOps
  362. def unzip3[A1, A2, A3](implicit asTriple: (A) => (A1, A2, A3)): (collection.Iterable[A1], collection.Iterable[A2], collection.Iterable[A3])
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).unzip3(asTriple)
    Definition Classes
    IterableOps
  363. def unzip3[A1, A2, A3](implicit asTriple: (A) => (A1, A2, A3)): (collection.Iterable[A1], collection.Iterable[A2], collection.Iterable[A3])
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).unzip3(asTriple)
    Definition Classes
    IterableOps
  364. def update(index: Int, elem: A): Unit
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (array: WrappedArray[A]).update(index, elem)
    Definition Classes
    WrappedArray → SeqOps
    Annotations
    @inline()
  365. def view: IndexedSeqView[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).view
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  366. def view: IndexedSeqView[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).view
    Definition Classes
    IndexedSeqOps → SeqOps → IterableOps
  367. def view: View[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).view
    Definition Classes
    IterableOps
  368. def view: View[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).view
    Definition Classes
    IterableOps
  369. def withFilter(p: (A) => Boolean): WithFilter[A]

    Creates a non-strict filter of this array.

    Creates a non-strict filter of this array.

    Note: the difference between c.filter(p) and c.withFilter(p) is that the former creates a new array, whereas the latter only restricts the domain of subsequent map, flatMap, foreach, and withFilter operations.

    p

    the predicate used to test elements.

    returns

    an object of class js.ArrayOps.WithFilter, which supports map, flatMap, foreach, and withFilter operations. All these operations apply to those elements of this array which satisfy the predicate p.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).withFilter(p)
    Definition Classes
    ArrayOps
  370. def withFilter(p: (A) => Boolean): WithFilter[A, [_]WrappedArray[_]]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).withFilter(p)
    Definition Classes
    IterableOps
  371. def withFilter(p: (A) => Boolean): WithFilter[A, collection.Iterable]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).withFilter(p)
    Definition Classes
    IterableOps
  372. def withFilter(p: (A) => Boolean): WithFilter[A, collection.Iterable]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).withFilter(p)
    Definition Classes
    IterableOps
  373. def zip[B](that: collection.IterableOnce[B]): collection.Iterable[(A, B)]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).zip(that)
    Definition Classes
    IterableOps
  374. def zip[B](that: collection.IterableOnce[B]): collection.Iterable[(A, B)]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).zip(that)
    Definition Classes
    IterableOps
  375. def zipWithIndex: Array[(A, Int)]

    Zips this array with its indices.

    Zips this array with its indices.

    returns

    A new array containing pairs consisting of all elements of this array paired with their index. Indices start at 0.

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).zipWithIndex
    Definition Classes
    ArrayOps
  376. def zipWithIndex: WrappedArray[(A, Int)]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).zipWithIndex
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  377. def zipWithIndex: collection.Iterable[(A, Int)]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).zipWithIndex
    Definition Classes
    IterableOps → IterableOnceOps
  378. def zipWithIndex: collection.Iterable[(A, Int)]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).zipWithIndex
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. def ++:[B >: A](that: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] 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

  2. def ++:[B >: A](that: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  3. final def +=(elem1: A, elem2: A, elems: A*): Array[A]

    Adds two or more elements to this array.

    Adds two or more elements to this array.

    elem1

    the first element to add.

    elem2

    the second element to add.

    elems

    the remaining elements to add.

    returns

    the array itself

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).+=(elem1, elem2, elems)
    Definition Classes
    ArrayOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ++= (addAll) instead of varargs +=

  4. final def +=(elem1: A, elem2: A, elems: A*): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).+=(elem1, elem2, elems)
    Definition Classes
    Growable
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ++= aka addAll instead of varargs +=; infix operations with an operand of multiple args will be deprecated

  5. def -=(elem1: A, elem2: A, elems: A*): Array[A]

    Removes two or more elements from this array.

    Removes two or more elements from this array.

    elem1

    the first element to remove.

    elem2

    the second element to remove.

    elems

    the remaining elements to remove.

    returns

    the array itself

    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).-=(elem1, elem2, elems)
    Definition Classes
    ArrayOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use --= (subtractAll) instead of varargs -=

  6. def -=(elem1: A, elem2: A, elems: A*): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).-=(elem1, elem2, elems)
    Definition Classes
    Shrinkable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.3) Use --= aka subtractAll instead of varargs -=; infix operations with an operand of multiple args will be deprecated

  7. final def /:[B](z: B)(op: (B, A) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A])./:(z)(op)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  8. final def /:[B](z: B)(op: (B, A) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A])./:(z)(op)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  9. final def /:[B](z: B)(op: (B, A) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A])./:(z)(op)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  10. final def :\[B](z: B)(op: (A, B) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).:\(z)(op)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  11. final def :\[B](z: B)(op: (A, B) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).:\(z)(op)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  12. final def :\[B](z: B)(op: (A, B) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).:\(z)(op)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  13. def aggregate[B](z: => B)(seqop: (B, A) => B, combop: (B, B) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).aggregate(z)(seqop, combop)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  14. def aggregate[B](z: => B)(seqop: (B, A) => B, combop: (B, B) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).aggregate(z)(seqop, combop)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  15. def aggregate[B](z: => B)(seqop: (B, A) => B, combop: (B, B) => B): B
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).aggregate(z)(seqop, combop)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  16. final def append(elems: A*): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).append(elems)
    Definition Classes
    ArrayOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use appendAll instead

  17. final def append(elems: A*): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).append(elems)
    Definition Classes
    Buffer
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use appendAll instead

  18. def companion: IterableFactory[[_]WrappedArray[_]]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).companion
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  19. def companion: IterableFactory[collection.Iterable]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).companion
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  20. def companion: IterableFactory[collection.Iterable]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).companion
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  21. final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  22. final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  23. final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  24. def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).hasDefiniteSize
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  25. def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).hasDefiniteSize
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  26. def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).hasDefiniteSize
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  27. final def prefixLength(p: (A) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use segmentLength instead of prefixLength

  28. final def prepend(elems: A*): Array[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toArrayOps[A] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[A]).prepend(elems)
    Definition Classes
    ArrayOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use prependAll instead

  29. final def prepend(elems: A*): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).prepend(elems)
    Definition Classes
    Buffer
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use prependAll instead

  30. final def repr: WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).repr
    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

  31. final def repr: collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).repr
    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

  32. final def repr: collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).repr
    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

  33. def reverseMap[B](f: (A) => B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)

  34. def seq: WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).seq
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  35. def seq: IterableOps[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).seq
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  36. def seq: collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).seq
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  37. final def toIterator: collection.Iterator[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).toIterator
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  38. final def toIterator: collection.Iterator[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).toIterator
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  39. final def toIterator: collection.Iterator[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).toIterator
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  40. final def toStream: collection.immutable.Stream[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).toStream
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  41. final def toStream: collection.immutable.Stream[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).toStream
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  42. final def toStream: collection.immutable.Stream[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).toStream
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  43. final def toTraversable: collection.Traversable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).toTraversable
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  44. final def toTraversable: collection.Traversable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).toTraversable
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  45. final def toTraversable: collection.Traversable[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).toTraversable
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  46. final def transform(f: (A) => A): WrappedArray[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use mapInPlace on an IndexedSeq instead

  47. final def union[B >: A](that: collection.Seq[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use concat instead

  48. def view(from: Int, until: Int): IndexedSeqView[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toWrappedArray[A] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: WrappedArray[A]).view(from, until)
    Definition Classes
    IndexedSeqOps → IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

  49. def view(from: Int, until: Int): View[A]
    Implicit
    This member is added by an implicit conversion from Array[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: IterableOps[A]).view(from, until)
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

  50. def view(from: Int, until: Int): View[A]
    Implicit
    This member is added by an implicit conversion from Array[A] tocollection.Iterable[A] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.This conversion will take place only if A is a superclass of _$5 (A >: _$5).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: collection.Iterable[A]).view(from, until)
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

  51. def [B](y: B): (Array[A], B)
    Implicit
    This member is added by an implicit conversion from Array[A] toArrowAssoc[Array[A]] 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.

Inherited from Iterable[A]

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from scala.Any

Inherited by implicit conversion jsArrayOps fromArray[A] to ArrayOps[A]

Inherited by implicit conversion wrapArray fromArray[A] to WrappedArray[A]

Inherited by implicit conversion iterableOps fromArray[A] to IterableOps[A]

Inherited by implicit conversion arrayAsIterable fromArray[A] to collection.Iterable[A]

Inherited by implicit conversion any2stringadd fromArray[A] to any2stringadd[Array[A]]

Inherited by implicit conversion StringFormat fromArray[A] to StringFormat[Array[A]]

Inherited by implicit conversion Ensuring fromArray[A] to Ensuring[Array[A]]

Inherited by implicit conversion ArrowAssoc fromArray[A] to ArrowAssoc[Array[A]]

Ungrouped