Class/Object

scala.scalajs.js

WrappedArray

Related Docs: object WrappedArray | package js

Permalink

final class WrappedArray[A] extends AbstractBuffer[A] with GenericTraversableTemplate[A, WrappedArray] with collection.mutable.IndexedSeq[A] with BufferLike[A, WrappedArray[A]] with ArrayLike[A, WrappedArray[A]] with Builder[A, WrappedArray[A]]

Equivalent of scm.WrappedArray for js.Array

Annotations
@inline()
Linear Supertypes
Builder[A, WrappedArray[A]], ArrayLike[A, WrappedArray[A]], IndexedSeqOptimized[A, WrappedArray[A]], IndexedSeqOptimized[A, WrappedArray[A]], collection.mutable.IndexedSeq[A], IndexedSeqLike[A, WrappedArray[A]], collection.IndexedSeq[A], IndexedSeqLike[A, WrappedArray[A]], AbstractBuffer[A], Buffer[A], BufferLike[A, WrappedArray[A]], Subtractable[A, WrappedArray[A]], Scriptable[A], Shrinkable[A], Growable[A], Clearable, AbstractSeq[A], collection.mutable.Seq[A], SeqLike[A, WrappedArray[A]], collection.mutable.Cloneable[WrappedArray[A]], Cloneable, java.lang.Cloneable, collection.mutable.Iterable[A], collection.mutable.Traversable[A], Mutable, AbstractSeq[A], collection.Seq[A], SeqLike[A, WrappedArray[A]], GenSeq[A], GenSeqLike[A, WrappedArray[A]], PartialFunction[Int, A], (Int) ⇒ A, AbstractIterable[A], collection.Iterable[A], IterableLike[A, WrappedArray[A]], Equals, GenIterable[A], GenIterableLike[A, WrappedArray[A]], AbstractTraversable[A], collection.Traversable[A], GenTraversable[A], GenericTraversableTemplate[A, WrappedArray], TraversableLike[A, WrappedArray[A]], GenTraversableLike[A, WrappedArray[A]], Parallelizable[A, ParSeq[A]], collection.TraversableOnce[A], GenTraversableOnce[A], FilterMonadic[A, WrappedArray[A]], HasNewBuilder[A, scala.scalajs.js.WrappedArray[A] @scala.annotation.unchecked.uncheckedVariance], AnyRef, scala.Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. WrappedArray
  2. Builder
  3. ArrayLike
  4. IndexedSeqOptimized
  5. IndexedSeqOptimized
  6. IndexedSeq
  7. IndexedSeqLike
  8. IndexedSeq
  9. IndexedSeqLike
  10. AbstractBuffer
  11. Buffer
  12. BufferLike
  13. Subtractable
  14. Scriptable
  15. Shrinkable
  16. Growable
  17. Clearable
  18. AbstractSeq
  19. Seq
  20. SeqLike
  21. Cloneable
  22. Cloneable
  23. Cloneable
  24. Iterable
  25. Traversable
  26. Mutable
  27. AbstractSeq
  28. Seq
  29. SeqLike
  30. GenSeq
  31. GenSeqLike
  32. PartialFunction
  33. Function1
  34. AbstractIterable
  35. Iterable
  36. IterableLike
  37. Equals
  38. GenIterable
  39. GenIterableLike
  40. AbstractTraversable
  41. Traversable
  42. GenTraversable
  43. GenericTraversableTemplate
  44. TraversableLike
  45. GenTraversableLike
  46. Parallelizable
  47. TraversableOnce
  48. GenTraversableOnce
  49. FilterMonadic
  50. HasNewBuilder
  51. AnyRef
  52. Any
Implicitly
  1. by SeqCharSequence
  2. by toJSArray
  3. by CollectionsHaveToParArray
  4. by MonadOps
  5. by any2stringadd
  6. by StringFormat
  7. by Ensuring
  8. by ArrowAssoc
  9. by alternateImplicit
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new WrappedArray()

    Permalink

    Creates a new empty WrappedArray.

  2. new WrappedArray(array: Array[A])

    Permalink

