scala.scalajs.js

Array

class Array[A] extends Object

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
@RawJSType()
Linear Supertypes
Object, Any, AnyRef, scala.Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Array
  2. Object
  3. Any
  4. AnyRef
  5. Any
Implicitly
  1. by toArray
  2. by arrayOps
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

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): scala.Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. def +(other: Predef.String): Predef.String

    Implicit information
    This member is added by an implicit conversion from Array[A] to any2stringadd[Array[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[scala.Array[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → GenTraversableLike
  5. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[scala.Array[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike
  6. def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[scala.Array[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike
  7. def +:[B >: T](elem: B)(implicit arg0: ClassTag[B]): scala.Array[B]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    ArrayOps
  8. def +:[B >: A, That](elem: B)(implicit bf: CanBuildFrom[scala.Array[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike → GenSeqLike
  9. def ->[B](y: B): (Array[A], B)

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrowAssoc[Array[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  10. def /:[B](z: B)(op: (B, A) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  11. def :+[B >: T](elem: B)(implicit arg0: ClassTag[B]): scala.Array[B]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    ArrayOps
  12. def :+[B >: A, That](elem: B)(implicit bf: CanBuildFrom[scala.Array[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike → GenSeqLike
  13. def :\[B](z: B)(op: (A, B) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  14. final def ==(arg0: scala.Any): scala.Boolean

    Definition Classes
    AnyRef → Any
  15. def addString(b: StringBuilder): StringBuilder

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce
  16. def addString(b: StringBuilder, sep: Predef.String): StringBuilder

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce
  17. def addString(b: StringBuilder, start: Predef.String, sep: Predef.String, end: Predef.String): StringBuilder

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce
  18. def aggregate[B](z: ⇒ B)(seqop: (B, A) ⇒ B, combop: (B, B) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  19. def apply(index: Int): A

    Access the element at the given index.

    Access the element at the given index.

    Annotations
    @JSBracketAccess()
  20. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  21. def canEqual(that: scala.Any): scala.Boolean

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IterableLike → Equals
  22. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. def collect[B, That](pf: PartialFunction[A, B])(implicit bf: CanBuildFrom[scala.Array[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → GenTraversableLike
  24. def collectFirst[B](pf: PartialFunction[A, B]): Option[B]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce
  25. def combinations(n: Int): collection.Iterator[scala.Array[A]]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike
  26. def concat(item: A, items: A*): Array[A]

    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

  27. def concat(items: Array[A]*): Array[A]

    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

  28. def contains[A1 >: A](elem: A1): scala.Boolean

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike
  29. def containsSlice[B](that: GenSeq[B]): scala.Boolean

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike
  30. def copyToArray[U >: T](xs: scala.Array[U], start: Int, len: Int): Unit

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    ArrayOps → IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  31. def copyToArray[B >: A](xs: scala.Array[B]): Unit

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  32. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Unit

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  33. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce
  34. def corresponds[B](that: GenSeq[B])(p: (A, B) ⇒ scala.Boolean): scala.Boolean

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike → GenSeqLike
  35. def count(p: (A) ⇒ scala.Boolean): Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  36. def deep: collection.IndexedSeq[scala.Any]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    ArrayLike
  37. def diff[B >: A](that: GenSeq[B]): scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike → GenSeqLike
  38. def distinct: scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike → GenSeqLike
  39. def drop(n: Int): scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  40. def dropRight(n: Int): scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → IterableLike
  41. def dropWhile(p: (A) ⇒ scala.Boolean): scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  42. def endsWith[B](that: GenSeq[B]): scala.Boolean

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  43. def ensuring(cond: (Array[A]) ⇒ scala.Boolean, msg: ⇒ scala.Any): Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to Ensuring[Array[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  44. def ensuring(cond: (Array[A]) ⇒ scala.Boolean): Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to Ensuring[Array[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  45. def ensuring(cond: scala.Boolean, msg: ⇒ scala.Any): Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to Ensuring[Array[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  46. def ensuring(cond: scala.Boolean): Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to Ensuring[Array[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  47. final def eq(arg0: AnyRef): scala.Boolean

    Definition Classes
    AnyRef
  48. def equals(arg0: scala.Any): scala.Boolean

    Definition Classes
    AnyRef → Any
  49. def every(callbackfn: Function3[A, Int, Array[A], Boolean]): Boolean

  50. def every[T](callbackfn: ThisFunction3[T, A, Int, Array[A], Boolean], thisArg: T): Boolean

    The every method executes the provided callback function once for each element present in the array until it finds one where callback returns a falsy value (a value that becomes false when converted to a Boolean).

    The every method executes the provided callback function once for each element present in the array until it finds one where callback returns a falsy value (a value that becomes false when converted to a Boolean). If such an element is found, the every method immediately returns false. Otherwise, if callback returned a true value for all elements, every will return true. callback is invoked only for indexes of the array which have assigned values; it is not invoked for indexes which have been deleted or which have never been assigned values.

    callback is invoked with three arguments:

    - the value of the element - the index of the element - and the Array object being traversed.

    If a thisObject parameter is provided to every, it will be used as the this for each invocation of the callback. If it is not provided, or is null, the global object associated with callback is used instead.

    every does not mutate the array on which it is called.

    every acts like the "for all" quantifier in mathematics. In particular, for an empty array, it returns true. (It is vacuously true that all elements of the empty set satisfy any given condition.)

    MDN

  51. def exists(p: (A) ⇒ scala.Boolean): scala.Boolean

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  52. def filter(callbackfn: Function1[A, Boolean]): Array[A]

  53. def filter(callbackfn: Function2[A, Int, Boolean]): Array[A]

  54. def filter(callbackfn: Function3[A, Int, Array[A], Boolean]): Array[A]

  55. def filter[T](callbackfn: ThisFunction3[T, A, Int, Array[A], Boolean], thisArg: T): Array[A]

    filter calls a provided callback function once for each element in an array, and constructs a new array of all the values for which callback returns a true value.

    filter calls a provided callback function once for each element in an array, and constructs a new array of all the values for which callback returns a true value. callback is invoked only for indexes of the array which have assigned values; it is not invoked for indexes which have been deleted or which have never been assigned values. Array elements which do not pass the callback test are simply skipped, and are not included in the new array.

    callback is invoked with three arguments:

    - the value of the element - the index of the element - the Array object being traversed

    If a thisObject parameter is provided to filter, it will be used as the this for each invocation of the callback. If it is not provided, or is null, the global object associated with callback is used instead.

    filter does not mutate the array on which it is called.

    MDN

  56. def filterNot(p: (A) ⇒ scala.Boolean): scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → GenTraversableLike
  57. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  58. def find(p: (A) ⇒ scala.Boolean): Option[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  59. def flatMap[B, That](f: (A) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[scala.Array[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  60. def flatten[U](implicit asTrav: (A) ⇒ collection.Traversable[U], m: ClassTag[U]): scala.Array[U]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    ArrayOps
  61. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  62. def foldLeft[B](z: B)(op: (B, A) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → TraversableOnce → GenTraversableOnce
  63. def foldRight[B](z: B)(op: (A, B) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  64. def forEach(callbackfn: Function1[A, _]): Unit

  65. def forEach(callbackfn: Function2[A, Int, _]): Unit

  66. def forEach(callbackfn: Function3[A, Int, Array[A], _]): Unit

  67. def forEach[T](callbackfn: ThisFunction3[T, A, Int, Array[A], _], thisArg: T): Unit

    forEach executes the provided callback once for each element of the array with an assigned value.

    forEach executes the provided callback once for each element of the array with an assigned value. It is not invoked for indexes which have been deleted or which have been initialized to undefined.

    callback is invoked with three arguments:

    - the element value - the element index - the array being traversed

    If a thisArg parameter is provided to forEach, it will be used as the this value for each callback invocation as if callback.call(thisArg, element, index, array) was called. If thisArg is undefined or null, the this value within the function depends on whether the function is in strict mode or not (passed value if in strict mode, global object if in non-strict mode).

    MDN

  68. def forall(p: (A) ⇒ scala.Boolean): scala.Boolean

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  69. def foreach[U](f: (A) ⇒ U): Unit

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  70. def formatted(fmtstr: Predef.String): Predef.String

    Implicit information
    This member is added by an implicit conversion from Array[A] to StringFormat[Array[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  71. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  72. def groupBy[K](f: (A) ⇒ K): Map[K, scala.Array[A]]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → GenTraversableLike
  73. def grouped(size: Int): collection.Iterator[scala.Array[A]]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IterableLike
  74. def hasDefiniteSize: scala.Boolean

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  75. 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
  76. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  77. def head: A

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  78. def headOption: Option[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → GenTraversableLike
  79. def indexOf(searchElement: A): Int

  80. def indexOf(searchElement: A, fromIndex: Int): Int

    The indexOf() method returns the first index at which a given element can be found in the array, or -1 if it is not present.

    The indexOf() method returns the first index at which a given element can be found in the array, or -1 if it is not present.

    MDN

  81. def indexOfSlice[B >: A](that: GenSeq[B], from: Int): Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike
  82. def indexOfSlice[B >: A](that: GenSeq[B]): Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike
  83. def indexWhere(p: (A) ⇒ scala.Boolean, from: Int): Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  84. def indexWhere(p: (A) ⇒ scala.Boolean): Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    GenSeqLike
  85. def indices: collection.immutable.Range

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike
  86. def init: scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  87. def inits: collection.Iterator[scala.Array[A]]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike
  88. def intersect[B >: A](that: GenSeq[B]): scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike → GenSeqLike
  89. def isDefinedAt(idx: Int): scala.Boolean

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    GenSeqLike
  90. def isEmpty: scala.Boolean

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → SeqLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  91. final def isInstanceOf[T0]: scala.Boolean

    Definition Classes
    Any
  92. 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
  93. final def isTraversableAgain: scala.Boolean

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  94. def iterator: collection.Iterator[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqLike → IterableLike → GenIterableLike
  95. 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.

  96. def last: A

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  97. def lastIndexOf(searchElement: A): Int

  98. def lastIndexOf(searchElement: A, fromIndex: Int): Int

    The lastIndexOf() method returns the last index at which a given element can be found in the array, or -1 if it is not present.

    The lastIndexOf() method returns the last index at which a given element can be found in the array, or -1 if it is not present. The array is searched backwards, starting at fromIndex.

    MDN

  99. def lastIndexOfSlice[B >: A](that: GenSeq[B], end: Int): Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike
  100. def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike
  101. def lastIndexWhere(p: (A) ⇒ scala.Boolean, end: Int): Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  102. def lastIndexWhere(p: (A) ⇒ scala.Boolean): Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    GenSeqLike
  103. def lastOption: Option[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → GenTraversableLike
  104. def length: Int

    Length of the array.

  105. def lengthCompare(len: Int): Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → SeqLike
  106. def map[B](callbackfn: Function1[A, B]): Array[B]

  107. def map[B](callbackfn: Function2[A, Int, B]): Array[B]

  108. def map[B](callbackfn: Function3[A, Int, Array[A], B]): Array[B]

  109. def map[B, T](callbackfn: ThisFunction3[T, A, Int, Array[A], B], thisArg: T): Array[B]

    map calls a provided callback function once for each element in an array, in order, and constructs a new array from the results.

    map calls a provided callback function once for each element in an array, in order, and constructs a new array from the results. callback is invoked only for indexes of the array which have assigned values; it is not invoked for indexes which have been deleted or which have never been assigned values.

    callback is invoked with three arguments: the value of the element, the index of the element, and the Array object being traversed.

    If a thisArg parameter is provided to map, it will be used as the this for each invocation of the callback. If it is not provided, or is null, the global object associated with callback is used instead.

    map does not mutate the array on which it is called.

    MDN

  110. def max[B >: A](implicit cmp: Ordering[B]): A

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  111. def maxBy[B](f: (A) ⇒ B)(implicit cmp: Ordering[B]): A

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  112. def min[B >: A](implicit cmp: Ordering[B]): A

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  113. def minBy[B](f: (A) ⇒ B)(implicit cmp: Ordering[B]): A

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  114. def mkString: Predef.String

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  115. def mkString(sep: Predef.String): Predef.String

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  116. def mkString(start: Predef.String, sep: Predef.String, end: Predef.String): Predef.String

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  117. final def ne(arg0: AnyRef): scala.Boolean

    Definition Classes
    AnyRef
  118. def nonEmpty: scala.Boolean

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  119. final def notify(): Unit

    Definition Classes
    AnyRef
  120. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  121. def padTo[B >: A, That](len: Int, elem: B)(implicit bf: CanBuildFrom[scala.Array[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike → GenSeqLike
  122. def par: ParArray[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    ArrayOps → CustomParallelizable → Parallelizable
  123. def partition(p: (A) ⇒ scala.Boolean): (scala.Array[A], scala.Array[A])

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → GenTraversableLike
  124. def patch[B >: A, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[scala.Array[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike → GenSeqLike
  125. def permutations: collection.Iterator[scala.Array[A]]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike
  126. 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

  127. def prefixLength(p: (A) ⇒ scala.Boolean): Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    GenSeqLike
  128. def product[B >: A](implicit num: Numeric[B]): B

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. 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
  130. 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

  131. def reduce[B](callbackfn: Function2[B, A, B]): B

  132. def reduce[B](callbackfn: Function3[B, A, Int, B]): B

  133. def reduce[B](callbackfn: Function4[B, A, Int, Array[A], B]): B

  134. def reduce[B](callbackfn: Function2[B, A, B], initialValue: B): B

  135. def reduce[B](callbackfn: Function3[B, A, Int, B], initialValue: B): B

  136. def reduce[B](callbackfn: Function4[B, A, Int, Array[A], B], initialValue: B): B

    reduce executes the callback function once for each element present in the array, excluding holes in the array, receiving four arguments: the initial value (or value from the previous callback call), the value of the current element, the current index, and the array over which iteration is occurring.

    reduce executes the callback function once for each element present in the array, excluding holes in the array, receiving four arguments: the initial value (or value from the previous callback call), the value of the current element, the current index, and the array over which iteration is occurring.

    The first time the callback is called, previousValue and currentValue can be one of two values. If initialValue is provided in the call to reduce, then previousValue will be equal to initialValue and currentValue will be equal to the first value in the array. If no initialValue was provided, then previousValue will be equal to the first value in the array and currentValue will be equal to the second.

    MDN

  137. def reduceLeft[B >: A](op: (B, A) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → TraversableOnce
  138. def reduceLeftOption[B >: A](op: (B, A) ⇒ B): Option[B]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  139. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  140. def reduceRight[B](callbackfn: Function2[B, A, B]): B

  141. def reduceRight[B](callbackfn: Function3[B, A, Int, B]): B

  142. def reduceRight[B](callbackfn: Function4[B, A, Int, Array[A], B]): B

  143. def reduceRight[B](callbackfn: Function2[B, A, B], initialValue: B): B

  144. def reduceRight[B](callbackfn: Function3[B, A, Int, B], initialValue: B): B

  145. def reduceRight[B](callbackfn: Function4[B, A, Int, Array[A], B], initialValue: B): B

    reduceRight executes the callback function once for each element present in the array, excluding holes in the array, receiving four arguments: the initial value (or value from the previous callback call), the value of the current element, the current index, and the array over which iteration is occurring.

    reduceRight executes the callback function once for each element present in the array, excluding holes in the array, receiving four arguments: the initial value (or value from the previous callback call), the value of the current element, the current index, and the array over which iteration is occurring.

    MDN

  146. def reduceRightOption[B >: A](op: (A, B) ⇒ B): Option[B]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  147. def repr: scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → GenTraversableLike
  148. def reverse(): 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

  149. def reverseIterator: collection.Iterator[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → SeqLike
  150. def reverseMap[B, That](f: (A) ⇒ B)(implicit bf: CanBuildFrom[scala.Array[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike → GenSeqLike
  151. def sameElements[B >: A](that: GenIterable[B]): scala.Boolean

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  152. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[scala.Array[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → GenTraversableLike
  153. def scanLeft[B, That](z: B)(op: (B, A) ⇒ B)(implicit bf: CanBuildFrom[scala.Array[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → GenTraversableLike
  154. def scanRight[B, That](z: B)(op: (A, B) ⇒ B)(implicit bf: CanBuildFrom[scala.Array[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  155. def segmentLength(p: (A) ⇒ scala.Boolean, from: Int): Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  156. def seq: collection.mutable.IndexedSeq[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    ArrayOps → IndexedSeqLike → GenSeqLike → Parallelizable → TraversableOnce → GenTraversableOnce
  157. 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

  158. def size: Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  159. def slice(start: Int): Array[A]

  160. def slice(start: Int, end: Int): 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

  161. def sliding(size: Int, step: Int): collection.Iterator[scala.Array[A]]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IterableLike
  162. def sliding(size: Int): collection.Iterator[scala.Array[A]]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IterableLike
  163. def some(callbackfn: Function1[A, Boolean]): Boolean

  164. def some(callbackfn: Function2[A, Int, Boolean]): Boolean

  165. def some(callbackfn: Function3[A, Int, Array[A], Boolean]): Boolean

  166. def some[T](callbackfn: ThisFunction3[T, A, Int, Array[A], Boolean], thisArg: T): Boolean

    some executes the callback function once for each element present in the array until it finds one where callback returns a true value.

    some executes the callback function once for each element present in the array until it finds one where callback returns a true value. If such an element is found, some immediately returns true. Otherwise, some returns false. callback is invoked only for indexes of the array which have assigned values; it is not invoked for indexes which have been deleted or which have never been assigned values.

    callback is invoked with three arguments: the value of the element, the index of the element, and the Array object being traversed.

    If a thisObject parameter is provided to some, it will be used as the this for each invocation of the callback. If it is not provided, or is null, the global object associated with callback is used instead.

    some does not mutate the array on which it is called.

    MDN

  167. 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

  168. def sortBy[B](f: (A) ⇒ B)(implicit ord: math.Ordering[B]): scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike
  169. def sortWith(lt: (A, A) ⇒ scala.Boolean): scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike
  170. def sorted[B >: A](implicit ord: math.Ordering[B]): scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike
  171. def span(p: (A) ⇒ scala.Boolean): (scala.Array[A], scala.Array[A])

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  172. def splice(index: Int, deleteCount: Int, items: A*): Array[A]

    The splice() method changes the content of an array, adding new elements while removing old elements.

    The splice() method changes the content of an array, adding new elements while removing old elements.

    MDN

  173. def splice(index: Int): Array[A]

    The splice() method changes the content of an array, adding new elements while removing old elements.

    The splice() method changes the content of an array, adding new elements while removing old elements.

    MDN

  174. def splitAt(n: Int): (scala.Array[A], scala.Array[A])

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  175. def startsWith[B](that: GenSeq[B], offset: Int): scala.Boolean

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  176. def startsWith[B](that: GenSeq[B]): scala.Boolean

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    GenSeqLike
  177. def stringPrefix: Predef.String

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → GenTraversableLike
  178. def sum[B >: A](implicit num: Numeric[B]): B

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  179. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  180. def tail: scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  181. def tails: collection.Iterator[scala.Array[A]]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike
  182. def take(n: Int): scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  183. def takeRight(n: Int): scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → IterableLike
  184. def takeWhile(p: (A) ⇒ scala.Boolean): scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  185. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, A, Col[A]]): Col[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  186. def toArray[U >: T](implicit arg0: ClassTag[U]): scala.Array[U]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    ArrayOps → TraversableOnce → GenTraversableOnce
  187. def toBuffer[A1 >: A]: Buffer[A1]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqLike → TraversableOnce → GenTraversableOnce
  188. def toIndexedSeq: collection.immutable.IndexedSeq[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  189. def toIterable: collection.Iterable[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  190. def toIterator: collection.Iterator[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  191. def toList: List[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  192. def toLocaleString(): String

    Definition Classes
    Object
  193. def toMap[T, U](implicit ev: <:<[A, (T, U)]): Map[T, U]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  194. def toSeq: collection.Seq[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  195. def toSet[B >: A]: Set[B]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  196. def toStream: collection.immutable.Stream[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  197. def toString(): java.lang.String

    Definition Classes
    AnyRef → Any
  198. def toTraversable: collection.Traversable[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  199. def toVector: Vector[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableOnce → GenTraversableOnce
  200. def transpose[U](implicit asArray: (A) ⇒ scala.Array[U]): scala.Array[scala.Array[U]]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    ArrayOps
  201. def union[B >: A, That](that: GenSeq[B])(implicit bf: CanBuildFrom[scala.Array[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike → GenSeqLike
  202. 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

  203. def unzip[T1, T2](implicit asPair: (A) ⇒ (T1, T2), ct1: ClassTag[T1], ct2: ClassTag[T2]): (scala.Array[T1], scala.Array[T2])

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    ArrayOps
  204. def unzip3[T1, T2, T3](implicit asTriple: (A) ⇒ (T1, T2, T3), ct1: ClassTag[T1], ct2: ClassTag[T2], ct3: ClassTag[T3]): (scala.Array[T1], scala.Array[T2], scala.Array[T3])

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    ArrayOps
  205. def update(index: Int, value: A): Unit

    Set the element at the given index.

    Set the element at the given index.

    Annotations
    @JSBracketAccess()
  206. def updated[B >: A, That](index: Int, elem: B)(implicit bf: CanBuildFrom[scala.Array[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    SeqLike → GenSeqLike
  207. def valueOf(): scala.Any

    Definition Classes
    Object
  208. def view(from: Int, until: Int): IndexedSeqView[A, scala.Array[A]]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  209. def view: IndexedSeqView[A, scala.Array[A]]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  210. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  211. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  212. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  213. def withFilter(p: (A) ⇒ scala.Boolean): FilterMonadic[A, scala.Array[A]]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    TraversableLike → FilterMonadic
  214. def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[scala.Array[A], (A1, B), That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  215. def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[scala.Array[A], (A1, B), That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IterableLike → GenIterableLike
  216. def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[scala.Array[A], (A1, Int), That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  217. def [B](y: B): (Array[A], B)

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrowAssoc[Array[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def apply(i: Int): A

    Implicit information
    This member is added by an implicit conversion from Array[A] to scala.Array[A] performed by method toArray in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: scala.Array[A]).apply(i)
    Definition Classes
    Array
  2. def apply(idx: Int): A

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: ArrayOps[A]).apply(idx)
    Definition Classes
    SeqLike → GenSeqLike
  3. def clone(): scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to scala.Array[A] performed by method toArray in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: scala.Array[A]).clone()
    Definition Classes
    Array → AnyRef
  4. def equals(that: scala.Any): scala.Boolean

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: ArrayOps[A]).equals(that)
    Definition Classes
    GenSeqLike → Equals → Any
  5. def filter(p: (A) ⇒ scala.Boolean): scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: ArrayOps[A]).filter(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  6. def hashCode(): Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: ArrayOps[A]).hashCode()
    Definition Classes
    IndexedSeqLike → GenSeqLike → Any
  7. def indexOf[B >: A](elem: B, from: Int): Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: ArrayOps[A]).indexOf(elem, from)
    Definition Classes
    GenSeqLike
  8. def indexOf[B >: A](elem: B): Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: ArrayOps[A]).indexOf(elem)
    Definition Classes
    GenSeqLike
  9. def lastIndexOf[B >: A](elem: B, end: Int): Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: ArrayOps[A]).lastIndexOf(elem, end)
    Definition Classes
    GenSeqLike
  10. def lastIndexOf[B >: A](elem: B): Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: ArrayOps[A]).lastIndexOf(elem)
    Definition Classes
    GenSeqLike
  11. def length: Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to scala.Array[A] performed by method toArray in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: scala.Array[A]).length
    Definition Classes
    Array
  12. def length: Int

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: ArrayOps[A]).length
    Definition Classes
    SeqLike → GenSeqLike
  13. def map[B, That](f: (A) ⇒ B)(implicit bf: CanBuildFrom[scala.Array[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: ArrayOps[A]).map(f)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  14. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: ArrayOps[A]).reduce(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  15. def reduceRight[B >: A](op: (A, B) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: ArrayOps[A]).reduceRight(op)
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  16. def reverse: scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: ArrayOps[A]).reverse
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  17. def slice(from: Int, until: Int): scala.Array[A]

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: ArrayOps[A]).slice(from, until)
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  18. def toString(): Predef.String

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: ArrayOps[A]).toString()
    Definition Classes
    SeqLike → TraversableLike → Any
  19. def update(i: Int, x: A): Unit

    Implicit information
    This member is added by an implicit conversion from Array[A] to scala.Array[A] performed by method toArray in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: scala.Array[A]).update(i, x)
    Definition Classes
    Array
  20. def update(idx: Int, elem: A): Unit

    Implicit information
    This member is added by an implicit conversion from Array[A] to ArrayOps[A] performed by method arrayOps in scala.scalajs.js.Any. This conversion will take place only if A is accompanied by a ClassTag, which is a runtime representation of its type that survives erasure (A: ClassTag).
    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: ArrayOps[A]).update(idx, elem)
    Definition Classes
    IndexedSeqLike

Deprecated Value Members

  1. def unary_!(): Boolean

    Definition Classes
    Any
    Annotations
    @deprecated
    Deprecated

    (Since version 0.5.0)

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from scala.Any

Inherited by implicit conversion toArray from Array[A] to scala.Array[A]

Inherited by implicit conversion arrayOps from Array[A] to ArrayOps[A]

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

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

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

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

Ungrouped