Type Members

  1. class Elements extends AbstractIterator[A] with collection.BufferedIterator[A] with Serializable

    Permalink
    Attributes
    protected
    Definition Classes
    IndexedSeqLike
    Annotations
    @SerialVersionUID()
  2. type Self = WrappedArray[A]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  3. class WithFilter extends FilterMonadic[A, Repr]

    Permalink
    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: scala.Any): Boolean

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

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to any2stringadd[WrappedArray[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++(xs: GenTraversableOnce[A]): WrappedArray[A]

    Permalink
    Definition Classes
    BufferLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) ++ creates a new buffer. Use ++= to add an element from this buffer and return that buffer itself.

  5. def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[WrappedArray[A], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  6. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[WrappedArray[A], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  7. def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[WrappedArray[A], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  8. def ++=(xs: collection.TraversableOnce[A]): WrappedArray.this.type

    Permalink
    Definition Classes
    Growable
  9. def ++=:(xs: TraversableOnce[A]): WrappedArray.this.type

    Permalink
    Definition Classes
    WrappedArray → BufferLike
    Annotations
    @inline()
  10. def +:[B >: A, That](elem: B)(implicit bf: CanBuildFrom[WrappedArray[A], B, That]): That

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  11. def +=(elem: A): WrappedArray.this.type

    Permalink
    Definition Classes
    WrappedArray → Builder → BufferLike → Growable
    Annotations
    @inline()
  12. def +=(elem1: A, elem2: A, elems: A*): WrappedArray.this.type

    Permalink
    Definition Classes
    Growable
  13. def +=:(elem: A): WrappedArray.this.type

    Permalink
    Definition Classes
    WrappedArray → BufferLike
    Annotations
    @inline()
  14. def -(elem1: A, elem2: A, elems: A*): WrappedArray[A]

    Permalink
    Definition Classes
    BufferLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new buffer. Use -= to remove an element from this buffer and return that buffer itself.

  15. def -(elem: A): WrappedArray[A]

    Permalink
    Definition Classes
    BufferLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new buffer. Use -= to remove an element from this buffer and return that buffer itself.

  16. def --(xs: GenTraversableOnce[A]): WrappedArray[A]

    Permalink
    Definition Classes
    BufferLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) -- creates a new buffer. Use --= to remove an element from this buffer and return that buffer itself.

  17. def --=(xs: collection.TraversableOnce[A]): WrappedArray.this.type

    Permalink
    Definition Classes
    Shrinkable
  18. def -=(x: A): WrappedArray.this.type

    Permalink
    Definition Classes
    BufferLike → Shrinkable
  19. def -=(elem1: A, elem2: A, elems: A*): WrappedArray.this.type

    Permalink
    Definition Classes
    Shrinkable
  20. def ->[B](y: B): (WrappedArray[A], B)

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. def :+[B >: A, That](elem: B)(implicit bf: CanBuildFrom[WrappedArray[A], B, That]): That

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  23. def :\[B](z: B)(op: (A, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  24. final def ==(arg0: scala.Any): Boolean

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

    Permalink
    Definition Classes
    TraversableOnce
  26. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  27. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  28. def aggregate[B](z: ⇒ B)(seqop: (B, A) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  29. def andThen[C](k: (A) ⇒ C): PartialFunction[Int, C]

    Permalink
    Definition Classes
    PartialFunction → Function1
  30. def append(elems: A*): Unit

    Permalink
    Definition Classes
    BufferLike
  31. def appendAll(xs: collection.TraversableOnce[A]): Unit

    Permalink
    Definition Classes
    BufferLike
  32. def apply(index: Int): A

    Permalink
    Definition Classes
    WrappedArray → BufferLike → SeqLike → GenSeqLike → Function1
    Annotations
    @inline()
  33. def applyOrElse[A1 <: Int, B1 >: A](x: A1, default: (A1) ⇒ B1): B1

    Permalink
    Definition Classes
    PartialFunction
  34. val array: Array[A]

    Permalink
  35. final def asInstanceOf[T0]: T0

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

    Permalink
    Definition Classes
    IterableLike → Equals
  37. def charAt(index: Int): Char

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to SeqCharSequence performed by method SeqCharSequence in scala.Predef. This conversion will take place only if A is a subclass of Char (A <: Char).
    Definition Classes
    SeqCharSequence → CharSequence
  38. def clear(): Unit

    Permalink
    Definition Classes
    WrappedArray → Builder → BufferLike → Growable → Clearable
    Annotations
    @inline()
  39. def clone(): WrappedArray[A]

    Permalink
    Definition Classes
    BufferLike → Cloneable → AnyRef
  40. def collect[B, That](pf: PartialFunction[A, B])(implicit bf: CanBuildFrom[WrappedArray[A], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  41. def collectFirst[B](pf: PartialFunction[A, B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  42. def combinations(n: Int): collection.Iterator[WrappedArray[A]]

    Permalink
    Definition Classes
    SeqLike
  43. def companion: GenericCompanion[WrappedArray]

    Permalink
    Definition Classes
    WrappedArray → IndexedSeq → IndexedSeq → Buffer → Seq → Iterable → Traversable → Seq → GenSeq → Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  44. def compose[A](g: (A) ⇒ Int): (A) ⇒ A

    Permalink
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  45. def concat[B >: A](items: Array[_ <: B]*): Array[B]

    Permalink

    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

    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    Definition Classes
    Array
  46. def contains[A1 >: A](elem: A1): Boolean

    Permalink
    Definition Classes
    SeqLike
  47. def containsSlice[B](that: GenSeq[B]): Boolean

    Permalink
    Definition Classes
    SeqLike
  48. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Unit

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  49. def copyToArray[B >: A](xs: scala.Array[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  50. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  51. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce
  52. def corresponds[B](that: GenSeq[B])(p: (A, B) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  53. def count(p: (A) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  54. def deep: collection.IndexedSeq[scala.Any]

    Permalink
    Definition Classes
    ArrayLike
  55. def diff[B >: A](that: GenSeq[B]): WrappedArray[A]

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  56. def distinct: WrappedArray[A]

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  57. def drop(n: Int): WrappedArray[A]

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  58. def dropRight(n: Int): WrappedArray[A]

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike
  59. def dropWhile(p: (A) ⇒ Boolean): WrappedArray[A]

    Permalink
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  60. def endsWith[B](that: GenSeq[B]): Boolean

    Permalink
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  61. def ensuring(cond: (WrappedArray[A]) ⇒ Boolean, msg: ⇒ scala.Any): WrappedArray[A]

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  66. def equals(that: scala.Any): Boolean

    Permalink
    Definition Classes
    GenSeqLike → Equals → Any
  67. def exists(p: (A) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  68. def filter(p: (A) ⇒ Boolean): WrappedArray[A]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  69. def filterNot(p: (A) ⇒ Boolean): WrappedArray[A]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  70. def finalize(): Unit

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

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  72. def flatMap[B, That](f: (A) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[WrappedArray[A], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  73. def flatten[B](implicit asTraversable: (A) ⇒ GenTraversableOnce[B]): WrappedArray[B]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  74. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def foldLeft[B](z: B)(op: (B, A) ⇒ B): B

    Permalink
    Definition Classes
    IndexedSeqOptimized → TraversableOnce → GenTraversableOnce
  76. def foldRight[B](z: B)(op: (A, B) ⇒ B): B

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  77. def forall(p: (A) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  78. def foreach[U](f: (A) ⇒ U): Unit

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  79. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to StringFormat[WrappedArray[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  80. def genericBuilder[B]: Builder[B, WrappedArray[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  81. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  82. def groupBy[K](f: (A) ⇒ K): Map[K, WrappedArray[A]]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  83. def grouped(size: Int): collection.Iterator[WrappedArray[A]]

    Permalink
    Definition Classes
    IterableLike
  84. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  85. def hasOwnProperty(v: String): Boolean

    Permalink

    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

    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    Definition Classes
    Object
  86. def hashCode(): Int

    Permalink
    Definition Classes
    IndexedSeqLike → GenSeqLike → Any
  87. def head: A

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  88. def headOption: Option[A]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  89. def indexOf[B >: A](elem: B, from: Int): Int

    Permalink
    Definition Classes
    GenSeqLike
  90. def indexOf[B >: A](elem: B): Int

    Permalink
    Definition Classes
    GenSeqLike
  91. def indexOfSlice[B >: A](that: GenSeq[B], from: Int): Int

    Permalink
    Definition Classes
    SeqLike
  92. def indexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink
    Definition Classes
    SeqLike
  93. def indexWhere(p: (A) ⇒ Boolean, from: Int): Int

    Permalink
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  94. def indexWhere(p: (A) ⇒ Boolean): Int

    Permalink
    Definition Classes
    GenSeqLike
  95. def indices: collection.immutable.Range

    Permalink
    Definition Classes
    SeqLike
  96. def init: WrappedArray[A]

    Permalink
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  97. def inits: collection.Iterator[WrappedArray[A]]

    Permalink
    Definition Classes
    TraversableLike
  98. def insert(n: Int, elems: A*): Unit

    Permalink
    Definition Classes
    BufferLike
  99. def insertAll(n: Int, elems: collection.Traversable[A]): Unit

    Permalink
    Definition Classes
    WrappedArray → BufferLike
    Annotations
    @inline()
  100. def intersect[B >: A](that: GenSeq[B]): WrappedArray[A]

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  101. def isDefinedAt(idx: Int): Boolean

    Permalink
    Definition Classes
    GenSeqLike
  102. def isEmpty: Boolean

    Permalink
    Definition Classes
    IndexedSeqOptimized → SeqLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  103. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  104. def isPrototypeOf(v: Object): Boolean

    Permalink

    Tests whether this object is in the prototype chain of another object.

    Tests whether this object is in the prototype chain of another object.

    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    Definition Classes
    Object
  105. final def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  106. def iterator: collection.Iterator[A]

    Permalink
    Definition Classes
    IndexedSeqLike → IterableLike → GenIterableLike
  107. def join(seperator: String = ","): String

    Permalink

    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.

    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    Definition Classes
    Array
  108. def jsSlice(start: Int = 0, end: Int = Int.MaxValue): Array[A]

    Permalink

    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

    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    Definition Classes
    Array
    Annotations
    @JSName( name = "slice" )
  109. def last: A

    Permalink
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  110. def lastIndexOf[B >: A](elem: B, end: Int): Int

    Permalink
    Definition Classes
    GenSeqLike
  111. def lastIndexOf[B >: A](elem: B): Int

    Permalink
    Definition Classes
    GenSeqLike
  112. def lastIndexOfSlice[B >: A](that: GenSeq[B], end: Int): Int

    Permalink
    Definition Classes
    SeqLike
  113. def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink
    Definition Classes
    SeqLike
  114. def lastIndexWhere(p: (A) ⇒ Boolean, end: Int): Int

    Permalink
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  115. def lastIndexWhere(p: (A) ⇒ Boolean): Int

    Permalink
    Definition Classes
    GenSeqLike
  116. def lastOption: Option[A]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  117. def length: Int

    Permalink
    Definition Classes
    WrappedArray → BufferLike → SeqLike → GenSeqLike
    Annotations
    @inline()
  118. def lengthCompare(len: Int): Int

    Permalink
    Definition Classes
    IndexedSeqOptimized → SeqLike
  119. def length_=(v: Int): Unit

    Permalink

    Sets the length of the array.

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

    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    Definition Classes
    Array
  120. def lift: (Int) ⇒ Option[A]

    Permalink
    Definition Classes
    PartialFunction
  121. def map[B, That](f: (A) ⇒ B)(implicit bf: CanBuildFrom[WrappedArray[A], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  122. def mapResult[NewTo](f: (WrappedArray[A]) ⇒ NewTo): Builder[A, NewTo]

    Permalink
    Definition Classes
    Builder
  123. def max[B >: A](implicit cmp: Ordering[B]): A

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  124. def maxBy[B](f: (A) ⇒ B)(implicit cmp: Ordering[B]): A

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def min[B >: A](implicit cmp: Ordering[B]): A

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def minBy[B](f: (A) ⇒ B)(implicit cmp: Ordering[B]): A

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def mkString: String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  128. def mkString(sep: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def mkString(start: String, sep: String, end: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  131. def newBuilder: Builder[A, WrappedArray[A]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  132. def nonEmpty: Boolean

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  134. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  135. def orElse[A1 <: Int, B1 >: A](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

    Permalink
    Definition Classes
    PartialFunction
  136. def padTo[B >: A, That](len: Int, elem: B)(implicit bf: CanBuildFrom[WrappedArray[A], B, That]): That

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  137. def par: ParSeq[A]

    Permalink
    Definition Classes
    Parallelizable
  138. def parCombiner: Combiner[A, ParSeq[A]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    SeqLike → SeqLike → TraversableLike → Parallelizable
  139. def partition(p: (A) ⇒ Boolean): (WrappedArray[A], WrappedArray[A])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  140. def patch[B >: A, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[WrappedArray[A], B, That]): That

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  141. def permutations: collection.Iterator[WrappedArray[A]]

    Permalink
    Definition Classes
    SeqLike
  142. def pop(): A

    Permalink

    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

    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    Definition Classes
    Array
  143. def prefixLength(p: (A) ⇒ Boolean): Int

    Permalink
    Definition Classes
    GenSeqLike
  144. def prepend(elems: A*): Unit

    Permalink
    Definition Classes
    BufferLike
  145. def prependAll(xs: collection.TraversableOnce[A]): Unit

    Permalink
    Definition Classes
    BufferLike
  146. def product[B >: A](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  147. def propertyIsEnumerable(v: String): Boolean

    Permalink

    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

    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    Definition Classes
    Object
  148. def push(items: A*): Int

    Permalink

    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

    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    Definition Classes
    Array
  149. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  150. def reduceLeft[B >: A](op: (B, A) ⇒ B): B

    Permalink
    Definition Classes
    IndexedSeqOptimized → TraversableOnce
  151. def reduceLeftOption[B >: A](op: (B, A) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  152. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  153. def reduceRight[B >: A](op: (A, B) ⇒ B): B

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  154. def reduceRightOption[B >: A](op: (A, B) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  155. def remove(n: Int, count: Int): Unit

    Permalink
    Definition Classes
    WrappedArray → BufferLike
    Annotations
    @inline()
  156. def remove(n: Int): A

    Permalink
    Definition Classes
    WrappedArray → BufferLike
    Annotations
    @inline()
  157. def repr: WrappedArray[A]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  158. def result(): WrappedArray[A]

    Permalink
    Definition Classes
    WrappedArray → Builder
    Annotations
    @inline()
  159. def reverse: WrappedArray[A]

    Permalink
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  160. def reverseInPlace(): Array[A]

    Permalink

    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

    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    Definition Classes
    Array
    Annotations
    @JSName( name = "reverse" )
  161. def reverseIterator: collection.Iterator[A]

    Permalink
    Definition Classes
    IndexedSeqOptimized → SeqLike
  162. def reverseMap[B, That](f: (A) ⇒ B)(implicit bf: CanBuildFrom[WrappedArray[A], B, That]): That

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  163. def reversed: List[A]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  164. def runWith[U](action: (A) ⇒ U): (Int) ⇒ Boolean

    Permalink
    Definition Classes
    PartialFunction
  165. def sameElements[B >: A](that: GenIterable[B]): Boolean

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  166. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[WrappedArray[A], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  167. def scanLeft[B, That](z: B)(op: (B, A) ⇒ B)(implicit bf: CanBuildFrom[WrappedArray[A], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  168. def scanRight[B, That](z: B)(op: (A, B) ⇒ B)(implicit bf: CanBuildFrom[WrappedArray[A], B, That]): That

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

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

    Permalink
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  170. def seq: collection.mutable.IndexedSeq[A]

    Permalink
    Definition Classes
    IndexedSeq → IndexedSeq → IndexedSeqLike → Seq → Seq → GenSeq → GenSeqLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  171. def shift(): A

    Permalink

    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

    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    Definition Classes
    Array
  172. def size: Int

    Permalink
    Definition Classes
    SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  173. def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit

    Permalink
    Definition Classes
    Builder
  174. def sizeHint(coll: TraversableLike[_, _]): Unit

    Permalink
    Definition Classes
    Builder
  175. def sizeHint(size: Int): Unit

    Permalink
    Definition Classes
    Builder
  176. def sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit

    Permalink
    Definition Classes
    Builder
  177. def slice(from: Int, until: Int): WrappedArray[A]

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  178. def sliding(size: Int, step: Int): collection.Iterator[WrappedArray[A]]

    Permalink
    Definition Classes
    IterableLike
  179. def sliding(size: Int): collection.Iterator[WrappedArray[A]]

    Permalink
    Definition Classes
    IterableLike
  180. def sort(compareFn: Function2[A, A, Int] = ???): Array[A]

    Permalink

    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

    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    Definition Classes
    Array
  181. def sortBy[B](f: (A) ⇒ B)(implicit ord: math.Ordering[B]): WrappedArray[A]

    Permalink
    Definition Classes
    SeqLike
  182. def sortWith(lt: (A, A) ⇒ Boolean): WrappedArray[A]

    Permalink
    Definition Classes
    SeqLike
  183. def sorted[B >: A](implicit ord: math.Ordering[B]): WrappedArray[A]

    Permalink
    Definition Classes
    SeqLike
  184. def span(p: (A) ⇒ Boolean): (WrappedArray[A], WrappedArray[A])

    Permalink
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  185. def splice(index: Int, deleteCount: Int, items: A*): Array[A]

    Permalink

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

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

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

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

    index

    Index where to start changes

    deleteCount

    Number of elements to delete from index

    items

    Elements to insert at index

    returns

    An array of the elements that were deleted

    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    Definition Classes
    Array
  186. def splitAt(n: Int): (WrappedArray[A], WrappedArray[A])

    Permalink
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  187. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Permalink
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  188. def startsWith[B](that: GenSeq[B]): Boolean

    Permalink
    Definition Classes
    GenSeqLike
  189. def stringPrefix: String

    Permalink
    Definition Classes
    WrappedArray → BufferLike → TraversableLike → GenTraversableLike
    Annotations
    @inline()
  190. def subSequence(start: Int, end: Int): CharSequence

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to SeqCharSequence performed by method SeqCharSequence in scala.Predef. This conversion will take place only if A is a subclass of Char (A <: Char).
    Definition Classes
    SeqCharSequence → CharSequence
  191. def sum[B >: A](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  192. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  193. def tail: WrappedArray[A]

    Permalink
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  194. def tails: collection.Iterator[WrappedArray[A]]

    Permalink
    Definition Classes
    TraversableLike
  195. def take(n: Int): WrappedArray[A]

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  196. def takeRight(n: Int): WrappedArray[A]

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike
  197. def takeWhile(p: (A) ⇒ Boolean): WrappedArray[A]

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  198. def thisCollection: collection.mutable.IndexedSeq[A]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  199. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, A, Col[A]]): Col[A]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  200. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  201. def toBuffer[A1 >: A]: Buffer[A1]

    Permalink
    Definition Classes
    IndexedSeqLike → TraversableOnce → GenTraversableOnce
  202. def toCollection(repr: WrappedArray[A]): collection.mutable.IndexedSeq[A]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  203. def toIndexedSeq: collection.immutable.IndexedSeq[A]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  204. def toIterable: collection.Iterable[A]

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  205. def toIterator: collection.Iterator[A]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  206. def toList: List[A]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  207. def toLocaleString(): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    Definition Classes
    Object
  208. def toMap[T, U](implicit ev: <:<[A, (T, U)]): Map[T, U]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  209. def toParArray: ParArray[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to CollectionsHaveToParArray[WrappedArray[A], T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (WrappedArray[A]) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  210. def toSeq: collection.Seq[A]

    Permalink
    Definition Classes
    SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  211. def toSet[B >: A]: Set[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  212. def toStream: collection.immutable.Stream[A]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  213. def toString(): String

    Permalink
    Definition Classes
    SeqLike → TraversableLike → Any
  214. def toTraversable: collection.Traversable[A]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  215. def toVector: Vector[A]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  216. def transform(f: (A) ⇒ A): WrappedArray.this.type

    Permalink
    Definition Classes
    SeqLike
  217. def transpose[B](implicit asTraversable: (A) ⇒ GenTraversableOnce[B]): WrappedArray[WrappedArray[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  218. def trimEnd(n: Int): Unit

    Permalink
    Definition Classes
    BufferLike
  219. def trimStart(n: Int): Unit

    Permalink
    Definition Classes
    BufferLike
  220. def union[B >: A, That](that: GenSeq[B])(implicit bf: CanBuildFrom[WrappedArray[A], B, That]): That

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  221. def unshift(items: A*): Int

    Permalink

    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

    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    Definition Classes
    Array
  222. def unzip[A1, A2](implicit asPair: (A) ⇒ (A1, A2)): (WrappedArray[A1], WrappedArray[A2])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  223. def unzip3[A1, A2, A3](implicit asTriple: (A) ⇒ (A1, A2, A3)): (WrappedArray[A1], WrappedArray[A2], WrappedArray[A3])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  224. def update(index: Int, elem: A): Unit

    Permalink
    Definition Classes
    WrappedArray → IndexedSeqLike → BufferLike → SeqLike
    Annotations
    @inline()
  225. def updated[B >: A, That](index: Int, elem: B)(implicit bf: CanBuildFrom[WrappedArray[A], B, That]): That

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  226. def valueOf(): scala.Any

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    Definition Classes
    Object
  227. def view(from: Int, until: Int): IndexedSeqView[A, WrappedArray[A]]

    Permalink
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  228. def view: IndexedSeqView[A, WrappedArray[A]]

    Permalink
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  229. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  232. def withFilter(p: (A) ⇒ Boolean): FilterMonadic[A, WrappedArray[A]]

    Permalink
    Definition Classes
    TraversableLike → FilterMonadic
  233. def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[WrappedArray[A], (A1, B), That]): That

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  234. def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[WrappedArray[A], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  235. def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[WrappedArray[A], (A1, Int), That]): That

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  236. def [B](y: B): (WrappedArray[A], B)

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

Shadowed Implicit Value Members

  1. def apply(index: Int): A

    Permalink

    Access the element at the given index.

    Access the element at the given index.

    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    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:
    (wrappedArray: Array[A]).apply(index)
    Definition Classes
    Array
    Annotations
    @JSBracketAccess()
  2. def filter(p: (A) ⇒ Boolean): collection.TraversableOnce[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to MonadOps[A] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (wrappedArray: MonadOps[A]).filter(p)
    Definition Classes
    MonadOps
  3. def flatMap[B](f: (A) ⇒ GenTraversableOnce[B]): collection.TraversableOnce[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to MonadOps[A] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (wrappedArray: MonadOps[A]).flatMap(f)
    Definition Classes
    MonadOps
  4. def length(): Int

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to SeqCharSequence performed by method SeqCharSequence in scala.Predef. This conversion will take place only if A is a subclass of Char (A <: Char).
    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:
    (wrappedArray: SeqCharSequence).length()
    Definition Classes
    SeqCharSequence → CharSequence
  5. def length: Int

    Permalink

    Length of the array.

    Length of the array.

    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    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:
    (wrappedArray: Array[A]).length
    Definition Classes
    Array
  6. def map[B](f: (A) ⇒ B): collection.TraversableOnce[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to MonadOps[A] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (wrappedArray: MonadOps[A]).map(f)
    Definition Classes
    MonadOps
  7. def toString(): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to SeqCharSequence performed by method SeqCharSequence in scala.Predef. This conversion will take place only if A is a subclass of Char (A <: Char).
    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:
    (wrappedArray: SeqCharSequence).toString()
    Definition Classes
    SeqCharSequence → CharSequence → AnyRef → Any
  8. def update(index: Int, value: A): Unit

    Permalink

    Set the element at the given index.

    Set the element at the given index.

    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to Array[A] performed by method toJSArray in scala.scalajs.js.WrappedArray.
    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:
    (wrappedArray: Array[A]).update(index, value)
    Definition Classes
    Array
    Annotations
    @JSBracketAccess()
  9. def withFilter(p: (A) ⇒ Boolean): collection.Iterator[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedArray[A] to MonadOps[A] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (wrappedArray: MonadOps[A]).withFilter(p)
    Definition Classes
    MonadOps

Deprecated Value Members

  1. def <<(cmd: Message[A]): Unit

    Permalink
    Definition Classes
    BufferLike → Scriptable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Scripting is deprecated.

  2. def readOnly: collection.Seq[A]

    Permalink
    Definition Classes
    BufferLike
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) The returned sequence changes as this buffer is mutated. For an immutable copy, use, e.g., toList.

Inherited from Builder[A, WrappedArray[A]]

Inherited from ArrayLike[A, WrappedArray[A]]

Inherited from IndexedSeqOptimized[A, WrappedArray[A]]

Inherited from IndexedSeqOptimized[A, WrappedArray[A]]

Inherited from collection.mutable.IndexedSeq[A]

Inherited from IndexedSeqLike[A, WrappedArray[A]]

Inherited from collection.IndexedSeq[A]

Inherited from IndexedSeqLike[A, WrappedArray[A]]

Inherited from AbstractBuffer[A]

Inherited from Buffer[A]

Inherited from BufferLike[A, WrappedArray[A]]

Inherited from Subtractable[A, WrappedArray[A]]

Inherited from Scriptable[A]

Inherited from Shrinkable[A]

Inherited from Growable[A]

Inherited from Clearable

Inherited from AbstractSeq[A]

Inherited from collection.mutable.Seq[A]

Inherited from SeqLike[A, WrappedArray[A]]

Inherited from collection.mutable.Cloneable[WrappedArray[A]]

Inherited from Cloneable

Inherited from java.lang.Cloneable

Inherited from collection.mutable.Iterable[A]

Inherited from collection.mutable.Traversable[A]

Inherited from Mutable

Inherited from AbstractSeq[A]

Inherited from collection.Seq[A]

Inherited from SeqLike[A, WrappedArray[A]]

Inherited from GenSeq[A]

Inherited from GenSeqLike[A, WrappedArray[A]]

Inherited from PartialFunction[Int, A]

Inherited from (Int) ⇒ A

Inherited from AbstractIterable[A]

Inherited from collection.Iterable[A]

Inherited from IterableLike[A, WrappedArray[A]]

Inherited from Equals

Inherited from GenIterable[A]

Inherited from GenIterableLike[A, WrappedArray[A]]

Inherited from AbstractTraversable[A]

Inherited from collection.Traversable[A]

Inherited from GenTraversable[A]

Inherited from GenericTraversableTemplate[A, WrappedArray]

Inherited from TraversableLike[A, WrappedArray[A]]

Inherited from GenTraversableLike[A, WrappedArray[A]]

Inherited from Parallelizable[A, ParSeq[A]]

Inherited from collection.TraversableOnce[A]

Inherited from GenTraversableOnce[A]

Inherited from FilterMonadic[A, WrappedArray[A]]

Inherited from HasNewBuilder[A, scala.scalajs.js.WrappedArray[A] @scala.annotation.unchecked.uncheckedVariance]

Inherited from AnyRef

Inherited from scala.Any

Inherited by implicit conversion SeqCharSequence from WrappedArray[A] to SeqCharSequence

Inherited by implicit conversion toJSArray from WrappedArray[A] to Array[A]

Inherited by implicit conversion CollectionsHaveToParArray from WrappedArray[A] to CollectionsHaveToParArray[WrappedArray[A], T]

Inherited by implicit conversion MonadOps from WrappedArray[A] to MonadOps[A]

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

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

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

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

Inherited by implicit conversion alternateImplicit from WrappedArray[A] to ForceImplicitAmbiguity

Ungrouped