Class/Object

scala

Array

Related Docs: object Array | package scala

Permalink

final class Array[T] extends java.io.Serializable with java.lang.Cloneable

Arrays are mutable, indexed collections of values. Array[T] is Scala's representation for Java's T[].

val numbers = Array(1, 2, 3, 4)
val first = numbers(0) // read the first element
numbers(3) = 100 // replace the 4th array element with 100
val biggerNumbers = numbers.map(_ * 2) // multiply all numbers by two

Arrays make use of two common pieces of Scala syntactic sugar, shown on lines 2 and 3 of the above example code. Line 2 is translated into a call to apply(Int), while line 3 is translated into a call to update(Int, T).

Two implicit conversions exist in scala.Predef that are frequently applied to arrays: a conversion to scala.collection.mutable.ArrayOps (shown on line 4 of the example above) and a conversion to scala.collection.mutable.WrappedArray (a subtype of scala.collection.Seq). Both types make available many of the standard operations found in the Scala collections API. The conversion to ArrayOps is temporary, as all operations defined on ArrayOps return an Array, while the conversion to WrappedArray is permanent as all operations return a WrappedArray.

The conversion to ArrayOps takes priority over the conversion to WrappedArray. For instance, consider the following code:

val arr = Array(1, 2, 3)
val arrReversed = arr.reverse
val seqReversed : Seq[Int] = arr.reverse

Value arrReversed will be of type Array[Int], with an implicit conversion to ArrayOps occurring to perform the reverse operation. The value of seqReversed, on the other hand, will be computed by converting to WrappedArray first and invoking the variant of reverse that returns another WrappedArray.

Source
Array.scala
Version

1.0

See also

"The Scala 2.8 Collections' API" section on Array by Martin Odersky for more information.

"Scala 2.8 Arrays" the Scala Improvement Document detailing arrays since Scala 2.8.

Scala Language Specification, for in-depth information on the transformations the Scala compiler makes on Arrays (Sections 6.6 and 6.15 respectively.)

Linear Supertypes
java.lang.Cloneable, java.io.Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Array
  2. Cloneable
  3. Serializable
  4. AnyRef
  5. Any
Implicitly
  1. by _unitArrayOps
  2. by _shortArrayOps
  3. by _refArrayOps
  4. by _longArrayOps
  5. by _intArrayOps
  6. by _floatArrayOps
  7. by _doubleArrayOps
  8. by _charArrayOps
  9. by _byteArrayOps
  10. by _booleanArrayOps
  11. by genericArrayOps
  12. by ArrayCharSequence
  13. by any2stringadd
  14. by StringFormat
  15. by Ensuring
  16. by ArrowAssoc
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Array(_length: Int)

    Permalink

Value Members

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

    Permalink

    Test two objects for inequality.

    Test two objects for inequality.

    returns

    true if !(this == that), false otherwise.

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

    Permalink

    Equivalent to x.hashCode except for boxed numeric types and null.

    Equivalent to x.hashCode except for boxed numeric types and null. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. For null returns a hashcode where null.hashCode throws a NullPointerException.

    returns

    a hash value consistent with ==

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

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

    Permalink

    [use case] Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand.

    [use case]

    Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand. The element type of the array is the most specific superclass encompassing the element types of the two operands.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = List(2)
    b: List[Int] = List(2)
    
    scala> val c = a ++ b
    c: List[Int] = List(1, 2)
    
    scala> val d = List('a')
    d: List[Char] = List(a)
    
    scala> val e = c ++ d
    e: List[AnyVal] = List(1, 2, a)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Unit], B, That]): That

  5. def ++[B](that: GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand.

    [use case]

    Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand. The element type of the array is the most specific superclass encompassing the element types of the two operands.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = List(2)
    b: List[Int] = List(2)
    
    scala> val c = a ++ b
    c: List[Int] = List(1, 2)
    
    scala> val d = List('a')
    d: List[Char] = List(a)
    
    scala> val e = c ++ d
    e: List[AnyVal] = List(1, 2, a)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Short], B, That]): That

  6. def ++[B](that: GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand.

    [use case]

    Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand. The element type of the array is the most specific superclass encompassing the element types of the two operands.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = List(2)
    b: List[Int] = List(2)
    
    scala> val c = a ++ b
    c: List[Int] = List(1, 2)
    
    scala> val d = List('a')
    d: List[Char] = List(a)
    
    scala> val e = c ++ d
    e: List[AnyVal] = List(1, 2, a)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[T], B, That]): That

  7. def ++[B](that: GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand.

    [use case]

    Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand. The element type of the array is the most specific superclass encompassing the element types of the two operands.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = List(2)
    b: List[Int] = List(2)
    
    scala> val c = a ++ b
    c: List[Int] = List(1, 2)
    
    scala> val d = List('a')
    d: List[Char] = List(a)
    
    scala> val e = c ++ d
    e: List[AnyVal] = List(1, 2, a)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Long], B, That]): That

  8. def ++[B](that: GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand.

    [use case]

    Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand. The element type of the array is the most specific superclass encompassing the element types of the two operands.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = List(2)
    b: List[Int] = List(2)
    
    scala> val c = a ++ b
    c: List[Int] = List(1, 2)
    
    scala> val d = List('a')
    d: List[Char] = List(a)
    
    scala> val e = c ++ d
    e: List[AnyVal] = List(1, 2, a)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Int], B, That]): That

  9. def ++[B](that: GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand.

    [use case]

    Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand. The element type of the array is the most specific superclass encompassing the element types of the two operands.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = List(2)
    b: List[Int] = List(2)
    
    scala> val c = a ++ b
    c: List[Int] = List(1, 2)
    
    scala> val d = List('a')
    d: List[Char] = List(a)
    
    scala> val e = c ++ d
    e: List[AnyVal] = List(1, 2, a)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Float], B, That]): That

  10. def ++[B](that: GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand.

    [use case]

    Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand. The element type of the array is the most specific superclass encompassing the element types of the two operands.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = List(2)
    b: List[Int] = List(2)
    
    scala> val c = a ++ b
    c: List[Int] = List(1, 2)
    
    scala> val d = List('a')
    d: List[Char] = List(a)
    
    scala> val e = c ++ d
    e: List[AnyVal] = List(1, 2, a)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Double], B, That]): That

  11. def ++[B](that: GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand.

    [use case]

    Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand. The element type of the array is the most specific superclass encompassing the element types of the two operands.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = List(2)
    b: List[Int] = List(2)
    
    scala> val c = a ++ b
    c: List[Int] = List(1, 2)
    
    scala> val d = List('a')
    d: List[Char] = List(a)
    
    scala> val e = c ++ d
    e: List[AnyVal] = List(1, 2, a)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Char], B, That]): That

  12. def ++[B](that: GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand.

    [use case]

    Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand. The element type of the array is the most specific superclass encompassing the element types of the two operands.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = List(2)
    b: List[Int] = List(2)
    
    scala> val c = a ++ b
    c: List[Int] = List(1, 2)
    
    scala> val d = List('a')
    d: List[Char] = List(a)
    
    scala> val e = c ++ d
    e: List[AnyVal] = List(1, 2, a)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Byte], B, That]): That

  13. def ++[B](that: GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand.

    [use case]

    Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand. The element type of the array is the most specific superclass encompassing the element types of the two operands.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = List(2)
    b: List[Int] = List(2)
    
    scala> val c = a ++ b
    c: List[Int] = List(1, 2)
    
    scala> val d = List('a')
    d: List[Char] = List(a)
    
    scala> val e = c ++ d
    e: List[AnyVal] = List(1, 2, a)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Boolean], B, That]): That

  14. def ++[B](that: GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand.

    [use case]

    Returns a new array containing the elements from the left hand operand followed by the elements from the right hand operand. The element type of the array is the most specific superclass encompassing the element types of the two operands.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = List(2)
    b: List[Int] = List(2)
    
    scala> val c = a ++ b
    c: List[Int] = List(1, 2)
    
    scala> val d = List('a')
    d: List[Char] = List(a)
    
    scala> val e = c ++ d
    e: List[AnyVal] = List(1, 2, a)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[T], B, That]): That

  15. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[Array[Unit], B, That]): That

    Permalink

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)

    This overload exists because: for the implementation of ++: we should reuse that of ++ because many collections override it with more efficient versions.

    Since TraversableOnce has no ++ method, we have to implement that directly, but Traversable and down can use the overload.

    B

    the element type of the returned collection.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    that

    the traversable to append.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That which contains all elements of this mutable indexed sequence followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableLike
  16. def ++:[B](that: collection.TraversableOnce[B]): Array[B]

    Permalink

    [use case] As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    [use case]

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableLike
    Full Signature

    def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[Array[Unit], B, That]): That

  17. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[Array[Short], B, That]): That

    Permalink

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)

    This overload exists because: for the implementation of ++: we should reuse that of ++ because many collections override it with more efficient versions.

    Since TraversableOnce has no ++ method, we have to implement that directly, but Traversable and down can use the overload.

    B

    the element type of the returned collection.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    that

    the traversable to append.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That which contains all elements of this mutable indexed sequence followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableLike
  18. def ++:[B](that: collection.TraversableOnce[B]): Array[B]

    Permalink

    [use case] As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    [use case]

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableLike
    Full Signature

    def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[Array[Short], B, That]): That

  19. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[Array[T], B, That]): That

    Permalink

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)

    This overload exists because: for the implementation of ++: we should reuse that of ++ because many collections override it with more efficient versions.

    Since TraversableOnce has no ++ method, we have to implement that directly, but Traversable and down can use the overload.

    B

    the element type of the returned collection.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    that

    the traversable to append.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That which contains all elements of this mutable indexed sequence followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    TraversableLike
  20. def ++:[B](that: collection.TraversableOnce[B]): Array[B]

    Permalink

    [use case] As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    [use case]

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    TraversableLike
    Full Signature

    def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[Array[T], B, That]): That

  21. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[Array[Long], B, That]): That

    Permalink

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)

    This overload exists because: for the implementation of ++: we should reuse that of ++ because many collections override it with more efficient versions.

    Since TraversableOnce has no ++ method, we have to implement that directly, but Traversable and down can use the overload.

    B

    the element type of the returned collection.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    that

    the traversable to append.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That which contains all elements of this mutable indexed sequence followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableLike
  22. def ++:[B](that: collection.TraversableOnce[B]): Array[B]

    Permalink

    [use case] As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    [use case]

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableLike
    Full Signature

    def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[Array[Long], B, That]): That

  23. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[Array[Int], B, That]): That

    Permalink

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)

    This overload exists because: for the implementation of ++: we should reuse that of ++ because many collections override it with more efficient versions.

    Since TraversableOnce has no ++ method, we have to implement that directly, but Traversable and down can use the overload.

    B

    the element type of the returned collection.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    that

    the traversable to append.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That which contains all elements of this mutable indexed sequence followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableLike
  24. def ++:[B](that: collection.TraversableOnce[B]): Array[B]

    Permalink

    [use case] As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    [use case]

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableLike
    Full Signature

    def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[Array[Int], B, That]): That

  25. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[Array[Float], B, That]): That

    Permalink

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)

    This overload exists because: for the implementation of ++: we should reuse that of ++ because many collections override it with more efficient versions.

    Since TraversableOnce has no ++ method, we have to implement that directly, but Traversable and down can use the overload.

    B

    the element type of the returned collection.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    that

    the traversable to append.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That which contains all elements of this mutable indexed sequence followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableLike
  26. def ++:[B](that: collection.TraversableOnce[B]): Array[B]

    Permalink

    [use case] As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    [use case]

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableLike
    Full Signature

    def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[Array[Float], B, That]): That

  27. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[Array[Double], B, That]): That

    Permalink

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)

    This overload exists because: for the implementation of ++: we should reuse that of ++ because many collections override it with more efficient versions.

    Since TraversableOnce has no ++ method, we have to implement that directly, but Traversable and down can use the overload.

    B

    the element type of the returned collection.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    that

    the traversable to append.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That which contains all elements of this mutable indexed sequence followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableLike
  28. def ++:[B](that: collection.TraversableOnce[B]): Array[B]

    Permalink

    [use case] As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    [use case]

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableLike
    Full Signature

    def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[Array[Double], B, That]): That

  29. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[Array[Char], B, That]): That

    Permalink

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)

    This overload exists because: for the implementation of ++: we should reuse that of ++ because many collections override it with more efficient versions.

    Since TraversableOnce has no ++ method, we have to implement that directly, but Traversable and down can use the overload.

    B

    the element type of the returned collection.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    that

    the traversable to append.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That which contains all elements of this mutable indexed sequence followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableLike
  30. def ++:[B](that: collection.TraversableOnce[B]): Array[B]

    Permalink

    [use case] As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    [use case]

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableLike
    Full Signature

    def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[Array[Char], B, That]): That

  31. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[Array[Byte], B, That]): That

    Permalink

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)

    This overload exists because: for the implementation of ++: we should reuse that of ++ because many collections override it with more efficient versions.

    Since TraversableOnce has no ++ method, we have to implement that directly, but Traversable and down can use the overload.

    B

    the element type of the returned collection.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    that

    the traversable to append.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That which contains all elements of this mutable indexed sequence followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableLike
  32. def ++:[B](that: collection.TraversableOnce[B]): Array[B]

    Permalink

    [use case] As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    [use case]

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableLike
    Full Signature

    def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[Array[Byte], B, That]): That

  33. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[Array[Boolean], B, That]): That

    Permalink

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)

    This overload exists because: for the implementation of ++: we should reuse that of ++ because many collections override it with more efficient versions.

    Since TraversableOnce has no ++ method, we have to implement that directly, but Traversable and down can use the overload.

    B

    the element type of the returned collection.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    that

    the traversable to append.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That which contains all elements of this mutable indexed sequence followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableLike
  34. def ++:[B](that: collection.TraversableOnce[B]): Array[B]

    Permalink

    [use case] As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    [use case]

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableLike
    Full Signature

    def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[Array[Boolean], B, That]): That

  35. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[Array[T], B, That]): That

    Permalink

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)

    This overload exists because: for the implementation of ++: we should reuse that of ++ because many collections override it with more efficient versions.

    Since TraversableOnce has no ++ method, we have to implement that directly, but Traversable and down can use the overload.

    B

    the element type of the returned collection.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    that

    the traversable to append.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That which contains all elements of this mutable indexed sequence followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    TraversableLike
  36. def ++:[B](that: collection.TraversableOnce[B]): Array[B]

    Permalink

    [use case] As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    [use case]

    As with ++, returns a new collection containing the elements from the left operand followed by the elements from the right operand.

    It differs from ++ in that the right operand determines the type of the resulting collection rather than the left one. Mnemonic: the COLon is on the side of the new COLlection type.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = LinkedList(2)
    y: scala.collection.mutable.LinkedList[Int] = LinkedList(2)
    
    scala> val z = x ++: y
    z: scala.collection.mutable.LinkedList[Int] = LinkedList(1, 2)
    B

    the element type of the returned collection.

    that

    the traversable to append.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    TraversableLike
    Full Signature

    def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[Array[T], B, That]): That

  37. def +:[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    ArrayOps
  38. def +:[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    ArrayOps
  39. def +:[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    ArrayOps
  40. def +:[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    ArrayOps
  41. def +:[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    ArrayOps
  42. def +:[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    ArrayOps
  43. def +:[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    ArrayOps
  44. def +:[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    ArrayOps
  45. def +:[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    ArrayOps
  46. def +:[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    ArrayOps
  47. def +:[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    ArrayOps
  48. def ->[B](y: B): (Array[T], B)

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

    Permalink

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

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

    Note: /: is alternate syntax for foldLeft; z /: xs is the same as xs foldLeft z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (5 /: a)(_+_)
    b: Int = 15
    
    scala> val c = (5 /: a)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableOnceGenTraversableOnce
  50. def /:[B](z: B)(op: (B, Short) ⇒ B): B

    Permalink

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

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

    Note: /: is alternate syntax for foldLeft; z /: xs is the same as xs foldLeft z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (5 /: a)(_+_)
    b: Int = 15
    
    scala> val c = (5 /: a)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableOnceGenTraversableOnce
  51. def /:[B](z: B)(op: (B, Long) ⇒ B): B

    Permalink

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

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

    Note: /: is alternate syntax for foldLeft; z /: xs is the same as xs foldLeft z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (5 /: a)(_+_)
    b: Int = 15
    
    scala> val c = (5 /: a)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableOnceGenTraversableOnce
  52. def /:[B](z: B)(op: (B, Int) ⇒ B): B

    Permalink

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

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

    Note: /: is alternate syntax for foldLeft; z /: xs is the same as xs foldLeft z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (5 /: a)(_+_)
    b: Int = 15
    
    scala> val c = (5 /: a)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableOnceGenTraversableOnce
  53. def /:[B](z: B)(op: (B, Float) ⇒ B): B

    Permalink

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

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

    Note: /: is alternate syntax for foldLeft; z /: xs is the same as xs foldLeft z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (5 /: a)(_+_)
    b: Int = 15
    
    scala> val c = (5 /: a)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableOnceGenTraversableOnce
  54. def /:[B](z: B)(op: (B, Double) ⇒ B): B

    Permalink

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

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

    Note: /: is alternate syntax for foldLeft; z /: xs is the same as xs foldLeft z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (5 /: a)(_+_)
    b: Int = 15
    
    scala> val c = (5 /: a)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableOnceGenTraversableOnce
  55. def /:[B](z: B)(op: (B, Char) ⇒ B): B

    Permalink

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

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

    Note: /: is alternate syntax for foldLeft; z /: xs is the same as xs foldLeft z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (5 /: a)(_+_)
    b: Int = 15
    
    scala> val c = (5 /: a)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableOnceGenTraversableOnce
  56. def /:[B](z: B)(op: (B, Byte) ⇒ B): B

    Permalink

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

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

    Note: /: is alternate syntax for foldLeft; z /: xs is the same as xs foldLeft z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (5 /: a)(_+_)
    b: Int = 15
    
    scala> val c = (5 /: a)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableOnceGenTraversableOnce
  57. def /:[B](z: B)(op: (B, Boolean) ⇒ B): B

    Permalink

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

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

    Note: /: is alternate syntax for foldLeft; z /: xs is the same as xs foldLeft z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (5 /: a)(_+_)
    b: Int = 15
    
    scala> val c = (5 /: a)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableOnceGenTraversableOnce
  58. def :+[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    ArrayOps
  59. def :+[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    ArrayOps
  60. def :+[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    ArrayOps
  61. def :+[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    ArrayOps
  62. def :+[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    ArrayOps
  63. def :+[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    ArrayOps
  64. def :+[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    ArrayOps
  65. def :+[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    ArrayOps
  66. def :+[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    ArrayOps
  67. def :+[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    ArrayOps
  68. def :+[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    ArrayOps
  69. def :\[B](z: B)(op: (Unit, B) ⇒ B): B

    Permalink

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

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

    Note: :\ is alternate syntax for foldRight; xs :\ z is the same as xs foldRight z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (a :\ 5)(_+_)
    b: Int = 15
    
    scala> val c = (a :\ 5)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value

    op

    the binary operator

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableOnceGenTraversableOnce
  70. def :\[B](z: B)(op: (Short, B) ⇒ B): B

    Permalink

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

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

    Note: :\ is alternate syntax for foldRight; xs :\ z is the same as xs foldRight z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (a :\ 5)(_+_)
    b: Int = 15
    
    scala> val c = (a :\ 5)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value

    op

    the binary operator

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableOnceGenTraversableOnce
  71. def :\[B](z: B)(op: (Long, B) ⇒ B): B

    Permalink

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

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

    Note: :\ is alternate syntax for foldRight; xs :\ z is the same as xs foldRight z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (a :\ 5)(_+_)
    b: Int = 15
    
    scala> val c = (a :\ 5)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value

    op

    the binary operator

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableOnceGenTraversableOnce
  72. def :\[B](z: B)(op: (Int, B) ⇒ B): B

    Permalink

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

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

    Note: :\ is alternate syntax for foldRight; xs :\ z is the same as xs foldRight z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (a :\ 5)(_+_)
    b: Int = 15
    
    scala> val c = (a :\ 5)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value

    op

    the binary operator

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableOnceGenTraversableOnce
  73. def :\[B](z: B)(op: (Float, B) ⇒ B): B

    Permalink

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

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

    Note: :\ is alternate syntax for foldRight; xs :\ z is the same as xs foldRight z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (a :\ 5)(_+_)
    b: Int = 15
    
    scala> val c = (a :\ 5)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value

    op

    the binary operator

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableOnceGenTraversableOnce
  74. def :\[B](z: B)(op: (Double, B) ⇒ B): B

    Permalink

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

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

    Note: :\ is alternate syntax for foldRight; xs :\ z is the same as xs foldRight z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (a :\ 5)(_+_)
    b: Int = 15
    
    scala> val c = (a :\ 5)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value

    op

    the binary operator

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableOnceGenTraversableOnce
  75. def :\[B](z: B)(op: (Char, B) ⇒ B): B

    Permalink

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

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

    Note: :\ is alternate syntax for foldRight; xs :\ z is the same as xs foldRight z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (a :\ 5)(_+_)
    b: Int = 15
    
    scala> val c = (a :\ 5)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value

    op

    the binary operator

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableOnceGenTraversableOnce
  76. def :\[B](z: B)(op: (Byte, B) ⇒ B): B

    Permalink

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

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

    Note: :\ is alternate syntax for foldRight; xs :\ z is the same as xs foldRight z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (a :\ 5)(_+_)
    b: Int = 15
    
    scala> val c = (a :\ 5)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value

    op

    the binary operator

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableOnceGenTraversableOnce
  77. def :\[B](z: B)(op: (Boolean, B) ⇒ B): B

    Permalink

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

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

    Note: :\ is alternate syntax for foldRight; xs :\ z is the same as xs foldRight z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (a :\ 5)(_+_)
    b: Int = 15
    
    scala> val c = (a :\ 5)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value

    op

    the binary operator

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableOnceGenTraversableOnce
  78. final def ==(arg0: Any): Boolean

    Permalink

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  79. def aggregate[B](z: ⇒ B)(seqop: (B, Unit) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink

    Aggregates the results of applying an operator to subsequent elements.

    Aggregates the results of applying an operator to subsequent elements.

    This is a more general form of fold and reduce. It has similar semantics, but does not require the result to be a supertype of the element type. It traverses the elements in different partitions sequentially, using seqop to update the result, and then applies combop to results from different partitions. The implementation of this operation may operate on an arbitrary number of collection partitions, so combop may be invoked an arbitrary number of times.

    For example, one might want to process some elements and then produce a Set. In this case, seqop would process an element and append it to the list, while combop would concatenate two lists from different partitions together. The initial value z would be an empty set.

    pc.aggregate(Set[Int]())(_ += process(_), _ ++ _)

    Another example is calculating geometric mean from a collection of doubles (one would typically require big doubles for this).

    B

    the type of accumulated results

    z

    the initial value for the accumulated result of the partition - this will typically be the neutral element for the seqop operator (e.g. Nil for list concatenation or 0 for summation) and may be evaluated more than once

    seqop

    an operator used to accumulate results within a partition

    combop

    an associative operator used to combine results from different partitions

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableOnceGenTraversableOnce
  80. def aggregate[B](z: ⇒ B)(seqop: (B, Short) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink

    Aggregates the results of applying an operator to subsequent elements.

    Aggregates the results of applying an operator to subsequent elements.

    This is a more general form of fold and reduce. It has similar semantics, but does not require the result to be a supertype of the element type. It traverses the elements in different partitions sequentially, using seqop to update the result, and then applies combop to results from different partitions. The implementation of this operation may operate on an arbitrary number of collection partitions, so combop may be invoked an arbitrary number of times.

    For example, one might want to process some elements and then produce a Set. In this case, seqop would process an element and append it to the list, while combop would concatenate two lists from different partitions together. The initial value z would be an empty set.

    pc.aggregate(Set[Int]())(_ += process(_), _ ++ _)

    Another example is calculating geometric mean from a collection of doubles (one would typically require big doubles for this).

    B

    the type of accumulated results

    z

    the initial value for the accumulated result of the partition - this will typically be the neutral element for the seqop operator (e.g. Nil for list concatenation or 0 for summation) and may be evaluated more than once

    seqop

    an operator used to accumulate results within a partition

    combop

    an associative operator used to combine results from different partitions

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableOnceGenTraversableOnce
  81. def aggregate[B](z: ⇒ B)(seqop: (B, Long) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink

    Aggregates the results of applying an operator to subsequent elements.

    Aggregates the results of applying an operator to subsequent elements.

    This is a more general form of fold and reduce. It has similar semantics, but does not require the result to be a supertype of the element type. It traverses the elements in different partitions sequentially, using seqop to update the result, and then applies combop to results from different partitions. The implementation of this operation may operate on an arbitrary number of collection partitions, so combop may be invoked an arbitrary number of times.

    For example, one might want to process some elements and then produce a Set. In this case, seqop would process an element and append it to the list, while combop would concatenate two lists from different partitions together. The initial value z would be an empty set.

    pc.aggregate(Set[Int]())(_ += process(_), _ ++ _)

    Another example is calculating geometric mean from a collection of doubles (one would typically require big doubles for this).

    B

    the type of accumulated results

    z

    the initial value for the accumulated result of the partition - this will typically be the neutral element for the seqop operator (e.g. Nil for list concatenation or 0 for summation) and may be evaluated more than once

    seqop

    an operator used to accumulate results within a partition

    combop

    an associative operator used to combine results from different partitions

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableOnceGenTraversableOnce
  82. def aggregate[B](z: ⇒ B)(seqop: (B, Int) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink

    Aggregates the results of applying an operator to subsequent elements.

    Aggregates the results of applying an operator to subsequent elements.

    This is a more general form of fold and reduce. It has similar semantics, but does not require the result to be a supertype of the element type. It traverses the elements in different partitions sequentially, using seqop to update the result, and then applies combop to results from different partitions. The implementation of this operation may operate on an arbitrary number of collection partitions, so combop may be invoked an arbitrary number of times.

    For example, one might want to process some elements and then produce a Set. In this case, seqop would process an element and append it to the list, while combop would concatenate two lists from different partitions together. The initial value z would be an empty set.

    pc.aggregate(Set[Int]())(_ += process(_), _ ++ _)

    Another example is calculating geometric mean from a collection of doubles (one would typically require big doubles for this).

    B

    the type of accumulated results

    z

    the initial value for the accumulated result of the partition - this will typically be the neutral element for the seqop operator (e.g. Nil for list concatenation or 0 for summation) and may be evaluated more than once

    seqop

    an operator used to accumulate results within a partition

    combop

    an associative operator used to combine results from different partitions

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableOnceGenTraversableOnce
  83. def aggregate[B](z: ⇒ B)(seqop: (B, Float) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink

    Aggregates the results of applying an operator to subsequent elements.

    Aggregates the results of applying an operator to subsequent elements.

    This is a more general form of fold and reduce. It has similar semantics, but does not require the result to be a supertype of the element type. It traverses the elements in different partitions sequentially, using seqop to update the result, and then applies combop to results from different partitions. The implementation of this operation may operate on an arbitrary number of collection partitions, so combop may be invoked an arbitrary number of times.

    For example, one might want to process some elements and then produce a Set. In this case, seqop would process an element and append it to the list, while combop would concatenate two lists from different partitions together. The initial value z would be an empty set.

    pc.aggregate(Set[Int]())(_ += process(_), _ ++ _)

    Another example is calculating geometric mean from a collection of doubles (one would typically require big doubles for this).

    B

    the type of accumulated results

    z

    the initial value for the accumulated result of the partition - this will typically be the neutral element for the seqop operator (e.g. Nil for list concatenation or 0 for summation) and may be evaluated more than once

    seqop

    an operator used to accumulate results within a partition

    combop

    an associative operator used to combine results from different partitions

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableOnceGenTraversableOnce
  84. def aggregate[B](z: ⇒ B)(seqop: (B, Double) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink

    Aggregates the results of applying an operator to subsequent elements.

    Aggregates the results of applying an operator to subsequent elements.

    This is a more general form of fold and reduce. It has similar semantics, but does not require the result to be a supertype of the element type. It traverses the elements in different partitions sequentially, using seqop to update the result, and then applies combop to results from different partitions. The implementation of this operation may operate on an arbitrary number of collection partitions, so combop may be invoked an arbitrary number of times.

    For example, one might want to process some elements and then produce a Set. In this case, seqop would process an element and append it to the list, while combop would concatenate two lists from different partitions together. The initial value z would be an empty set.

    pc.aggregate(Set[Int]())(_ += process(_), _ ++ _)

    Another example is calculating geometric mean from a collection of doubles (one would typically require big doubles for this).

    B

    the type of accumulated results

    z

    the initial value for the accumulated result of the partition - this will typically be the neutral element for the seqop operator (e.g. Nil for list concatenation or 0 for summation) and may be evaluated more than once

    seqop

    an operator used to accumulate results within a partition

    combop

    an associative operator used to combine results from different partitions

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableOnceGenTraversableOnce
  85. def aggregate[B](z: ⇒ B)(seqop: (B, Char) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink

    Aggregates the results of applying an operator to subsequent elements.

    Aggregates the results of applying an operator to subsequent elements.

    This is a more general form of fold and reduce. It has similar semantics, but does not require the result to be a supertype of the element type. It traverses the elements in different partitions sequentially, using seqop to update the result, and then applies combop to results from different partitions. The implementation of this operation may operate on an arbitrary number of collection partitions, so combop may be invoked an arbitrary number of times.

    For example, one might want to process some elements and then produce a Set. In this case, seqop would process an element and append it to the list, while combop would concatenate two lists from different partitions together. The initial value z would be an empty set.

    pc.aggregate(Set[Int]())(_ += process(_), _ ++ _)

    Another example is calculating geometric mean from a collection of doubles (one would typically require big doubles for this).

    B

    the type of accumulated results

    z

    the initial value for the accumulated result of the partition - this will typically be the neutral element for the seqop operator (e.g. Nil for list concatenation or 0 for summation) and may be evaluated more than once

    seqop

    an operator used to accumulate results within a partition

    combop

    an associative operator used to combine results from different partitions

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableOnceGenTraversableOnce
  86. def aggregate[B](z: ⇒ B)(seqop: (B, Byte) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink

    Aggregates the results of applying an operator to subsequent elements.

    Aggregates the results of applying an operator to subsequent elements.

    This is a more general form of fold and reduce. It has similar semantics, but does not require the result to be a supertype of the element type. It traverses the elements in different partitions sequentially, using seqop to update the result, and then applies combop to results from different partitions. The implementation of this operation may operate on an arbitrary number of collection partitions, so combop may be invoked an arbitrary number of times.

    For example, one might want to process some elements and then produce a Set. In this case, seqop would process an element and append it to the list, while combop would concatenate two lists from different partitions together. The initial value z would be an empty set.

    pc.aggregate(Set[Int]())(_ += process(_), _ ++ _)

    Another example is calculating geometric mean from a collection of doubles (one would typically require big doubles for this).

    B

    the type of accumulated results

    z

    the initial value for the accumulated result of the partition - this will typically be the neutral element for the seqop operator (e.g. Nil for list concatenation or 0 for summation) and may be evaluated more than once

    seqop

    an operator used to accumulate results within a partition

    combop

    an associative operator used to combine results from different partitions

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableOnceGenTraversableOnce
  87. def aggregate[B](z: ⇒ B)(seqop: (B, Boolean) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink

    Aggregates the results of applying an operator to subsequent elements.

    Aggregates the results of applying an operator to subsequent elements.

    This is a more general form of fold and reduce. It has similar semantics, but does not require the result to be a supertype of the element type. It traverses the elements in different partitions sequentially, using seqop to update the result, and then applies combop to results from different partitions. The implementation of this operation may operate on an arbitrary number of collection partitions, so combop may be invoked an arbitrary number of times.

    For example, one might want to process some elements and then produce a Set. In this case, seqop would process an element and append it to the list, while combop would concatenate two lists from different partitions together. The initial value z would be an empty set.

    pc.aggregate(Set[Int]())(_ += process(_), _ ++ _)

    Another example is calculating geometric mean from a collection of doubles (one would typically require big doubles for this).

    B

    the type of accumulated results

    z

    the initial value for the accumulated result of the partition - this will typically be the neutral element for the seqop operator (e.g. Nil for list concatenation or 0 for summation) and may be evaluated more than once

    seqop

    an operator used to accumulate results within a partition

    combop

    an associative operator used to combine results from different partitions

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableOnceGenTraversableOnce
  88. def apply(i: Int): T

    Permalink

    The element at given index.

    The element at given index.

    Indices start at 0; xs.apply(0) is the first element of array xs. Note the indexing syntax xs(i) is a shorthand for xs.apply(i).

    i

    the index

    returns

    the element at the given index

    Exceptions thrown

    ArrayIndexOutOfBoundsException if i < 0 or length <= i

  89. final def asInstanceOf[T0]: T0

    Permalink

    Cast the receiver object to be of type T0.

    Cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.

    returns

    the receiver object.

    Definition Classes
    Any
    Exceptions thrown

    ClassCastException if the receiver object is not an instance of the erasure of type T0.

  90. def charAt(index: Int): Char

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayCharSequence performed by method ArrayCharSequence in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    ArrayCharSequence → CharSequence
  91. def chars(): IntStream

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayCharSequence performed by method ArrayCharSequence in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    CharSequence
  92. def clone(): Array[T]

    Permalink

    Clone the Array.

    Clone the Array.

    returns

    A clone of the Array.

    Definition Classes
    Array → AnyRef
  93. def codePoints(): IntStream

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayCharSequence performed by method ArrayCharSequence in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    CharSequence
  94. def collect[B](pf: PartialFunction[A, B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a partial function to all elements of this array on which the function is defined.

    [use case]

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

    B

    the element type of the returned collection.

    pf

    the partial function which filters and maps the array.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def collect[B, That](pf: PartialFunction[Unit, B])(implicit bf: CanBuildFrom[Array[Unit], B, That]): That

  95. def collect[B](pf: PartialFunction[A, B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a partial function to all elements of this array on which the function is defined.

    [use case]

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

    B

    the element type of the returned collection.

    pf

    the partial function which filters and maps the array.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def collect[B, That](pf: PartialFunction[Short, B])(implicit bf: CanBuildFrom[Array[Short], B, That]): That

  96. def collect[B](pf: PartialFunction[A, B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a partial function to all elements of this array on which the function is defined.

    [use case]

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

    B

    the element type of the returned collection.

    pf

    the partial function which filters and maps the array.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def collect[B, That](pf: PartialFunction[T, B])(implicit bf: CanBuildFrom[Array[T], B, That]): That

  97. def collect[B](pf: PartialFunction[A, B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a partial function to all elements of this array on which the function is defined.

    [use case]

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

    B

    the element type of the returned collection.

    pf

    the partial function which filters and maps the array.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def collect[B, That](pf: PartialFunction[Long, B])(implicit bf: CanBuildFrom[Array[Long], B, That]): That

  98. def collect[B](pf: PartialFunction[A, B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a partial function to all elements of this array on which the function is defined.

    [use case]

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

    B

    the element type of the returned collection.

    pf

    the partial function which filters and maps the array.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def collect[B, That](pf: PartialFunction[Int, B])(implicit bf: CanBuildFrom[Array[Int], B, That]): That

  99. def collect[B](pf: PartialFunction[A, B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a partial function to all elements of this array on which the function is defined.

    [use case]

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

    B

    the element type of the returned collection.

    pf

    the partial function which filters and maps the array.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def collect[B, That](pf: PartialFunction[Float, B])(implicit bf: CanBuildFrom[Array[Float], B, That]): That

  100. def collect[B](pf: PartialFunction[A, B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a partial function to all elements of this array on which the function is defined.

    [use case]

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

    B

    the element type of the returned collection.

    pf

    the partial function which filters and maps the array.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def collect[B, That](pf: PartialFunction[Double, B])(implicit bf: CanBuildFrom[Array[Double], B, That]): That

  101. def collect[B](pf: PartialFunction[A, B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a partial function to all elements of this array on which the function is defined.

    [use case]

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

    B

    the element type of the returned collection.

    pf

    the partial function which filters and maps the array.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def collect[B, That](pf: PartialFunction[Char, B])(implicit bf: CanBuildFrom[Array[Char], B, That]): That

  102. def collect[B](pf: PartialFunction[A, B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a partial function to all elements of this array on which the function is defined.

    [use case]

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

    B

    the element type of the returned collection.

    pf

    the partial function which filters and maps the array.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def collect[B, That](pf: PartialFunction[Byte, B])(implicit bf: CanBuildFrom[Array[Byte], B, That]): That

  103. def collect[B](pf: PartialFunction[A, B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a partial function to all elements of this array on which the function is defined.

    [use case]

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

    B

    the element type of the returned collection.

    pf

    the partial function which filters and maps the array.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def collect[B, That](pf: PartialFunction[Boolean, B])(implicit bf: CanBuildFrom[Array[Boolean], B, That]): That

  104. def collect[B](pf: PartialFunction[A, B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a partial function to all elements of this array on which the function is defined.

    [use case]

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

    B

    the element type of the returned collection.

    pf

    the partial function which filters and maps the array.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    TraversableLikeGenTraversableLike
    Full Signature

    def collect[B, That](pf: PartialFunction[T, B])(implicit bf: CanBuildFrom[Array[T], B, That]): That

  105. def collectFirst[B](pf: PartialFunction[Unit, B]): Option[B]

    Permalink

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

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

    pf

    the partial function

    returns

    an option value containing pf applied to the first value for which it is defined, or None if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableOnce
    Example:
    1. Seq("a", 1, 5L).collectFirst({ case x: Int => x*10 }) = Some(10)

  106. def collectFirst[B](pf: PartialFunction[Short, B]): Option[B]

    Permalink

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

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

    pf

    the partial function

    returns

    an option value containing pf applied to the first value for which it is defined, or None if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableOnce
    Example:
    1. Seq("a", 1, 5L).collectFirst({ case x: Int => x*10 }) = Some(10)

  107. def collectFirst[B](pf: PartialFunction[Long, B]): Option[B]

    Permalink

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

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

    pf

    the partial function

    returns

    an option value containing pf applied to the first value for which it is defined, or None if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableOnce
    Example:
    1. Seq("a", 1, 5L).collectFirst({ case x: Int => x*10 }) = Some(10)

  108. def collectFirst[B](pf: PartialFunction[Int, B]): Option[B]

    Permalink

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

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

    pf

    the partial function

    returns

    an option value containing pf applied to the first value for which it is defined, or None if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableOnce
    Example:
    1. Seq("a", 1, 5L).collectFirst({ case x: Int => x*10 }) = Some(10)

  109. def collectFirst[B](pf: PartialFunction[Float, B]): Option[B]

    Permalink

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

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

    pf

    the partial function

    returns

    an option value containing pf applied to the first value for which it is defined, or None if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableOnce
    Example:
    1. Seq("a", 1, 5L).collectFirst({ case x: Int => x*10 }) = Some(10)

  110. def collectFirst[B](pf: PartialFunction[Double, B]): Option[B]

    Permalink

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

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

    pf

    the partial function

    returns

    an option value containing pf applied to the first value for which it is defined, or None if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableOnce
    Example:
    1. Seq("a", 1, 5L).collectFirst({ case x: Int => x*10 }) = Some(10)

  111. def collectFirst[B](pf: PartialFunction[Char, B]): Option[B]

    Permalink

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

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

    pf

    the partial function

    returns

    an option value containing pf applied to the first value for which it is defined, or None if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableOnce
    Example:
    1. Seq("a", 1, 5L).collectFirst({ case x: Int => x*10 }) = Some(10)

  112. def collectFirst[B](pf: PartialFunction[Byte, B]): Option[B]

    Permalink

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

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

    pf

    the partial function

    returns

    an option value containing pf applied to the first value for which it is defined, or None if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableOnce
    Example:
    1. Seq("a", 1, 5L).collectFirst({ case x: Int => x*10 }) = Some(10)

  113. def collectFirst[B](pf: PartialFunction[Boolean, B]): Option[B]

    Permalink

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

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

    pf

    the partial function

    returns

    an option value containing pf applied to the first value for which it is defined, or None if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableOnce
    Example:
    1. Seq("a", 1, 5L).collectFirst({ case x: Int => x*10 }) = Some(10)

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

    Permalink

    Tests whether this mutable indexed sequence contains a given value as an element.

    Tests whether this mutable indexed sequence contains a given value as an element.

    elem

    the element to test.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    SeqLike
  115. def contains[A1 >: A](elem: A1): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given value as an element.

    Tests whether this mutable indexed sequence contains a given value as an element.

    elem

    the element to test.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    SeqLike
  116. def contains[A1 >: A](elem: A1): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given value as an element.

    Tests whether this mutable indexed sequence contains a given value as an element.

    elem

    the element to test.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    SeqLike
  117. def contains[A1 >: A](elem: A1): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given value as an element.

    Tests whether this mutable indexed sequence contains a given value as an element.

    elem

    the element to test.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    SeqLike
  118. def contains[A1 >: A](elem: A1): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given value as an element.

    Tests whether this mutable indexed sequence contains a given value as an element.

    elem

    the element to test.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    SeqLike
  119. def contains[A1 >: A](elem: A1): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given value as an element.

    Tests whether this mutable indexed sequence contains a given value as an element.

    elem

    the element to test.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    SeqLike
  120. def contains[A1 >: A](elem: A1): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given value as an element.

    Tests whether this mutable indexed sequence contains a given value as an element.

    elem

    the element to test.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    SeqLike
  121. def contains[A1 >: A](elem: A1): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given value as an element.

    Tests whether this mutable indexed sequence contains a given value as an element.

    elem

    the element to test.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    SeqLike
  122. def contains[A1 >: A](elem: A1): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given value as an element.

    Tests whether this mutable indexed sequence contains a given value as an element.

    elem

    the element to test.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    SeqLike
  123. def contains[A1 >: A](elem: A1): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given value as an element.

    Tests whether this mutable indexed sequence contains a given value as an element.

    elem

    the element to test.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    SeqLike
  124. def contains[A1 >: A](elem: A1): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given value as an element.

    Tests whether this mutable indexed sequence contains a given value as an element.

    elem

    the element to test.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    SeqLike
  125. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Permalink

    Copies all elements of this mutable indexed sequence to a buffer.

    Copies all elements of this mutable indexed sequence to a buffer.

    dest

    The buffer to which elements are copied.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableOnce
  126. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Permalink

    Copies all elements of this mutable indexed sequence to a buffer.

    Copies all elements of this mutable indexed sequence to a buffer.

    dest

    The buffer to which elements are copied.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableOnce
  127. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Permalink

    Copies all elements of this mutable indexed sequence to a buffer.

    Copies all elements of this mutable indexed sequence to a buffer.

    dest

    The buffer to which elements are copied.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    TraversableOnce
  128. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Permalink

    Copies all elements of this mutable indexed sequence to a buffer.

    Copies all elements of this mutable indexed sequence to a buffer.

    dest

    The buffer to which elements are copied.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableOnce
  129. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Permalink

    Copies all elements of this mutable indexed sequence to a buffer.

    Copies all elements of this mutable indexed sequence to a buffer.

    dest

    The buffer to which elements are copied.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableOnce
  130. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Permalink

    Copies all elements of this mutable indexed sequence to a buffer.

    Copies all elements of this mutable indexed sequence to a buffer.

    dest

    The buffer to which elements are copied.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableOnce
  131. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Permalink

    Copies all elements of this mutable indexed sequence to a buffer.

    Copies all elements of this mutable indexed sequence to a buffer.

    dest

    The buffer to which elements are copied.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableOnce
  132. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Permalink

    Copies all elements of this mutable indexed sequence to a buffer.

    Copies all elements of this mutable indexed sequence to a buffer.

    dest

    The buffer to which elements are copied.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableOnce
  133. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Permalink

    Copies all elements of this mutable indexed sequence to a buffer.

    Copies all elements of this mutable indexed sequence to a buffer.

    dest

    The buffer to which elements are copied.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableOnce
  134. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Permalink

    Copies all elements of this mutable indexed sequence to a buffer.

    Copies all elements of this mutable indexed sequence to a buffer.

    dest

    The buffer to which elements are copied.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableOnce
  135. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Permalink

    Copies all elements of this mutable indexed sequence to a buffer.

    Copies all elements of this mutable indexed sequence to a buffer.

    dest

    The buffer to which elements are copied.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    TraversableOnce
  136. def corresponds[B](that: GenSeq[B])(p: (Unit, B) ⇒ Boolean): Boolean

    Permalink

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    B

    the type of the elements of that

    that

    the other sequence

    p

    the test predicate, which relates elements from both sequences

    returns

    true if both sequences have the same length and p(x, y) is true for all corresponding elements x of this mutable indexed sequence and y of that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    SeqLikeGenSeqLike
  137. def corresponds[B](that: GenSeq[B])(p: (Short, B) ⇒ Boolean): Boolean

    Permalink

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    B

    the type of the elements of that

    that

    the other sequence

    p

    the test predicate, which relates elements from both sequences

    returns

    true if both sequences have the same length and p(x, y) is true for all corresponding elements x of this mutable indexed sequence and y of that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    SeqLikeGenSeqLike
  138. def corresponds[B](that: GenSeq[B])(p: (Long, B) ⇒ Boolean): Boolean

    Permalink

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    B

    the type of the elements of that

    that

    the other sequence

    p

    the test predicate, which relates elements from both sequences

    returns

    true if both sequences have the same length and p(x, y) is true for all corresponding elements x of this mutable indexed sequence and y of that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    SeqLikeGenSeqLike
  139. def corresponds[B](that: GenSeq[B])(p: (Int, B) ⇒ Boolean): Boolean

    Permalink

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    B

    the type of the elements of that

    that

    the other sequence

    p

    the test predicate, which relates elements from both sequences

    returns

    true if both sequences have the same length and p(x, y) is true for all corresponding elements x of this mutable indexed sequence and y of that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    SeqLikeGenSeqLike
  140. def corresponds[B](that: GenSeq[B])(p: (Float, B) ⇒ Boolean): Boolean

    Permalink

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    B

    the type of the elements of that

    that

    the other sequence

    p

    the test predicate, which relates elements from both sequences

    returns

    true if both sequences have the same length and p(x, y) is true for all corresponding elements x of this mutable indexed sequence and y of that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    SeqLikeGenSeqLike
  141. def corresponds[B](that: GenSeq[B])(p: (Double, B) ⇒ Boolean): Boolean

    Permalink

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    B

    the type of the elements of that

    that

    the other sequence

    p

    the test predicate, which relates elements from both sequences

    returns

    true if both sequences have the same length and p(x, y) is true for all corresponding elements x of this mutable indexed sequence and y of that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    SeqLikeGenSeqLike
  142. def corresponds[B](that: GenSeq[B])(p: (Char, B) ⇒ Boolean): Boolean

    Permalink

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    B

    the type of the elements of that

    that

    the other sequence

    p

    the test predicate, which relates elements from both sequences

    returns

    true if both sequences have the same length and p(x, y) is true for all corresponding elements x of this mutable indexed sequence and y of that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    SeqLikeGenSeqLike
  143. def corresponds[B](that: GenSeq[B])(p: (Byte, B) ⇒ Boolean): Boolean

    Permalink

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    B

    the type of the elements of that

    that

    the other sequence

    p

    the test predicate, which relates elements from both sequences

    returns

    true if both sequences have the same length and p(x, y) is true for all corresponding elements x of this mutable indexed sequence and y of that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    SeqLikeGenSeqLike
  144. def corresponds[B](that: GenSeq[B])(p: (Boolean, B) ⇒ Boolean): Boolean

    Permalink

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    B

    the type of the elements of that

    that

    the other sequence

    p

    the test predicate, which relates elements from both sequences

    returns

    true if both sequences have the same length and p(x, y) is true for all corresponding elements x of this mutable indexed sequence and y of that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    SeqLikeGenSeqLike
  145. def count(p: (Unit) ⇒ Boolean): Int

    Permalink

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    the number of elements satisfying the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableOnceGenTraversableOnce
  146. def count(p: (Short) ⇒ Boolean): Int

    Permalink

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    the number of elements satisfying the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableOnceGenTraversableOnce
  147. def count(p: (Long) ⇒ Boolean): Int

    Permalink

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    the number of elements satisfying the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableOnceGenTraversableOnce
  148. def count(p: (Int) ⇒ Boolean): Int

    Permalink

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    the number of elements satisfying the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableOnceGenTraversableOnce
  149. def count(p: (Float) ⇒ Boolean): Int

    Permalink

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    the number of elements satisfying the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableOnceGenTraversableOnce
  150. def count(p: (Double) ⇒ Boolean): Int

    Permalink

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    the number of elements satisfying the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableOnceGenTraversableOnce
  151. def count(p: (Char) ⇒ Boolean): Int

    Permalink

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    the number of elements satisfying the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableOnceGenTraversableOnce
  152. def count(p: (Byte) ⇒ Boolean): Int

    Permalink

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    the number of elements satisfying the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableOnceGenTraversableOnce
  153. def count(p: (Boolean) ⇒ Boolean): Int

    Permalink

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    the number of elements satisfying the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableOnceGenTraversableOnce
  154. def diff(that: collection.Seq[Unit]): Array[Unit]

    Permalink

    [use case] Computes the multiset difference between this array and another sequence.

    [use case]

    Computes the multiset difference between this array and another sequence.

    that

    the sequence of elements to remove

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def diff[B >: A](that: GenSeq[B]): Array[Unit]

  155. def diff(that: collection.Seq[Short]): Array[Short]

    Permalink

    [use case] Computes the multiset difference between this array and another sequence.

    [use case]

    Computes the multiset difference between this array and another sequence.

    that

    the sequence of elements to remove

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def diff[B >: A](that: GenSeq[B]): Array[Short]

  156. def diff(that: collection.Seq[Long]): Array[Long]

    Permalink

    [use case] Computes the multiset difference between this array and another sequence.

    [use case]

    Computes the multiset difference between this array and another sequence.

    that

    the sequence of elements to remove

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def diff[B >: A](that: GenSeq[B]): Array[Long]

  157. def diff(that: collection.Seq[Int]): Array[Int]

    Permalink

    [use case] Computes the multiset difference between this array and another sequence.

    [use case]

    Computes the multiset difference between this array and another sequence.

    that

    the sequence of elements to remove

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def diff[B >: A](that: GenSeq[B]): Array[Int]

  158. def diff(that: collection.Seq[Float]): Array[Float]

    Permalink

    [use case] Computes the multiset difference between this array and another sequence.

    [use case]

    Computes the multiset difference between this array and another sequence.

    that

    the sequence of elements to remove

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def diff[B >: A](that: GenSeq[B]): Array[Float]

  159. def diff(that: collection.Seq[Double]): Array[Double]

    Permalink

    [use case] Computes the multiset difference between this array and another sequence.

    [use case]

    Computes the multiset difference between this array and another sequence.

    that

    the sequence of elements to remove

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def diff[B >: A](that: GenSeq[B]): Array[Double]

  160. def diff(that: collection.Seq[Char]): Array[Char]

    Permalink

    [use case] Computes the multiset difference between this array and another sequence.

    [use case]

    Computes the multiset difference between this array and another sequence.

    that

    the sequence of elements to remove

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def diff[B >: A](that: GenSeq[B]): Array[Char]

  161. def diff(that: collection.Seq[Byte]): Array[Byte]

    Permalink

    [use case] Computes the multiset difference between this array and another sequence.

    [use case]

    Computes the multiset difference between this array and another sequence.

    that

    the sequence of elements to remove

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def diff[B >: A](that: GenSeq[B]): Array[Byte]

  162. def diff(that: collection.Seq[Boolean]): Array[Boolean]

    Permalink

    [use case] Computes the multiset difference between this array and another sequence.

    [use case]

    Computes the multiset difference between this array and another sequence.

    that

    the sequence of elements to remove

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def diff[B >: A](that: GenSeq[B]): Array[Boolean]

  163. def dropWhile(p: (Unit) ⇒ Boolean): Array[Unit]

    Permalink

    Drops longest prefix of elements that satisfy a predicate.

    Drops longest prefix of elements that satisfy a predicate.

    returns

    the longest suffix of this mutable indexed sequence whose first element does not satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  164. def dropWhile(p: (Short) ⇒ Boolean): Array[Short]

    Permalink

    Drops longest prefix of elements that satisfy a predicate.

    Drops longest prefix of elements that satisfy a predicate.

    returns

    the longest suffix of this mutable indexed sequence whose first element does not satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  165. def dropWhile(p: (Long) ⇒ Boolean): Array[Long]

    Permalink

    Drops longest prefix of elements that satisfy a predicate.

    Drops longest prefix of elements that satisfy a predicate.

    returns

    the longest suffix of this mutable indexed sequence whose first element does not satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  166. def dropWhile(p: (Int) ⇒ Boolean): Array[Int]

    Permalink

    Drops longest prefix of elements that satisfy a predicate.

    Drops longest prefix of elements that satisfy a predicate.

    returns

    the longest suffix of this mutable indexed sequence whose first element does not satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  167. def dropWhile(p: (Float) ⇒ Boolean): Array[Float]

    Permalink

    Drops longest prefix of elements that satisfy a predicate.

    Drops longest prefix of elements that satisfy a predicate.

    returns

    the longest suffix of this mutable indexed sequence whose first element does not satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  168. def dropWhile(p: (Double) ⇒ Boolean): Array[Double]

    Permalink

    Drops longest prefix of elements that satisfy a predicate.

    Drops longest prefix of elements that satisfy a predicate.

    returns

    the longest suffix of this mutable indexed sequence whose first element does not satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  169. def dropWhile(p: (Char) ⇒ Boolean): Array[Char]

    Permalink

    Drops longest prefix of elements that satisfy a predicate.

    Drops longest prefix of elements that satisfy a predicate.

    returns

    the longest suffix of this mutable indexed sequence whose first element does not satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  170. def dropWhile(p: (Byte) ⇒ Boolean): Array[Byte]

    Permalink

    Drops longest prefix of elements that satisfy a predicate.

    Drops longest prefix of elements that satisfy a predicate.

    returns

    the longest suffix of this mutable indexed sequence whose first element does not satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  171. def dropWhile(p: (Boolean) ⇒ Boolean): Array[Boolean]

    Permalink

    Drops longest prefix of elements that satisfy a predicate.

    Drops longest prefix of elements that satisfy a predicate.

    returns

    the longest suffix of this mutable indexed sequence whose first element does not satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  172. def ensuring(cond: (Array[T]) ⇒ Boolean, msg: ⇒ Any): Array[T]

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

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

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

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

    Permalink

    Tests whether the argument (arg0) is a reference to the receiver object (this).

    Tests whether the argument (arg0) is a reference to the receiver object (this).

    The eq method implements an equivalence relation on non-null instances of AnyRef, and has three additional properties:

    • It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false.
    • For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false.
    • null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    returns

    true if the argument is a reference to the receiver object; false otherwise.

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

    Permalink

    The equality method for reference types.

    The equality method for reference types. Default implementation delegates to eq.

    See also equals in scala.Any.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  178. def exists(p: (Unit) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    false if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for some of the elements of this mutable indexed sequence, otherwise false

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  179. def exists(p: (Short) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    false if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for some of the elements of this mutable indexed sequence, otherwise false

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  180. def exists(p: (Long) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    false if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for some of the elements of this mutable indexed sequence, otherwise false

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  181. def exists(p: (Int) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    false if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for some of the elements of this mutable indexed sequence, otherwise false

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  182. def exists(p: (Float) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    false if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for some of the elements of this mutable indexed sequence, otherwise false

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  183. def exists(p: (Double) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    false if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for some of the elements of this mutable indexed sequence, otherwise false

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  184. def exists(p: (Char) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    false if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for some of the elements of this mutable indexed sequence, otherwise false

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  185. def exists(p: (Byte) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    false if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for some of the elements of this mutable indexed sequence, otherwise false

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  186. def exists(p: (Boolean) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    false if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for some of the elements of this mutable indexed sequence, otherwise false

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  187. def filter(p: (Unit) ⇒ Boolean): Array[Unit]

    Permalink

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableLikeGenTraversableLike
  188. def filter(p: (Short) ⇒ Boolean): Array[Short]

    Permalink

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableLikeGenTraversableLike
  189. def filter(p: (Long) ⇒ Boolean): Array[Long]

    Permalink

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableLikeGenTraversableLike
  190. def filter(p: (Int) ⇒ Boolean): Array[Int]

    Permalink

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableLikeGenTraversableLike
  191. def filter(p: (Float) ⇒ Boolean): Array[Float]

    Permalink

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableLikeGenTraversableLike
  192. def filter(p: (Double) ⇒ Boolean): Array[Double]

    Permalink

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableLikeGenTraversableLike
  193. def filter(p: (Char) ⇒ Boolean): Array[Char]

    Permalink

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableLikeGenTraversableLike
  194. def filter(p: (Byte) ⇒ Boolean): Array[Byte]

    Permalink

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableLikeGenTraversableLike
  195. def filter(p: (Boolean) ⇒ Boolean): Array[Boolean]

    Permalink

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableLikeGenTraversableLike
  196. def filterNot(p: (Unit) ⇒ Boolean): Array[Unit]

    Permalink

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that do not satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableLikeGenTraversableLike
  197. def filterNot(p: (Short) ⇒ Boolean): Array[Short]

    Permalink

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that do not satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableLikeGenTraversableLike
  198. def filterNot(p: (Long) ⇒ Boolean): Array[Long]

    Permalink

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that do not satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableLikeGenTraversableLike
  199. def filterNot(p: (Int) ⇒ Boolean): Array[Int]

    Permalink

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that do not satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableLikeGenTraversableLike
  200. def filterNot(p: (Float) ⇒ Boolean): Array[Float]

    Permalink

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that do not satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableLikeGenTraversableLike
  201. def filterNot(p: (Double) ⇒ Boolean): Array[Double]

    Permalink

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that do not satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableLikeGenTraversableLike
  202. def filterNot(p: (Char) ⇒ Boolean): Array[Char]

    Permalink

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that do not satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableLikeGenTraversableLike
  203. def filterNot(p: (Byte) ⇒ Boolean): Array[Byte]

    Permalink

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that do not satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableLikeGenTraversableLike
  204. def filterNot(p: (Boolean) ⇒ Boolean): Array[Boolean]

    Permalink

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that do not satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableLikeGenTraversableLike
  205. def finalize(): Unit

    Permalink

    Called by the garbage collector on the receiver object when there are no more references to the object.

    Called by the garbage collector on the receiver object when there are no more references to the object.

    The details of when and if the finalize method is invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
    Note

    not specified by SLS as a member of AnyRef

  206. def find(p: (Unit) ⇒ Boolean): Option[Unit]

    Permalink

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  207. def find(p: (Short) ⇒ Boolean): Option[Short]

    Permalink

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  208. def find(p: (Long) ⇒ Boolean): Option[Long]

    Permalink

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  209. def find(p: (Int) ⇒ Boolean): Option[Int]

    Permalink

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  210. def find(p: (Float) ⇒ Boolean): Option[Float]

    Permalink

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  211. def find(p: (Double) ⇒ Boolean): Option[Double]

    Permalink

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  212. def find(p: (Char) ⇒ Boolean): Option[Char]

    Permalink

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  213. def find(p: (Byte) ⇒ Boolean): Option[Byte]

    Permalink

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  214. def find(p: (Boolean) ⇒ Boolean): Option[Boolean]

    Permalink

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  215. def flatMap[B](f: (A) ⇒ GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and using the elements of the resulting collections.

    [use case]

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

    For example:

    def getWords(lines: Seq[String]): Seq[String] = lines flatMap (line => line split "\\W+")

    The type of the resulting collection is guided by the static type of array. This might cause unexpected results sometimes. For example:

    // lettersOf will return a Seq[Char] of likely repeated letters, instead of a Set
    def lettersOf(words: Seq[String]) = words flatMap (word => word.toSet)
    
    // lettersOf will return a Set[Char], not a Seq
    def lettersOf(words: Seq[String]) = words.toSet flatMap (word => word.toSeq)
    
    // xs will be an Iterable[Int]
    val xs = Map("a" -> List(11,111), "b" -> List(22,222)).flatMap(_._2)
    
    // ys will be a Map[Int, Int]
    val ys = Map("a" -> List(1 -> 11,1 -> 111), "b" -> List(2 -> 22,2 -> 222)).flatMap(_._2)
    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def flatMap[B, That](f: (Unit) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Unit], B, That]): That

  216. def flatMap[B](f: (A) ⇒ GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and using the elements of the resulting collections.

    [use case]

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

    For example:

    def getWords(lines: Seq[String]): Seq[String] = lines flatMap (line => line split "\\W+")

    The type of the resulting collection is guided by the static type of array. This might cause unexpected results sometimes. For example:

    // lettersOf will return a Seq[Char] of likely repeated letters, instead of a Set
    def lettersOf(words: Seq[String]) = words flatMap (word => word.toSet)
    
    // lettersOf will return a Set[Char], not a Seq
    def lettersOf(words: Seq[String]) = words.toSet flatMap (word => word.toSeq)
    
    // xs will be an Iterable[Int]
    val xs = Map("a" -> List(11,111), "b" -> List(22,222)).flatMap(_._2)
    
    // ys will be a Map[Int, Int]
    val ys = Map("a" -> List(1 -> 11,1 -> 111), "b" -> List(2 -> 22,2 -> 222)).flatMap(_._2)
    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def flatMap[B, That](f: (Short) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Short], B, That]): That

  217. def flatMap[B](f: (A) ⇒ GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and using the elements of the resulting collections.

    [use case]

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

    For example:

    def getWords(lines: Seq[String]): Seq[String] = lines flatMap (line => line split "\\W+")

    The type of the resulting collection is guided by the static type of array. This might cause unexpected results sometimes. For example:

    // lettersOf will return a Seq[Char] of likely repeated letters, instead of a Set
    def lettersOf(words: Seq[String]) = words flatMap (word => word.toSet)
    
    // lettersOf will return a Set[Char], not a Seq
    def lettersOf(words: Seq[String]) = words.toSet flatMap (word => word.toSeq)
    
    // xs will be an Iterable[Int]
    val xs = Map("a" -> List(11,111), "b" -> List(22,222)).flatMap(_._2)
    
    // ys will be a Map[Int, Int]
    val ys = Map("a" -> List(1 -> 11,1 -> 111), "b" -> List(2 -> 22,2 -> 222)).flatMap(_._2)
    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def flatMap[B, That](f: (T) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[T], B, That]): That

  218. def flatMap[B](f: (A) ⇒ GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and using the elements of the resulting collections.

    [use case]

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

    For example:

    def getWords(lines: Seq[String]): Seq[String] = lines flatMap (line => line split "\\W+")

    The type of the resulting collection is guided by the static type of array. This might cause unexpected results sometimes. For example:

    // lettersOf will return a Seq[Char] of likely repeated letters, instead of a Set
    def lettersOf(words: Seq[String]) = words flatMap (word => word.toSet)
    
    // lettersOf will return a Set[Char], not a Seq
    def lettersOf(words: Seq[String]) = words.toSet flatMap (word => word.toSeq)
    
    // xs will be an Iterable[Int]
    val xs = Map("a" -> List(11,111), "b" -> List(22,222)).flatMap(_._2)
    
    // ys will be a Map[Int, Int]
    val ys = Map("a" -> List(1 -> 11,1 -> 111), "b" -> List(2 -> 22,2 -> 222)).flatMap(_._2)
    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def flatMap[B, That](f: (Long) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Long], B, That]): That

  219. def flatMap[B](f: (A) ⇒ GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and using the elements of the resulting collections.

    [use case]

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

    For example:

    def getWords(lines: Seq[String]): Seq[String] = lines flatMap (line => line split "\\W+")

    The type of the resulting collection is guided by the static type of array. This might cause unexpected results sometimes. For example:

    // lettersOf will return a Seq[Char] of likely repeated letters, instead of a Set
    def lettersOf(words: Seq[String]) = words flatMap (word => word.toSet)
    
    // lettersOf will return a Set[Char], not a Seq
    def lettersOf(words: Seq[String]) = words.toSet flatMap (word => word.toSeq)
    
    // xs will be an Iterable[Int]
    val xs = Map("a" -> List(11,111), "b" -> List(22,222)).flatMap(_._2)
    
    // ys will be a Map[Int, Int]
    val ys = Map("a" -> List(1 -> 11,1 -> 111), "b" -> List(2 -> 22,2 -> 222)).flatMap(_._2)
    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def flatMap[B, That](f: (Int) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Int], B, That]): That

  220. def flatMap[B](f: (A) ⇒ GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and using the elements of the resulting collections.

    [use case]

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

    For example:

    def getWords(lines: Seq[String]): Seq[String] = lines flatMap (line => line split "\\W+")

    The type of the resulting collection is guided by the static type of array. This might cause unexpected results sometimes. For example:

    // lettersOf will return a Seq[Char] of likely repeated letters, instead of a Set
    def lettersOf(words: Seq[String]) = words flatMap (word => word.toSet)
    
    // lettersOf will return a Set[Char], not a Seq
    def lettersOf(words: Seq[String]) = words.toSet flatMap (word => word.toSeq)
    
    // xs will be an Iterable[Int]
    val xs = Map("a" -> List(11,111), "b" -> List(22,222)).flatMap(_._2)
    
    // ys will be a Map[Int, Int]
    val ys = Map("a" -> List(1 -> 11,1 -> 111), "b" -> List(2 -> 22,2 -> 222)).flatMap(_._2)
    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def flatMap[B, That](f: (Float) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Float], B, That]): That

  221. def flatMap[B](f: (A) ⇒ GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and using the elements of the resulting collections.

    [use case]

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

    For example:

    def getWords(lines: Seq[String]): Seq[String] = lines flatMap (line => line split "\\W+")

    The type of the resulting collection is guided by the static type of array. This might cause unexpected results sometimes. For example:

    // lettersOf will return a Seq[Char] of likely repeated letters, instead of a Set
    def lettersOf(words: Seq[String]) = words flatMap (word => word.toSet)
    
    // lettersOf will return a Set[Char], not a Seq
    def lettersOf(words: Seq[String]) = words.toSet flatMap (word => word.toSeq)
    
    // xs will be an Iterable[Int]
    val xs = Map("a" -> List(11,111), "b" -> List(22,222)).flatMap(_._2)
    
    // ys will be a Map[Int, Int]
    val ys = Map("a" -> List(1 -> 11,1 -> 111), "b" -> List(2 -> 22,2 -> 222)).flatMap(_._2)
    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def flatMap[B, That](f: (Double) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Double], B, That]): That

  222. def flatMap[B](f: (A) ⇒ GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and using the elements of the resulting collections.

    [use case]

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

    For example:

    def getWords(lines: Seq[String]): Seq[String] = lines flatMap (line => line split "\\W+")

    The type of the resulting collection is guided by the static type of array. This might cause unexpected results sometimes. For example:

    // lettersOf will return a Seq[Char] of likely repeated letters, instead of a Set
    def lettersOf(words: Seq[String]) = words flatMap (word => word.toSet)
    
    // lettersOf will return a Set[Char], not a Seq
    def lettersOf(words: Seq[String]) = words.toSet flatMap (word => word.toSeq)
    
    // xs will be an Iterable[Int]
    val xs = Map("a" -> List(11,111), "b" -> List(22,222)).flatMap(_._2)
    
    // ys will be a Map[Int, Int]
    val ys = Map("a" -> List(1 -> 11,1 -> 111), "b" -> List(2 -> 22,2 -> 222)).flatMap(_._2)
    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def flatMap[B, That](f: (Char) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Char], B, That]): That

  223. def flatMap[B](f: (A) ⇒ GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and using the elements of the resulting collections.

    [use case]

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

    For example:

    def getWords(lines: Seq[String]): Seq[String] = lines flatMap (line => line split "\\W+")

    The type of the resulting collection is guided by the static type of array. This might cause unexpected results sometimes. For example:

    // lettersOf will return a Seq[Char] of likely repeated letters, instead of a Set
    def lettersOf(words: Seq[String]) = words flatMap (word => word.toSet)
    
    // lettersOf will return a Set[Char], not a Seq
    def lettersOf(words: Seq[String]) = words.toSet flatMap (word => word.toSeq)
    
    // xs will be an Iterable[Int]
    val xs = Map("a" -> List(11,111), "b" -> List(22,222)).flatMap(_._2)
    
    // ys will be a Map[Int, Int]
    val ys = Map("a" -> List(1 -> 11,1 -> 111), "b" -> List(2 -> 22,2 -> 222)).flatMap(_._2)
    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def flatMap[B, That](f: (Byte) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Byte], B, That]): That

  224. def flatMap[B](f: (A) ⇒ GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and using the elements of the resulting collections.

    [use case]

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

    For example:

    def getWords(lines: Seq[String]): Seq[String] = lines flatMap (line => line split "\\W+")

    The type of the resulting collection is guided by the static type of array. This might cause unexpected results sometimes. For example:

    // lettersOf will return a Seq[Char] of likely repeated letters, instead of a Set
    def lettersOf(words: Seq[String]) = words flatMap (word => word.toSet)
    
    // lettersOf will return a Set[Char], not a Seq
    def lettersOf(words: Seq[String]) = words.toSet flatMap (word => word.toSeq)
    
    // xs will be an Iterable[Int]
    val xs = Map("a" -> List(11,111), "b" -> List(22,222)).flatMap(_._2)
    
    // ys will be a Map[Int, Int]
    val ys = Map("a" -> List(1 -> 11,1 -> 111), "b" -> List(2 -> 22,2 -> 222)).flatMap(_._2)
    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def flatMap[B, That](f: (Boolean) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[Boolean], B, That]): That

  225. def flatMap[B](f: (A) ⇒ GenTraversableOnce[B]): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and using the elements of the resulting collections.

    [use case]

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

    For example:

    def getWords(lines: Seq[String]): Seq[String] = lines flatMap (line => line split "\\W+")

    The type of the resulting collection is guided by the static type of array. This might cause unexpected results sometimes. For example:

    // lettersOf will return a Seq[Char] of likely repeated letters, instead of a Set
    def lettersOf(words: Seq[String]) = words flatMap (word => word.toSet)
    
    // lettersOf will return a Set[Char], not a Seq
    def lettersOf(words: Seq[String]) = words.toSet flatMap (word => word.toSeq)
    
    // xs will be an Iterable[Int]
    val xs = Map("a" -> List(11,111), "b" -> List(22,222)).flatMap(_._2)
    
    // ys will be a Map[Int, Int]
    val ys = Map("a" -> List(1 -> 11,1 -> 111), "b" -> List(2 -> 22,2 -> 222)).flatMap(_._2)
    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def flatMap[B, That](f: (T) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[T], B, That]): That

  226. def flatten[U](implicit asTrav: (Unit) ⇒ collection.Traversable[U], m: ClassTag[U]): Array[U]

    Permalink

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

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

    U

    Type of row elements.

    asTrav

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

    returns

    An array obtained by concatenating rows of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    ArrayOps
  227. def flatten[U](implicit asTrav: (Short) ⇒ collection.Traversable[U], m: ClassTag[U]): Array[U]

    Permalink

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

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

    U

    Type of row elements.

    asTrav

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

    returns

    An array obtained by concatenating rows of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    ArrayOps
  228. def flatten[U](implicit asTrav: (Long) ⇒ collection.Traversable[U], m: ClassTag[U]): Array[U]

    Permalink

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

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

    U

    Type of row elements.

    asTrav

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

    returns

    An array obtained by concatenating rows of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    ArrayOps
  229. def flatten[U](implicit asTrav: (Int) ⇒ collection.Traversable[U], m: ClassTag[U]): Array[U]

    Permalink

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

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

    U

    Type of row elements.

    asTrav

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

    returns

    An array obtained by concatenating rows of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    ArrayOps
  230. def flatten[U](implicit asTrav: (Float) ⇒ collection.Traversable[U], m: ClassTag[U]): Array[U]

    Permalink

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

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

    U

    Type of row elements.

    asTrav

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

    returns

    An array obtained by concatenating rows of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    ArrayOps
  231. def flatten[U](implicit asTrav: (Double) ⇒ collection.Traversable[U], m: ClassTag[U]): Array[U]

    Permalink

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

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

    U

    Type of row elements.

    asTrav

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

    returns

    An array obtained by concatenating rows of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    ArrayOps
  232. def flatten[U](implicit asTrav: (Char) ⇒ collection.Traversable[U], m: ClassTag[U]): Array[U]

    Permalink

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

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

    U

    Type of row elements.

    asTrav

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

    returns

    An array obtained by concatenating rows of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    ArrayOps
  233. def flatten[U](implicit asTrav: (Byte) ⇒ collection.Traversable[U], m: ClassTag[U]): Array[U]

    Permalink

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

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

    U

    Type of row elements.

    asTrav

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

    returns

    An array obtained by concatenating rows of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    ArrayOps
  234. def flatten[U](implicit asTrav: (Boolean) ⇒ collection.Traversable[U], m: ClassTag[U]): Array[U]

    Permalink

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

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

    U

    Type of row elements.

    asTrav

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

    returns

    An array obtained by concatenating rows of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    ArrayOps
  235. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    z

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

    op

    a binary operator that must be associative

    returns

    the result of applying fold operator op between all the elements and z

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableOnceGenTraversableOnce
  236. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    z

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

    op

    a binary operator that must be associative

    returns

    the result of applying fold operator op between all the elements and z

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableOnceGenTraversableOnce
  237. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    z

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

    op

    a binary operator that must be associative

    returns

    the result of applying fold operator op between all the elements and z

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    TraversableOnceGenTraversableOnce
  238. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    z

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

    op

    a binary operator that must be associative

    returns

    the result of applying fold operator op between all the elements and z

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableOnceGenTraversableOnce
  239. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    z

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

    op

    a binary operator that must be associative

    returns

    the result of applying fold operator op between all the elements and z

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableOnceGenTraversableOnce
  240. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    z

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

    op

    a binary operator that must be associative

    returns

    the result of applying fold operator op between all the elements and z

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableOnceGenTraversableOnce
  241. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    z

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

    op

    a binary operator that must be associative

    returns

    the result of applying fold operator op between all the elements and z

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableOnceGenTraversableOnce
  242. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    z

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

    op

    a binary operator that must be associative

    returns

    the result of applying fold operator op between all the elements and z

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableOnceGenTraversableOnce
  243. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    z

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

    op

    a binary operator that must be associative

    returns

    the result of applying fold operator op between all the elements and z

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableOnceGenTraversableOnce
  244. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    z

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

    op

    a binary operator that must be associative

    returns

    the result of applying fold operator op between all the elements and z

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableOnceGenTraversableOnce
  245. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    Folds the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    z

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

    op

    a binary operator that must be associative

    returns

    the result of applying fold operator op between all the elements and z

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    TraversableOnceGenTraversableOnce
  246. def foldLeft[B](z: B)(op: (B, Unit) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    IndexedSeqOptimizedTraversableOnceGenTraversableOnce
  247. def foldLeft[B](z: B)(op: (B, Short) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    IndexedSeqOptimizedTraversableOnceGenTraversableOnce
  248. def foldLeft[B](z: B)(op: (B, Long) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    IndexedSeqOptimizedTraversableOnceGenTraversableOnce
  249. def foldLeft[B](z: B)(op: (B, Int) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    IndexedSeqOptimizedTraversableOnceGenTraversableOnce
  250. def foldLeft[B](z: B)(op: (B, Float) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    IndexedSeqOptimizedTraversableOnceGenTraversableOnce
  251. def foldLeft[B](z: B)(op: (B, Double) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    IndexedSeqOptimizedTraversableOnceGenTraversableOnce
  252. def foldLeft[B](z: B)(op: (B, Char) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    IndexedSeqOptimizedTraversableOnceGenTraversableOnce
  253. def foldLeft[B](z: B)(op: (B, Byte) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    IndexedSeqOptimizedTraversableOnceGenTraversableOnce
  254. def foldLeft[B](z: B)(op: (B, Boolean) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    IndexedSeqOptimizedTraversableOnceGenTraversableOnce
  255. def foldRight[B](z: B)(op: (Unit, B) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
  256. def foldRight[B](z: B)(op: (Short, B) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
  257. def foldRight[B](z: B)(op: (Long, B) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
  258. def foldRight[B](z: B)(op: (Int, B) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
  259. def foldRight[B](z: B)(op: (Float, B) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
  260. def foldRight[B](z: B)(op: (Double, B) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
  261. def foldRight[B](z: B)(op: (Char, B) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
  262. def foldRight[B](z: B)(op: (Byte, B) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
  263. def foldRight[B](z: B)(op: (Boolean, B) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
  264. def forall(p: (Unit) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    true if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for all elements of this mutable indexed sequence, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  265. def forall(p: (Short) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    true if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for all elements of this mutable indexed sequence, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  266. def forall(p: (Long) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    true if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for all elements of this mutable indexed sequence, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  267. def forall(p: (Int) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    true if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for all elements of this mutable indexed sequence, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  268. def forall(p: (Float) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    true if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for all elements of this mutable indexed sequence, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  269. def forall(p: (Double) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    true if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for all elements of this mutable indexed sequence, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  270. def forall(p: (Char) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    true if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for all elements of this mutable indexed sequence, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  271. def forall(p: (Byte) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    true if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for all elements of this mutable indexed sequence, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  272. def forall(p: (Boolean) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    true if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for all elements of this mutable indexed sequence, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  273. def formatted(fmtstr: String): String

    Permalink

    Returns string formatted according to given format string.

    Returns string formatted according to given format string. Format strings are as for String.format (@see java.lang.String.format).

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

    Permalink

    A representation that corresponds to the dynamic class of the receiver object.

    A representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    Definition Classes
    AnyRef → Any
    Note

    not specified by SLS as a member of AnyRef

  275. def groupBy[K](f: (Unit) ⇒ K): Map[K, Array[Unit]]

    Permalink

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Note: this method is not re-implemented by views. This means when applied to a view it will always force the view and return a new mutable indexed sequence.

    K

    the type of keys returned by the discriminator function.

    f

    the discriminator function.

    returns

    A map from keys to mutable indexed sequences such that the following invariant holds:

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

    That is, every key k is bound to a mutable indexed sequence of those elements x for which f(x) equals k.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableLikeGenTraversableLike
  276. def groupBy[K](f: (Short) ⇒ K): Map[K, Array[Short]]

    Permalink

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Note: this method is not re-implemented by views. This means when applied to a view it will always force the view and return a new mutable indexed sequence.

    K

    the type of keys returned by the discriminator function.

    f

    the discriminator function.

    returns

    A map from keys to mutable indexed sequences such that the following invariant holds:

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

    That is, every key k is bound to a mutable indexed sequence of those elements x for which f(x) equals k.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableLikeGenTraversableLike
  277. def groupBy[K](f: (Long) ⇒ K): Map[K, Array[Long]]

    Permalink

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Note: this method is not re-implemented by views. This means when applied to a view it will always force the view and return a new mutable indexed sequence.

    K

    the type of keys returned by the discriminator function.

    f

    the discriminator function.

    returns

    A map from keys to mutable indexed sequences such that the following invariant holds:

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

    That is, every key k is bound to a mutable indexed sequence of those elements x for which f(x) equals k.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableLikeGenTraversableLike
  278. def groupBy[K](f: (Int) ⇒ K): Map[K, Array[Int]]

    Permalink

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Note: this method is not re-implemented by views. This means when applied to a view it will always force the view and return a new mutable indexed sequence.

    K

    the type of keys returned by the discriminator function.

    f

    the discriminator function.

    returns

    A map from keys to mutable indexed sequences such that the following invariant holds:

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

    That is, every key k is bound to a mutable indexed sequence of those elements x for which f(x) equals k.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableLikeGenTraversableLike
  279. def groupBy[K](f: (Float) ⇒ K): Map[K, Array[Float]]

    Permalink

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Note: this method is not re-implemented by views. This means when applied to a view it will always force the view and return a new mutable indexed sequence.

    K

    the type of keys returned by the discriminator function.

    f

    the discriminator function.

    returns

    A map from keys to mutable indexed sequences such that the following invariant holds:

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

    That is, every key k is bound to a mutable indexed sequence of those elements x for which f(x) equals k.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableLikeGenTraversableLike
  280. def groupBy[K](f: (Double) ⇒ K): Map[K, Array[Double]]

    Permalink

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Note: this method is not re-implemented by views. This means when applied to a view it will always force the view and return a new mutable indexed sequence.

    K

    the type of keys returned by the discriminator function.

    f

    the discriminator function.

    returns

    A map from keys to mutable indexed sequences such that the following invariant holds:

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

    That is, every key k is bound to a mutable indexed sequence of those elements x for which f(x) equals k.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableLikeGenTraversableLike
  281. def groupBy[K](f: (Char) ⇒ K): Map[K, Array[Char]]

    Permalink

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Note: this method is not re-implemented by views. This means when applied to a view it will always force the view and return a new mutable indexed sequence.

    K

    the type of keys returned by the discriminator function.

    f

    the discriminator function.

    returns

    A map from keys to mutable indexed sequences such that the following invariant holds:

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

    That is, every key k is bound to a mutable indexed sequence of those elements x for which f(x) equals k.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableLikeGenTraversableLike
  282. def groupBy[K](f: (Byte) ⇒ K): Map[K, Array[Byte]]

    Permalink

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Note: this method is not re-implemented by views. This means when applied to a view it will always force the view and return a new mutable indexed sequence.

    K

    the type of keys returned by the discriminator function.

    f

    the discriminator function.

    returns

    A map from keys to mutable indexed sequences such that the following invariant holds:

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

    That is, every key k is bound to a mutable indexed sequence of those elements x for which f(x) equals k.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableLikeGenTraversableLike
  283. def groupBy[K](f: (Boolean) ⇒ K): Map[K, Array[Boolean]]

    Permalink

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Note: this method is not re-implemented by views. This means when applied to a view it will always force the view and return a new mutable indexed sequence.

    K

    the type of keys returned by the discriminator function.

    f

    the discriminator function.

    returns

    A map from keys to mutable indexed sequences such that the following invariant holds:

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

    That is, every key k is bound to a mutable indexed sequence of those elements x for which f(x) equals k.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableLikeGenTraversableLike
  284. def hashCode(): Int

    Permalink

    The hashCode method for reference types.

    The hashCode method for reference types. See hashCode in scala.Any.

    returns

    the hash code value for this object.

    Definition Classes
    AnyRef → Any
  285. def indexOf(elem: Unit, from: Int): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array after or at some start index.

    [use case]

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

    elem

    the element value to search for.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B, from: Int): Int

  286. def indexOf(elem: Unit): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array.

    [use case]

    Finds index of first occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B): Int

  287. def indexOf(elem: Short, from: Int): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array after or at some start index.

    [use case]

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

    elem

    the element value to search for.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B, from: Int): Int

  288. def indexOf(elem: Short): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array.

    [use case]

    Finds index of first occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B): Int

  289. def indexOf(elem: Long, from: Int): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array after or at some start index.

    [use case]

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

    elem

    the element value to search for.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B, from: Int): Int

  290. def indexOf(elem: Long): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array.

    [use case]

    Finds index of first occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B): Int

  291. def indexOf(elem: Int, from: Int): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array after or at some start index.

    [use case]

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

    elem

    the element value to search for.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B, from: Int): Int

  292. def indexOf(elem: Int): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array.

    [use case]

    Finds index of first occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B): Int

  293. def indexOf(elem: Float, from: Int): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array after or at some start index.

    [use case]

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

    elem

    the element value to search for.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B, from: Int): Int

  294. def indexOf(elem: Float): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array.

    [use case]

    Finds index of first occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B): Int

  295. def indexOf(elem: Double, from: Int): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array after or at some start index.

    [use case]

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

    elem

    the element value to search for.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B, from: Int): Int

  296. def indexOf(elem: Double): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array.

    [use case]

    Finds index of first occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B): Int

  297. def indexOf(elem: Char, from: Int): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array after or at some start index.

    [use case]

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

    elem

    the element value to search for.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B, from: Int): Int

  298. def indexOf(elem: Char): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array.

    [use case]

    Finds index of first occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B): Int

  299. def indexOf(elem: Byte, from: Int): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array after or at some start index.

    [use case]

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

    elem

    the element value to search for.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B, from: Int): Int

  300. def indexOf(elem: Byte): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array.

    [use case]

    Finds index of first occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B): Int

  301. def indexOf(elem: Boolean, from: Int): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array after or at some start index.

    [use case]

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

    elem

    the element value to search for.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B, from: Int): Int

  302. def indexOf(elem: Boolean): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array.

    [use case]

    Finds index of first occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B): Int

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

    Permalink

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    from

    the start index

    returns

    the first index >= from such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    SeqLike
  304. def indexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the first index such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    SeqLike
  305. def indexOfSlice[B >: A](that: GenSeq[B], from: Int): Int

    Permalink

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    from

    the start index

    returns

    the first index >= from such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    SeqLike
  306. def indexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the first index such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    SeqLike
  307. def indexOfSlice[B >: A](that: GenSeq[B], from: Int): Int

    Permalink

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    from

    the start index

    returns

    the first index >= from such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    SeqLike
  308. def indexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the first index such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    SeqLike
  309. def indexOfSlice[B >: A](that: GenSeq[B], from: Int): Int

    Permalink

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    from

    the start index

    returns

    the first index >= from such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    SeqLike
  310. def indexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the first index such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    SeqLike
  311. def indexOfSlice[B >: A](that: GenSeq[B], from: Int): Int

    Permalink

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    from

    the start index

    returns

    the first index >= from such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    SeqLike
  312. def indexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the first index such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    SeqLike
  313. def indexOfSlice[B >: A](that: GenSeq[B], from: Int): Int

    Permalink

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    from

    the start index

    returns

    the first index >= from such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    SeqLike
  314. def indexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the first index such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    SeqLike
  315. def indexOfSlice[B >: A](that: GenSeq[B], from: Int): Int

    Permalink

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    from

    the start index

    returns

    the first index >= from such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    SeqLike
  316. def indexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the first index such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    SeqLike
  317. def indexOfSlice[B >: A](that: GenSeq[B], from: Int): Int

    Permalink

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    from

    the start index

    returns

    the first index >= from such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    SeqLike
  318. def indexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the first index such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    SeqLike
  319. def indexOfSlice[B >: A](that: GenSeq[B], from: Int): Int

    Permalink

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    from

    the start index

    returns

    the first index >= from such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    SeqLike
  320. def indexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the first index such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    SeqLike
  321. def indexOfSlice[B >: A](that: GenSeq[B], from: Int): Int

    Permalink

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    from

    the start index

    returns

    the first index >= from such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    SeqLike
  322. def indexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the first index such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    SeqLike
  323. def indexOfSlice[B >: A](that: GenSeq[B], from: Int): Int

    Permalink

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index after or at a start index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    from

    the start index

    returns

    the first index >= from such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    SeqLike
  324. def indexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    Finds first index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the first index such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    SeqLike
  325. def indexWhere(p: (Unit) ⇒ Boolean, from: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  326. def indexWhere(p: (Unit) ⇒ Boolean): Int

    Permalink

    Finds index of first element satisfying some predicate.

    Finds index of first element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the first element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    GenSeqLike
  327. def indexWhere(p: (Short) ⇒ Boolean, from: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  328. def indexWhere(p: (Short) ⇒ Boolean): Int

    Permalink

    Finds index of first element satisfying some predicate.

    Finds index of first element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the first element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    GenSeqLike
  329. def indexWhere(p: (Long) ⇒ Boolean, from: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  330. def indexWhere(p: (Long) ⇒ Boolean): Int

    Permalink

    Finds index of first element satisfying some predicate.

    Finds index of first element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the first element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    GenSeqLike
  331. def indexWhere(p: (Int) ⇒ Boolean, from: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  332. def indexWhere(p: (Int) ⇒ Boolean): Int

    Permalink

    Finds index of first element satisfying some predicate.

    Finds index of first element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the first element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    GenSeqLike
  333. def indexWhere(p: (Float) ⇒ Boolean, from: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  334. def indexWhere(p: (Float) ⇒ Boolean): Int

    Permalink

    Finds index of first element satisfying some predicate.

    Finds index of first element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the first element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    GenSeqLike
  335. def indexWhere(p: (Double) ⇒ Boolean, from: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  336. def indexWhere(p: (Double) ⇒ Boolean): Int

    Permalink

    Finds index of first element satisfying some predicate.

    Finds index of first element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the first element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    GenSeqLike
  337. def indexWhere(p: (Char) ⇒ Boolean, from: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  338. def indexWhere(p: (Char) ⇒ Boolean): Int

    Permalink

    Finds index of first element satisfying some predicate.

    Finds index of first element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the first element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    GenSeqLike
  339. def indexWhere(p: (Byte) ⇒ Boolean, from: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  340. def indexWhere(p: (Byte) ⇒ Boolean): Int

    Permalink

    Finds index of first element satisfying some predicate.

    Finds index of first element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the first element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    GenSeqLike
  341. def indexWhere(p: (Boolean) ⇒ Boolean, from: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    from

    the start index

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  342. def indexWhere(p: (Boolean) ⇒ Boolean): Int

    Permalink

    Finds index of first element satisfying some predicate.

    Finds index of first element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the first element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    GenSeqLike
  343. def intersect(that: collection.Seq[Unit]): Array[Unit]

    Permalink

    [use case] Computes the multiset intersection between this array and another sequence.

    [use case]

    Computes the multiset intersection between this array and another sequence.

    that

    the sequence of elements to intersect with.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def intersect[B >: A](that: GenSeq[B]): Array[Unit]

  344. def intersect(that: collection.Seq[Short]): Array[Short]

    Permalink

    [use case] Computes the multiset intersection between this array and another sequence.

    [use case]

    Computes the multiset intersection between this array and another sequence.

    that

    the sequence of elements to intersect with.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def intersect[B >: A](that: GenSeq[B]): Array[Short]

  345. def intersect(that: collection.Seq[Long]): Array[Long]

    Permalink

    [use case] Computes the multiset intersection between this array and another sequence.

    [use case]

    Computes the multiset intersection between this array and another sequence.

    that

    the sequence of elements to intersect with.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def intersect[B >: A](that: GenSeq[B]): Array[Long]

  346. def intersect(that: collection.Seq[Int]): Array[Int]

    Permalink

    [use case] Computes the multiset intersection between this array and another sequence.

    [use case]

    Computes the multiset intersection between this array and another sequence.

    that

    the sequence of elements to intersect with.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def intersect[B >: A](that: GenSeq[B]): Array[Int]

  347. def intersect(that: collection.Seq[Float]): Array[Float]

    Permalink

    [use case] Computes the multiset intersection between this array and another sequence.

    [use case]

    Computes the multiset intersection between this array and another sequence.

    that

    the sequence of elements to intersect with.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def intersect[B >: A](that: GenSeq[B]): Array[Float]

  348. def intersect(that: collection.Seq[Double]): Array[Double]

    Permalink

    [use case] Computes the multiset intersection between this array and another sequence.

    [use case]

    Computes the multiset intersection between this array and another sequence.

    that

    the sequence of elements to intersect with.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def intersect[B >: A](that: GenSeq[B]): Array[Double]

  349. def intersect(that: collection.Seq[Char]): Array[Char]

    Permalink

    [use case] Computes the multiset intersection between this array and another sequence.

    [use case]

    Computes the multiset intersection between this array and another sequence.

    that

    the sequence of elements to intersect with.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def intersect[B >: A](that: GenSeq[B]): Array[Char]

  350. def intersect(that: collection.Seq[Byte]): Array[Byte]

    Permalink

    [use case] Computes the multiset intersection between this array and another sequence.

    [use case]

    Computes the multiset intersection between this array and another sequence.

    that

    the sequence of elements to intersect with.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def intersect[B >: A](that: GenSeq[B]): Array[Byte]

  351. def intersect(that: collection.Seq[Boolean]): Array[Boolean]

    Permalink

    [use case] Computes the multiset intersection between this array and another sequence.

    [use case]

    Computes the multiset intersection between this array and another sequence.

    that

    the sequence of elements to intersect with.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def intersect[B >: A](that: GenSeq[B]): Array[Boolean]

  352. final def isInstanceOf[T0]: Boolean

    Permalink

    Test whether the dynamic type of the receiver object is T0.

    Test whether the dynamic type of the receiver object is T0.

    Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    Definition Classes
    Any
  353. def lastIndexOf(elem: Unit, end: Int): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array before or at a given end index.

    [use case]

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

    elem

    the element value to search for.

    end

    the end index.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B, end: Int): Int

  354. def lastIndexOf(elem: Unit): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array.

    [use case]

    Finds index of last occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B): Int

  355. def lastIndexOf(elem: Short, end: Int): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array before or at a given end index.

    [use case]

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

    elem

    the element value to search for.

    end

    the end index.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B, end: Int): Int

  356. def lastIndexOf(elem: Short): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array.

    [use case]

    Finds index of last occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B): Int

  357. def lastIndexOf(elem: Long, end: Int): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array before or at a given end index.

    [use case]

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

    elem

    the element value to search for.

    end

    the end index.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B, end: Int): Int

  358. def lastIndexOf(elem: Long): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array.

    [use case]

    Finds index of last occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B): Int

  359. def lastIndexOf(elem: Int, end: Int): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array before or at a given end index.

    [use case]

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

    elem

    the element value to search for.

    end

    the end index.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B, end: Int): Int

  360. def lastIndexOf(elem: Int): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array.

    [use case]

    Finds index of last occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B): Int

  361. def lastIndexOf(elem: Float, end: Int): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array before or at a given end index.

    [use case]

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

    elem

    the element value to search for.

    end

    the end index.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B, end: Int): Int

  362. def lastIndexOf(elem: Float): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array.

    [use case]

    Finds index of last occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B): Int

  363. def lastIndexOf(elem: Double, end: Int): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array before or at a given end index.

    [use case]

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

    elem

    the element value to search for.

    end

    the end index.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B, end: Int): Int

  364. def lastIndexOf(elem: Double): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array.

    [use case]

    Finds index of last occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B): Int

  365. def lastIndexOf(elem: Char, end: Int): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array before or at a given end index.

    [use case]

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

    elem

    the element value to search for.

    end

    the end index.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B, end: Int): Int

  366. def lastIndexOf(elem: Char): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array.

    [use case]

    Finds index of last occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B): Int

  367. def lastIndexOf(elem: Byte, end: Int): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array before or at a given end index.

    [use case]

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

    elem

    the element value to search for.

    end

    the end index.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B, end: Int): Int

  368. def lastIndexOf(elem: Byte): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array.

    [use case]

    Finds index of last occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B): Int

  369. def lastIndexOf(elem: Boolean, end: Int): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array before or at a given end index.

    [use case]

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

    elem

    the element value to search for.

    end

    the end index.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B, end: Int): Int

  370. def lastIndexOf(elem: Boolean): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array.

    [use case]

    Finds index of last occurrence of some value in this array.

    elem

    the element value to search for.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B): Int

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

    Permalink

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    end

    the end index

    returns

    the last index <= end such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    SeqLike
  372. def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the last index such that the elements of this mutable indexed sequence starting a this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    SeqLike
  373. def lastIndexOfSlice[B >: A](that: GenSeq[B], end: Int): Int

    Permalink

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    end

    the end index

    returns

    the last index <= end such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    SeqLike
  374. def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the last index such that the elements of this mutable indexed sequence starting a this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    SeqLike
  375. def lastIndexOfSlice[B >: A](that: GenSeq[B], end: Int): Int

    Permalink

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    end

    the end index

    returns

    the last index <= end such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    SeqLike
  376. def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the last index such that the elements of this mutable indexed sequence starting a this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    SeqLike
  377. def lastIndexOfSlice[B >: A](that: GenSeq[B], end: Int): Int

    Permalink

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    end

    the end index

    returns

    the last index <= end such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    SeqLike
  378. def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the last index such that the elements of this mutable indexed sequence starting a this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    SeqLike
  379. def lastIndexOfSlice[B >: A](that: GenSeq[B], end: Int): Int

    Permalink

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    end

    the end index

    returns

    the last index <= end such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    SeqLike
  380. def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the last index such that the elements of this mutable indexed sequence starting a this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    SeqLike
  381. def lastIndexOfSlice[B >: A](that: GenSeq[B], end: Int): Int

    Permalink

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    end

    the end index

    returns

    the last index <= end such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    SeqLike
  382. def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the last index such that the elements of this mutable indexed sequence starting a this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    SeqLike
  383. def lastIndexOfSlice[B >: A](that: GenSeq[B], end: Int): Int

    Permalink

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    end

    the end index

    returns

    the last index <= end such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    SeqLike
  384. def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the last index such that the elements of this mutable indexed sequence starting a this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    SeqLike
  385. def lastIndexOfSlice[B >: A](that: GenSeq[B], end: Int): Int

    Permalink

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    end

    the end index

    returns

    the last index <= end such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    SeqLike
  386. def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the last index such that the elements of this mutable indexed sequence starting a this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    SeqLike
  387. def lastIndexOfSlice[B >: A](that: GenSeq[B], end: Int): Int

    Permalink

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    end

    the end index

    returns

    the last index <= end such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    SeqLike
  388. def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the last index such that the elements of this mutable indexed sequence starting a this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    SeqLike
  389. def lastIndexOfSlice[B >: A](that: GenSeq[B], end: Int): Int

    Permalink

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    end

    the end index

    returns

    the last index <= end such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    SeqLike
  390. def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the last index such that the elements of this mutable indexed sequence starting a this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    SeqLike
  391. def lastIndexOfSlice[B >: A](that: GenSeq[B], end: Int): Int

    Permalink

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index before or at a given end index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    end

    the end index

    returns

    the last index <= end such that the elements of this mutable indexed sequence starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    SeqLike
  392. def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int

    Permalink

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    Finds last index where this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the last index such that the elements of this mutable indexed sequence starting a this index match the elements of sequence that, or -1 of no such subsequence exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    SeqLike
  393. def lastIndexWhere(p: (Unit) ⇒ Boolean, end: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  394. def lastIndexWhere(p: (Unit) ⇒ Boolean): Int

    Permalink

    Finds index of last element satisfying some predicate.

    Finds index of last element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the last element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    GenSeqLike
  395. def lastIndexWhere(p: (Short) ⇒ Boolean, end: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  396. def lastIndexWhere(p: (Short) ⇒ Boolean): Int

    Permalink

    Finds index of last element satisfying some predicate.

    Finds index of last element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the last element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    GenSeqLike
  397. def lastIndexWhere(p: (Long) ⇒ Boolean, end: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  398. def lastIndexWhere(p: (Long) ⇒ Boolean): Int

    Permalink

    Finds index of last element satisfying some predicate.

    Finds index of last element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the last element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    GenSeqLike
  399. def lastIndexWhere(p: (Int) ⇒ Boolean, end: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  400. def lastIndexWhere(p: (Int) ⇒ Boolean): Int

    Permalink

    Finds index of last element satisfying some predicate.

    Finds index of last element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the last element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    GenSeqLike
  401. def lastIndexWhere(p: (Float) ⇒ Boolean, end: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  402. def lastIndexWhere(p: (Float) ⇒ Boolean): Int

    Permalink

    Finds index of last element satisfying some predicate.

    Finds index of last element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the last element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    GenSeqLike
  403. def lastIndexWhere(p: (Double) ⇒ Boolean, end: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  404. def lastIndexWhere(p: (Double) ⇒ Boolean): Int

    Permalink

    Finds index of last element satisfying some predicate.

    Finds index of last element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the last element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    GenSeqLike
  405. def lastIndexWhere(p: (Char) ⇒ Boolean, end: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  406. def lastIndexWhere(p: (Char) ⇒ Boolean): Int

    Permalink

    Finds index of last element satisfying some predicate.

    Finds index of last element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the last element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    GenSeqLike
  407. def lastIndexWhere(p: (Byte) ⇒ Boolean, end: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  408. def lastIndexWhere(p: (Byte) ⇒ Boolean): Int

    Permalink

    Finds index of last element satisfying some predicate.

    Finds index of last element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the last element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    GenSeqLike
  409. def lastIndexWhere(p: (Boolean) ⇒ Boolean, end: Int): Int

    Permalink

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

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  410. def lastIndexWhere(p: (Boolean) ⇒ Boolean): Int

    Permalink

    Finds index of last element satisfying some predicate.

    Finds index of last element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the last element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    GenSeqLike
  411. def length: Int

    Permalink

    The length of the array

  412. def map[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array.

    [use case]

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

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def map[B, That](f: (Unit) ⇒ B)(implicit bf: CanBuildFrom[Array[Unit], B, That]): That

  413. def map[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array.

    [use case]

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

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def map[B, That](f: (Short) ⇒ B)(implicit bf: CanBuildFrom[Array[Short], B, That]): That

  414. def map[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array.

    [use case]

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

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def map[B, That](f: (T) ⇒ B)(implicit bf: CanBuildFrom[Array[T], B, That]): That

  415. def map[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array.

    [use case]

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

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def map[B, That](f: (Long) ⇒ B)(implicit bf: CanBuildFrom[Array[Long], B, That]): That

  416. def map[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array.

    [use case]

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

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def map[B, That](f: (Int) ⇒ B)(implicit bf: CanBuildFrom[Array[Int], B, That]): That

  417. def map[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array.

    [use case]

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

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def map[B, That](f: (Float) ⇒ B)(implicit bf: CanBuildFrom[Array[Float], B, That]): That

  418. def map[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array.

    [use case]

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

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def map[B, That](f: (Double) ⇒ B)(implicit bf: CanBuildFrom[Array[Double], B, That]): That

  419. def map[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array.

    [use case]

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

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def map[B, That](f: (Char) ⇒ B)(implicit bf: CanBuildFrom[Array[Char], B, That]): That

  420. def map[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array.

    [use case]

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

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def map[B, That](f: (Byte) ⇒ B)(implicit bf: CanBuildFrom[Array[Byte], B, That]): That

  421. def map[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array.

    [use case]

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

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def map[B, That](f: (Boolean) ⇒ B)(implicit bf: CanBuildFrom[Array[Boolean], B, That]): That

  422. def map[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array.

    [use case]

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

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    TraversableLikeGenTraversableLikeFilterMonadic
    Full Signature

    def map[B, That](f: (T) ⇒ B)(implicit bf: CanBuildFrom[Array[T], B, That]): That

  423. def maxBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the largest value measured by function f.

    [use case]

    Finds the first element which yields the largest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the largest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def maxBy[B](f: (Unit) ⇒ B)(implicit cmp: Ordering[B]): Unit

  424. def maxBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the largest value measured by function f.

    [use case]

    Finds the first element which yields the largest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the largest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def maxBy[B](f: (Short) ⇒ B)(implicit cmp: Ordering[B]): Short

  425. def maxBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the largest value measured by function f.

    [use case]

    Finds the first element which yields the largest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the largest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def maxBy[B](f: (T) ⇒ B)(implicit cmp: Ordering[B]): T

  426. def maxBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the largest value measured by function f.

    [use case]

    Finds the first element which yields the largest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the largest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def maxBy[B](f: (Long) ⇒ B)(implicit cmp: Ordering[B]): Long

  427. def maxBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the largest value measured by function f.

    [use case]

    Finds the first element which yields the largest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the largest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def maxBy[B](f: (Int) ⇒ B)(implicit cmp: Ordering[B]): Int

  428. def maxBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the largest value measured by function f.

    [use case]

    Finds the first element which yields the largest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the largest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def maxBy[B](f: (Float) ⇒ B)(implicit cmp: Ordering[B]): Float

  429. def maxBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the largest value measured by function f.

    [use case]

    Finds the first element which yields the largest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the largest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def maxBy[B](f: (Double) ⇒ B)(implicit cmp: Ordering[B]): Double

  430. def maxBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the largest value measured by function f.

    [use case]

    Finds the first element which yields the largest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the largest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def maxBy[B](f: (Char) ⇒ B)(implicit cmp: Ordering[B]): Char

  431. def maxBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the largest value measured by function f.

    [use case]

    Finds the first element which yields the largest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the largest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def maxBy[B](f: (Byte) ⇒ B)(implicit cmp: Ordering[B]): Byte

  432. def maxBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the largest value measured by function f.

    [use case]

    Finds the first element which yields the largest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the largest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def maxBy[B](f: (Boolean) ⇒ B)(implicit cmp: Ordering[B]): Boolean

  433. def maxBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the largest value measured by function f.

    [use case]

    Finds the first element which yields the largest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the largest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def maxBy[B](f: (T) ⇒ B)(implicit cmp: Ordering[B]): T

  434. def minBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the smallest value measured by function f.

    [use case]

    Finds the first element which yields the smallest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the smallest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def minBy[B](f: (Unit) ⇒ B)(implicit cmp: Ordering[B]): Unit

  435. def minBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the smallest value measured by function f.

    [use case]

    Finds the first element which yields the smallest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the smallest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def minBy[B](f: (Short) ⇒ B)(implicit cmp: Ordering[B]): Short

  436. def minBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the smallest value measured by function f.

    [use case]

    Finds the first element which yields the smallest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the smallest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def minBy[B](f: (T) ⇒ B)(implicit cmp: Ordering[B]): T

  437. def minBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the smallest value measured by function f.

    [use case]

    Finds the first element which yields the smallest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the smallest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def minBy[B](f: (Long) ⇒ B)(implicit cmp: Ordering[B]): Long

  438. def minBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the smallest value measured by function f.

    [use case]

    Finds the first element which yields the smallest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the smallest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def minBy[B](f: (Int) ⇒ B)(implicit cmp: Ordering[B]): Int

  439. def minBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the smallest value measured by function f.

    [use case]

    Finds the first element which yields the smallest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the smallest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def minBy[B](f: (Float) ⇒ B)(implicit cmp: Ordering[B]): Float

  440. def minBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the smallest value measured by function f.

    [use case]

    Finds the first element which yields the smallest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the smallest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def minBy[B](f: (Double) ⇒ B)(implicit cmp: Ordering[B]): Double

  441. def minBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the smallest value measured by function f.

    [use case]

    Finds the first element which yields the smallest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the smallest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def minBy[B](f: (Char) ⇒ B)(implicit cmp: Ordering[B]): Char

  442. def minBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the smallest value measured by function f.

    [use case]

    Finds the first element which yields the smallest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the smallest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def minBy[B](f: (Byte) ⇒ B)(implicit cmp: Ordering[B]): Byte

  443. def minBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the smallest value measured by function f.

    [use case]

    Finds the first element which yields the smallest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the smallest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def minBy[B](f: (Boolean) ⇒ B)(implicit cmp: Ordering[B]): Boolean

  444. def minBy[B](f: (A) ⇒ B): A

    Permalink

    [use case] Finds the first element which yields the smallest value measured by function f.

    [use case]

    Finds the first element which yields the smallest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this array with the smallest value measured by function f.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def minBy[B](f: (T) ⇒ B)(implicit cmp: Ordering[B]): T

  445. final def ne(arg0: AnyRef): Boolean

    Permalink

    Equivalent to !(this eq that).

    Equivalent to !(this eq that).

    returns

    true if the argument is not a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  446. final def notify(): Unit

    Permalink

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  447. final def notifyAll(): Unit

    Permalink

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  448. def partition(p: (Unit) ⇒ Boolean): (Array[Unit], Array[Unit])

    Permalink

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    p

    the predicate on which to partition.

    returns

    a pair of mutable indexed sequences: the first mutable indexed sequence consists of all elements that satisfy the predicate p and the second mutable indexed sequence consists of all elements that don't. The relative order of the elements in the resulting mutable indexed sequences is the same as in the original mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableLikeGenTraversableLike
  449. def partition(p: (Short) ⇒ Boolean): (Array[Short], Array[Short])

    Permalink

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    p

    the predicate on which to partition.

    returns

    a pair of mutable indexed sequences: the first mutable indexed sequence consists of all elements that satisfy the predicate p and the second mutable indexed sequence consists of all elements that don't. The relative order of the elements in the resulting mutable indexed sequences is the same as in the original mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableLikeGenTraversableLike
  450. def partition(p: (Long) ⇒ Boolean): (Array[Long], Array[Long])

    Permalink

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    p

    the predicate on which to partition.

    returns

    a pair of mutable indexed sequences: the first mutable indexed sequence consists of all elements that satisfy the predicate p and the second mutable indexed sequence consists of all elements that don't. The relative order of the elements in the resulting mutable indexed sequences is the same as in the original mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableLikeGenTraversableLike
  451. def partition(p: (Int) ⇒ Boolean): (Array[Int], Array[Int])

    Permalink

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    p

    the predicate on which to partition.

    returns

    a pair of mutable indexed sequences: the first mutable indexed sequence consists of all elements that satisfy the predicate p and the second mutable indexed sequence consists of all elements that don't. The relative order of the elements in the resulting mutable indexed sequences is the same as in the original mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableLikeGenTraversableLike
  452. def partition(p: (Float) ⇒ Boolean): (Array[Float], Array[Float])

    Permalink

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    p

    the predicate on which to partition.

    returns

    a pair of mutable indexed sequences: the first mutable indexed sequence consists of all elements that satisfy the predicate p and the second mutable indexed sequence consists of all elements that don't. The relative order of the elements in the resulting mutable indexed sequences is the same as in the original mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableLikeGenTraversableLike
  453. def partition(p: (Double) ⇒ Boolean): (Array[Double], Array[Double])

    Permalink

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    p

    the predicate on which to partition.

    returns

    a pair of mutable indexed sequences: the first mutable indexed sequence consists of all elements that satisfy the predicate p and the second mutable indexed sequence consists of all elements that don't. The relative order of the elements in the resulting mutable indexed sequences is the same as in the original mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableLikeGenTraversableLike
  454. def partition(p: (Char) ⇒ Boolean): (Array[Char], Array[Char])

    Permalink

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    p

    the predicate on which to partition.

    returns

    a pair of mutable indexed sequences: the first mutable indexed sequence consists of all elements that satisfy the predicate p and the second mutable indexed sequence consists of all elements that don't. The relative order of the elements in the resulting mutable indexed sequences is the same as in the original mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableLikeGenTraversableLike
  455. def partition(p: (Byte) ⇒ Boolean): (Array[Byte], Array[Byte])

    Permalink

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    p

    the predicate on which to partition.

    returns

    a pair of mutable indexed sequences: the first mutable indexed sequence consists of all elements that satisfy the predicate p and the second mutable indexed sequence consists of all elements that don't. The relative order of the elements in the resulting mutable indexed sequences is the same as in the original mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableLikeGenTraversableLike
  456. def partition(p: (Boolean) ⇒ Boolean): (Array[Boolean], Array[Boolean])

    Permalink

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    p

    the predicate on which to partition.

    returns

    a pair of mutable indexed sequences: the first mutable indexed sequence consists of all elements that satisfy the predicate p and the second mutable indexed sequence consists of all elements that don't. The relative order of the elements in the resulting mutable indexed sequences is the same as in the original mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableLikeGenTraversableLike
  457. def prefixLength(p: (Unit) ⇒ Boolean): Int

    Permalink

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    returns

    the length of the longest prefix of this mutable indexed sequence such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    GenSeqLike
  458. def prefixLength(p: (Short) ⇒ Boolean): Int

    Permalink

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    returns

    the length of the longest prefix of this mutable indexed sequence such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    GenSeqLike
  459. def prefixLength(p: (Long) ⇒ Boolean): Int

    Permalink

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    returns

    the length of the longest prefix of this mutable indexed sequence such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    GenSeqLike
  460. def prefixLength(p: (Int) ⇒ Boolean): Int

    Permalink

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    returns

    the length of the longest prefix of this mutable indexed sequence such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    GenSeqLike
  461. def prefixLength(p: (Float) ⇒ Boolean): Int

    Permalink

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    returns

    the length of the longest prefix of this mutable indexed sequence such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    GenSeqLike
  462. def prefixLength(p: (Double) ⇒ Boolean): Int

    Permalink

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    returns

    the length of the longest prefix of this mutable indexed sequence such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    GenSeqLike
  463. def prefixLength(p: (Char) ⇒ Boolean): Int

    Permalink

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    returns

    the length of the longest prefix of this mutable indexed sequence such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    GenSeqLike
  464. def prefixLength(p: (Byte) ⇒ Boolean): Int

    Permalink

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    returns

    the length of the longest prefix of this mutable indexed sequence such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    GenSeqLike
  465. def prefixLength(p: (Boolean) ⇒ Boolean): Int

    Permalink

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    returns

    the length of the longest prefix of this mutable indexed sequence such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    GenSeqLike
  466. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Permalink

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    The result of applying reduce operator op between all the elements if the mutable indexed sequence is nonempty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  467. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Permalink

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    The result of applying reduce operator op between all the elements if the mutable indexed sequence is nonempty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  468. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Permalink

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    The result of applying reduce operator op between all the elements if the mutable indexed sequence is nonempty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  469. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Permalink

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    The result of applying reduce operator op between all the elements if the mutable indexed sequence is nonempty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  470. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Permalink

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    The result of applying reduce operator op between all the elements if the mutable indexed sequence is nonempty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  471. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Permalink

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    The result of applying reduce operator op between all the elements if the mutable indexed sequence is nonempty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  472. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Permalink

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    The result of applying reduce operator op between all the elements if the mutable indexed sequence is nonempty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  473. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Permalink

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    The result of applying reduce operator op between all the elements if the mutable indexed sequence is nonempty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  474. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Permalink

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    The result of applying reduce operator op between all the elements if the mutable indexed sequence is nonempty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  475. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Permalink

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    The result of applying reduce operator op between all the elements if the mutable indexed sequence is nonempty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  476. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Permalink

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    The result of applying reduce operator op between all the elements if the mutable indexed sequence is nonempty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    TraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

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

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going left to right:

    op( op( ... op(x_1, x_2) ..., x_{n-1}), x_n)

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    IndexedSeqOptimizedTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

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

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going left to right:

    op( op( ... op(x_1, x_2) ..., x_{n-1}), x_n)

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    IndexedSeqOptimizedTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

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

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going left to right:

    op( op( ... op(x_1, x_2) ..., x_{n-1}), x_n)

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    IndexedSeqOptimizedTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

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

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going left to right:

    op( op( ... op(x_1, x_2) ..., x_{n-1}), x_n)

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    IndexedSeqOptimizedTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

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

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going left to right:

    op( op( ... op(x_1, x_2) ..., x_{n-1}), x_n)

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    IndexedSeqOptimizedTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

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

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going left to right:

    op( op( ... op(x_1, x_2) ..., x_{n-1}), x_n)

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    IndexedSeqOptimizedTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

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

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going left to right:

    op( op( ... op(x_1, x_2) ..., x_{n-1}), x_n)

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    IndexedSeqOptimizedTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

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

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going left to right:

    op( op( ... op(x_1, x_2) ..., x_{n-1}), x_n)

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    IndexedSeqOptimizedTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

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

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going left to right:

    op( op( ... op(x_1, x_2) ..., x_{n-1}), x_n)

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    IndexedSeqOptimizedTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

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

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going left to right:

    op( op( ... op(x_1, x_2) ..., x_{n-1}), x_n)

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    IndexedSeqOptimizedTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

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

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going left to right:

    op( op( ... op(x_1, x_2) ..., x_{n-1}), x_n)

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    IndexedSeqOptimizedTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  488. def reduceLeftOption[B >: A](op: (B, Unit) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceLeft(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableOnceGenTraversableOnce
  489. def reduceLeftOption[B >: A](op: (B, Short) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceLeft(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableOnceGenTraversableOnce
  490. def reduceLeftOption[B >: A](op: (B, T) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceLeft(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    TraversableOnceGenTraversableOnce
  491. def reduceLeftOption[B >: A](op: (B, Long) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceLeft(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableOnceGenTraversableOnce
  492. def reduceLeftOption[B >: A](op: (B, Int) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceLeft(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableOnceGenTraversableOnce
  493. def reduceLeftOption[B >: A](op: (B, Float) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceLeft(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableOnceGenTraversableOnce
  494. def reduceLeftOption[B >: A](op: (B, Double) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceLeft(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableOnceGenTraversableOnce
  495. def reduceLeftOption[B >: A](op: (B, Char) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceLeft(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableOnceGenTraversableOnce
  496. def reduceLeftOption[B >: A](op: (B, Byte) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceLeft(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableOnceGenTraversableOnce
  497. def reduceLeftOption[B >: A](op: (B, Boolean) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceLeft(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableOnceGenTraversableOnce
  498. def reduceLeftOption[B >: A](op: (B, T) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceLeft(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    TraversableOnceGenTraversableOnce
  499. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    An option value containing result of applying reduce operator op between all the elements if the collection is nonempty, and None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableOnceGenTraversableOnce
  500. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    An option value containing result of applying reduce operator op between all the elements if the collection is nonempty, and None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableOnceGenTraversableOnce
  501. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    An option value containing result of applying reduce operator op between all the elements if the collection is nonempty, and None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    TraversableOnceGenTraversableOnce
  502. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    An option value containing result of applying reduce operator op between all the elements if the collection is nonempty, and None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableOnceGenTraversableOnce
  503. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    An option value containing result of applying reduce operator op between all the elements if the collection is nonempty, and None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableOnceGenTraversableOnce
  504. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    An option value containing result of applying reduce operator op between all the elements if the collection is nonempty, and None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableOnceGenTraversableOnce
  505. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    An option value containing result of applying reduce operator op between all the elements if the collection is nonempty, and None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableOnceGenTraversableOnce
  506. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    An option value containing result of applying reduce operator op between all the elements if the collection is nonempty, and None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableOnceGenTraversableOnce
  507. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    An option value containing result of applying reduce operator op between all the elements if the collection is nonempty, and None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableOnceGenTraversableOnce
  508. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    An option value containing result of applying reduce operator op between all the elements if the collection is nonempty, and None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableOnceGenTraversableOnce
  509. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    Reduces the elements of this mutable indexed sequence, if any, using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    A1

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

    op

    A binary operator that must be associative.

    returns

    An option value containing result of applying reduce operator op between all the elements if the collection is nonempty, and None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    TraversableOnceGenTraversableOnce
  510. def reduceRight[B >: A](op: (Unit, B) ⇒ B): B

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going right to left:

    op(x_1, op(x_2, ..., op(x_{n-1}, x_n)...))

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  511. def reduceRight[B >: A](op: (Short, B) ⇒ B): B

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going right to left:

    op(x_1, op(x_2, ..., op(x_{n-1}, x_n)...))

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  512. def reduceRight[B >: A](op: (T, B) ⇒ B): B

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going right to left:

    op(x_1, op(x_2, ..., op(x_{n-1}, x_n)...))

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  513. def reduceRight[B >: A](op: (Long, B) ⇒ B): B

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going right to left:

    op(x_1, op(x_2, ..., op(x_{n-1}, x_n)...))

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  514. def reduceRight[B >: A](op: (Int, B) ⇒ B): B

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going right to left:

    op(x_1, op(x_2, ..., op(x_{n-1}, x_n)...))

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  515. def reduceRight[B >: A](op: (Float, B) ⇒ B): B

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going right to left:

    op(x_1, op(x_2, ..., op(x_{n-1}, x_n)...))

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  516. def reduceRight[B >: A](op: (Double, B) ⇒ B): B

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going right to left:

    op(x_1, op(x_2, ..., op(x_{n-1}, x_n)...))

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  517. def reduceRight[B >: A](op: (Char, B) ⇒ B): B

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going right to left:

    op(x_1, op(x_2, ..., op(x_{n-1}, x_n)...))

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  518. def reduceRight[B >: A](op: (Byte, B) ⇒ B): B

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going right to left:

    op(x_1, op(x_2, ..., op(x_{n-1}, x_n)...))

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  519. def reduceRight[B >: A](op: (Boolean, B) ⇒ B): B

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going right to left:

    op(x_1, op(x_2, ..., op(x_{n-1}, x_n)...))

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

  520. def reduceRight[B >: A](op: (T, B) ⇒ B): B

    Permalink

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this mutable indexed sequence, going right to left:

    op(x_1, op(x_2, ..., op(x_{n-1}, x_n)...))

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
    Exceptions thrown

    UnsupportedOperationException if this mutable indexed sequence is empty.

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

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceRight(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableOnceGenTraversableOnce
  522. def reduceRightOption[B >: A](op: (Short, B) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceRight(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableOnceGenTraversableOnce
  523. def reduceRightOption[B >: A](op: (T, B) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceRight(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    TraversableOnceGenTraversableOnce
  524. def reduceRightOption[B >: A](op: (Long, B) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceRight(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableOnceGenTraversableOnce
  525. def reduceRightOption[B >: A](op: (Int, B) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceRight(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableOnceGenTraversableOnce
  526. def reduceRightOption[B >: A](op: (Float, B) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceRight(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableOnceGenTraversableOnce
  527. def reduceRightOption[B >: A](op: (Double, B) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceRight(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableOnceGenTraversableOnce
  528. def reduceRightOption[B >: A](op: (Char, B) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceRight(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableOnceGenTraversableOnce
  529. def reduceRightOption[B >: A](op: (Byte, B) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceRight(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableOnceGenTraversableOnce
  530. def reduceRightOption[B >: A](op: (Boolean, B) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceRight(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableOnceGenTraversableOnce
  531. def reduceRightOption[B >: A](op: (T, B) ⇒ B): Option[B]

    Permalink

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    Optionally applies a binary operator to all elements of this mutable indexed sequence, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceRight(op) if this mutable indexed sequence is nonempty, None otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    TraversableOnceGenTraversableOnce
  532. def reverseMap[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    [use case]

    Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    Note: xs.reverseMap(f) is the same as xs.reverse.map(f) but might be more efficient.

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def reverseMap[B, That](f: (Unit) ⇒ B)(implicit bf: CanBuildFrom[Array[Unit], B, That]): That

  533. def reverseMap[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    [use case]

    Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    Note: xs.reverseMap(f) is the same as xs.reverse.map(f) but might be more efficient.

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def reverseMap[B, That](f: (Short) ⇒ B)(implicit bf: CanBuildFrom[Array[Short], B, That]): That

  534. def reverseMap[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    [use case]

    Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    Note: xs.reverseMap(f) is the same as xs.reverse.map(f) but might be more efficient.

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def reverseMap[B, That](f: (T) ⇒ B)(implicit bf: CanBuildFrom[Array[T], B, That]): That

  535. def reverseMap[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    [use case]

    Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    Note: xs.reverseMap(f) is the same as xs.reverse.map(f) but might be more efficient.

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def reverseMap[B, That](f: (Long) ⇒ B)(implicit bf: CanBuildFrom[Array[Long], B, That]): That

  536. def reverseMap[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    [use case]

    Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    Note: xs.reverseMap(f) is the same as xs.reverse.map(f) but might be more efficient.

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def reverseMap[B, That](f: (Int) ⇒ B)(implicit bf: CanBuildFrom[Array[Int], B, That]): That

  537. def reverseMap[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    [use case]

    Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    Note: xs.reverseMap(f) is the same as xs.reverse.map(f) but might be more efficient.

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def reverseMap[B, That](f: (Float) ⇒ B)(implicit bf: CanBuildFrom[Array[Float], B, That]): That

  538. def reverseMap[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    [use case]

    Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    Note: xs.reverseMap(f) is the same as xs.reverse.map(f) but might be more efficient.

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def reverseMap[B, That](f: (Double) ⇒ B)(implicit bf: CanBuildFrom[Array[Double], B, That]): That

  539. def reverseMap[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    [use case]

    Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    Note: xs.reverseMap(f) is the same as xs.reverse.map(f) but might be more efficient.

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def reverseMap[B, That](f: (Char) ⇒ B)(implicit bf: CanBuildFrom[Array[Char], B, That]): That

  540. def reverseMap[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    [use case]

    Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    Note: xs.reverseMap(f) is the same as xs.reverse.map(f) but might be more efficient.

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def reverseMap[B, That](f: (Byte) ⇒ B)(implicit bf: CanBuildFrom[Array[Byte], B, That]): That

  541. def reverseMap[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    [use case]

    Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    Note: xs.reverseMap(f) is the same as xs.reverse.map(f) but might be more efficient.

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def reverseMap[B, That](f: (Boolean) ⇒ B)(implicit bf: CanBuildFrom[Array[Boolean], B, That]): That

  542. def reverseMap[B](f: (A) ⇒ B): Array[B]

    Permalink

    [use case] Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    [use case]

    Builds a new collection by applying a function to all elements of this array and collecting the results in reversed order.

    Note: xs.reverseMap(f) is the same as xs.reverse.map(f) but might be more efficient.

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def reverseMap[B, That](f: (T) ⇒ B)(implicit bf: CanBuildFrom[Array[T], B, That]): That

  543. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Array[Unit], B, That]): That

    Permalink

    Computes a prefix scan of the elements of the collection.

    Computes a prefix scan of the elements of the collection.

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

    B

    element type of the resulting collection

    That

    type of the resulting collection

    z

    neutral element for the operator op

    op

    the associative operator for the scan

    cbf

    combiner factory which provides a combiner

    returns

    a new mutable indexed sequence containing the prefix scan of the elements in this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableLikeGenTraversableLike
  544. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Array[Short], B, That]): That

    Permalink

    Computes a prefix scan of the elements of the collection.

    Computes a prefix scan of the elements of the collection.

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

    B

    element type of the resulting collection

    That

    type of the resulting collection

    z

    neutral element for the operator op

    op

    the associative operator for the scan

    cbf

    combiner factory which provides a combiner

    returns

    a new mutable indexed sequence containing the prefix scan of the elements in this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableLikeGenTraversableLike
  545. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Array[T], B, That]): That

    Permalink

    Computes a prefix scan of the elements of the collection.

    Computes a prefix scan of the elements of the collection.

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

    B

    element type of the resulting collection

    That

    type of the resulting collection

    z

    neutral element for the operator op

    op

    the associative operator for the scan

    cbf

    combiner factory which provides a combiner

    returns

    a new mutable indexed sequence containing the prefix scan of the elements in this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    TraversableLikeGenTraversableLike
  546. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Array[Long], B, That]): That

    Permalink

    Computes a prefix scan of the elements of the collection.

    Computes a prefix scan of the elements of the collection.

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

    B

    element type of the resulting collection

    That

    type of the resulting collection

    z

    neutral element for the operator op

    op

    the associative operator for the scan

    cbf

    combiner factory which provides a combiner

    returns

    a new mutable indexed sequence containing the prefix scan of the elements in this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableLikeGenTraversableLike
  547. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Array[Int], B, That]): That

    Permalink

    Computes a prefix scan of the elements of the collection.

    Computes a prefix scan of the elements of the collection.

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

    B

    element type of the resulting collection

    That

    type of the resulting collection

    z

    neutral element for the operator op

    op

    the associative operator for the scan

    cbf

    combiner factory which provides a combiner

    returns

    a new mutable indexed sequence containing the prefix scan of the elements in this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableLikeGenTraversableLike
  548. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Array[Float], B, That]): That

    Permalink

    Computes a prefix scan of the elements of the collection.

    Computes a prefix scan of the elements of the collection.

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

    B

    element type of the resulting collection

    That

    type of the resulting collection

    z

    neutral element for the operator op

    op

    the associative operator for the scan

    cbf

    combiner factory which provides a combiner

    returns

    a new mutable indexed sequence containing the prefix scan of the elements in this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableLikeGenTraversableLike
  549. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Array[Double], B, That]): That

    Permalink

    Computes a prefix scan of the elements of the collection.

    Computes a prefix scan of the elements of the collection.

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

    B

    element type of the resulting collection

    That

    type of the resulting collection

    z

    neutral element for the operator op

    op

    the associative operator for the scan

    cbf

    combiner factory which provides a combiner

    returns

    a new mutable indexed sequence containing the prefix scan of the elements in this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableLikeGenTraversableLike
  550. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Array[Char], B, That]): That

    Permalink

    Computes a prefix scan of the elements of the collection.

    Computes a prefix scan of the elements of the collection.

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

    B

    element type of the resulting collection

    That

    type of the resulting collection

    z

    neutral element for the operator op

    op

    the associative operator for the scan

    cbf

    combiner factory which provides a combiner

    returns

    a new mutable indexed sequence containing the prefix scan of the elements in this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableLikeGenTraversableLike
  551. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Array[Byte], B, That]): That

    Permalink

    Computes a prefix scan of the elements of the collection.

    Computes a prefix scan of the elements of the collection.

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

    B

    element type of the resulting collection

    That

    type of the resulting collection

    z

    neutral element for the operator op

    op

    the associative operator for the scan

    cbf

    combiner factory which provides a combiner

    returns

    a new mutable indexed sequence containing the prefix scan of the elements in this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableLikeGenTraversableLike
  552. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Array[Boolean], B, That]): That

    Permalink

    Computes a prefix scan of the elements of the collection.

    Computes a prefix scan of the elements of the collection.

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

    B

    element type of the resulting collection

    That

    type of the resulting collection

    z

    neutral element for the operator op

    op

    the associative operator for the scan

    cbf

    combiner factory which provides a combiner

    returns

    a new mutable indexed sequence containing the prefix scan of the elements in this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableLikeGenTraversableLike
  553. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Array[T], B, That]): That

    Permalink

    Computes a prefix scan of the elements of the collection.

    Computes a prefix scan of the elements of the collection.

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

    B

    element type of the resulting collection

    That

    type of the resulting collection

    z

    neutral element for the operator op

    op

    the associative operator for the scan

    cbf

    combiner factory which provides a combiner

    returns

    a new mutable indexed sequence containing the prefix scan of the elements in this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    TraversableLikeGenTraversableLike
  554. def scanLeft[B, That](z: B)(op: (B, Unit) ⇒ B)(implicit bf: CanBuildFrom[Array[Unit], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going left to right.

    Produces a collection containing cumulative results of applying the operator going left to right.

    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableLikeGenTraversableLike
  555. def scanLeft[B, That](z: B)(op: (B, Short) ⇒ B)(implicit bf: CanBuildFrom[Array[Short], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going left to right.

    Produces a collection containing cumulative results of applying the operator going left to right.

    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableLikeGenTraversableLike
  556. def scanLeft[B, That](z: B)(op: (B, Long) ⇒ B)(implicit bf: CanBuildFrom[Array[Long], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going left to right.

    Produces a collection containing cumulative results of applying the operator going left to right.

    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableLikeGenTraversableLike
  557. def scanLeft[B, That](z: B)(op: (B, Int) ⇒ B)(implicit bf: CanBuildFrom[Array[Int], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going left to right.

    Produces a collection containing cumulative results of applying the operator going left to right.

    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableLikeGenTraversableLike
  558. def scanLeft[B, That](z: B)(op: (B, Float) ⇒ B)(implicit bf: CanBuildFrom[Array[Float], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going left to right.

    Produces a collection containing cumulative results of applying the operator going left to right.

    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableLikeGenTraversableLike
  559. def scanLeft[B, That](z: B)(op: (B, Double) ⇒ B)(implicit bf: CanBuildFrom[Array[Double], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going left to right.

    Produces a collection containing cumulative results of applying the operator going left to right.

    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableLikeGenTraversableLike
  560. def scanLeft[B, That](z: B)(op: (B, Char) ⇒ B)(implicit bf: CanBuildFrom[Array[Char], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going left to right.

    Produces a collection containing cumulative results of applying the operator going left to right.

    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableLikeGenTraversableLike
  561. def scanLeft[B, That](z: B)(op: (B, Byte) ⇒ B)(implicit bf: CanBuildFrom[Array[Byte], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going left to right.

    Produces a collection containing cumulative results of applying the operator going left to right.

    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableLikeGenTraversableLike
  562. def scanLeft[B, That](z: B)(op: (B, Boolean) ⇒ B)(implicit bf: CanBuildFrom[Array[Boolean], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going left to right.

    Produces a collection containing cumulative results of applying the operator going left to right.

    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableLikeGenTraversableLike
  563. def scanRight[B, That](z: B)(op: (Unit, B) ⇒ B)(implicit bf: CanBuildFrom[Array[Unit], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going right to left.

    Produces a collection containing cumulative results of applying the operator going right to left. The head of the collection is the last cumulative result.

    Example:

    List(1, 2, 3, 4).scanRight(0)(_ + _) == List(10, 9, 7, 4, 0)
    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableLikeGenTraversableLike
    Annotations
    @migration
    Migration

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

  564. def scanRight[B, That](z: B)(op: (Short, B) ⇒ B)(implicit bf: CanBuildFrom[Array[Short], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going right to left.

    Produces a collection containing cumulative results of applying the operator going right to left. The head of the collection is the last cumulative result.

    Example:

    List(1, 2, 3, 4).scanRight(0)(_ + _) == List(10, 9, 7, 4, 0)
    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableLikeGenTraversableLike
    Annotations
    @migration
    Migration

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

  565. def scanRight[B, That](z: B)(op: (Long, B) ⇒ B)(implicit bf: CanBuildFrom[Array[Long], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going right to left.

    Produces a collection containing cumulative results of applying the operator going right to left. The head of the collection is the last cumulative result.

    Example:

    List(1, 2, 3, 4).scanRight(0)(_ + _) == List(10, 9, 7, 4, 0)
    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableLikeGenTraversableLike
    Annotations
    @migration
    Migration

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

  566. def scanRight[B, That](z: B)(op: (Int, B) ⇒ B)(implicit bf: CanBuildFrom[Array[Int], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going right to left.

    Produces a collection containing cumulative results of applying the operator going right to left. The head of the collection is the last cumulative result.

    Example:

    List(1, 2, 3, 4).scanRight(0)(_ + _) == List(10, 9, 7, 4, 0)
    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableLikeGenTraversableLike
    Annotations
    @migration
    Migration

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

  567. def scanRight[B, That](z: B)(op: (Float, B) ⇒ B)(implicit bf: CanBuildFrom[Array[Float], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going right to left.

    Produces a collection containing cumulative results of applying the operator going right to left. The head of the collection is the last cumulative result.

    Example:

    List(1, 2, 3, 4).scanRight(0)(_ + _) == List(10, 9, 7, 4, 0)
    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableLikeGenTraversableLike
    Annotations
    @migration
    Migration

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

  568. def scanRight[B, That](z: B)(op: (Double, B) ⇒ B)(implicit bf: CanBuildFrom[Array[Double], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going right to left.

    Produces a collection containing cumulative results of applying the operator going right to left. The head of the collection is the last cumulative result.

    Example:

    List(1, 2, 3, 4).scanRight(0)(_ + _) == List(10, 9, 7, 4, 0)
    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableLikeGenTraversableLike
    Annotations
    @migration
    Migration

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

  569. def scanRight[B, That](z: B)(op: (Char, B) ⇒ B)(implicit bf: CanBuildFrom[Array[Char], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going right to left.

    Produces a collection containing cumulative results of applying the operator going right to left. The head of the collection is the last cumulative result.

    Example:

    List(1, 2, 3, 4).scanRight(0)(_ + _) == List(10, 9, 7, 4, 0)
    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableLikeGenTraversableLike
    Annotations
    @migration
    Migration

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

  570. def scanRight[B, That](z: B)(op: (Byte, B) ⇒ B)(implicit bf: CanBuildFrom[Array[Byte], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going right to left.

    Produces a collection containing cumulative results of applying the operator going right to left. The head of the collection is the last cumulative result.

    Example:

    List(1, 2, 3, 4).scanRight(0)(_ + _) == List(10, 9, 7, 4, 0)
    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableLikeGenTraversableLike
    Annotations
    @migration
    Migration

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

  571. def scanRight[B, That](z: B)(op: (Boolean, B) ⇒ B)(implicit bf: CanBuildFrom[Array[Boolean], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going right to left.

    Produces a collection containing cumulative results of applying the operator going right to left. The head of the collection is the last cumulative result.

    Example:

    List(1, 2, 3, 4).scanRight(0)(_ + _) == List(10, 9, 7, 4, 0)
    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableLikeGenTraversableLike
    Annotations
    @migration
    Migration

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

  572. def segmentLength(p: (Unit) ⇒ Boolean, from: Int): Int

    Permalink

    Computes length of longest segment whose elements all satisfy some predicate.

    Computes length of longest segment whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    from

    the index where the search starts.

    returns

    the length of the longest segment of this mutable indexed sequence starting from index from such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  573. def segmentLength(p: (Short) ⇒ Boolean, from: Int): Int

    Permalink

    Computes length of longest segment whose elements all satisfy some predicate.

    Computes length of longest segment whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    from

    the index where the search starts.

    returns

    the length of the longest segment of this mutable indexed sequence starting from index from such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  574. def segmentLength(p: (Long) ⇒ Boolean, from: Int): Int

    Permalink

    Computes length of longest segment whose elements all satisfy some predicate.

    Computes length of longest segment whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    from

    the index where the search starts.

    returns

    the length of the longest segment of this mutable indexed sequence starting from index from such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  575. def segmentLength(p: (Int) ⇒ Boolean, from: Int): Int

    Permalink

    Computes length of longest segment whose elements all satisfy some predicate.

    Computes length of longest segment whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    from

    the index where the search starts.

    returns

    the length of the longest segment of this mutable indexed sequence starting from index from such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  576. def segmentLength(p: (Float) ⇒ Boolean, from: Int): Int

    Permalink

    Computes length of longest segment whose elements all satisfy some predicate.

    Computes length of longest segment whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    from

    the index where the search starts.

    returns

    the length of the longest segment of this mutable indexed sequence starting from index from such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  577. def segmentLength(p: (Double) ⇒ Boolean, from: Int): Int

    Permalink

    Computes length of longest segment whose elements all satisfy some predicate.

    Computes length of longest segment whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    from

    the index where the search starts.

    returns

    the length of the longest segment of this mutable indexed sequence starting from index from such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  578. def segmentLength(p: (Char) ⇒ Boolean, from: Int): Int

    Permalink

    Computes length of longest segment whose elements all satisfy some predicate.

    Computes length of longest segment whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    from

    the index where the search starts.

    returns

    the length of the longest segment of this mutable indexed sequence starting from index from such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  579. def segmentLength(p: (Byte) ⇒ Boolean, from: Int): Int

    Permalink

    Computes length of longest segment whose elements all satisfy some predicate.

    Computes length of longest segment whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    from

    the index where the search starts.

    returns

    the length of the longest segment of this mutable indexed sequence starting from index from such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  580. def segmentLength(p: (Boolean) ⇒ Boolean, from: Int): Int

    Permalink

    Computes length of longest segment whose elements all satisfy some predicate.

    Computes length of longest segment whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    from

    the index where the search starts.

    returns

    the length of the longest segment of this mutable indexed sequence starting from index from such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  581. def sortBy[B](f: (Unit) ⇒ B)(implicit ord: math.Ordering[B]): Array[Unit]

    Permalink

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

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

    B

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

    f

    the transformation function mapping elements to some other domain B.

    ord

    the ordering assumed on domain B.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering where x < y if ord.lt(f(x), f(y)).

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    SeqLike
    Example:
    1. val words = "The quick brown fox jumped over the lazy dog".split(' ')
      // this works because scala.Ordering will implicitly provide an Ordering[Tuple2[Int, Char]]
      words.sortBy(x => (x.length, x.head))
      res0: Array[String] = Array(The, dog, fox, the, lazy, over, brown, quick, jumped)
    See also

    scala.math.Ordering

  582. def sortBy[B](f: (Short) ⇒ B)(implicit ord: math.Ordering[B]): Array[Short]

    Permalink

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

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

    B

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

    f

    the transformation function mapping elements to some other domain B.

    ord

    the ordering assumed on domain B.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering where x < y if ord.lt(f(x), f(y)).

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    SeqLike
    Example:
    1. val words = "The quick brown fox jumped over the lazy dog".split(' ')
      // this works because scala.Ordering will implicitly provide an Ordering[Tuple2[Int, Char]]
      words.sortBy(x => (x.length, x.head))
      res0: Array[String] = Array(The, dog, fox, the, lazy, over, brown, quick, jumped)
    See also

    scala.math.Ordering

  583. def sortBy[B](f: (Long) ⇒ B)(implicit ord: math.Ordering[B]): Array[Long]

    Permalink

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

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

    B

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

    f

    the transformation function mapping elements to some other domain B.

    ord

    the ordering assumed on domain B.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering where x < y if ord.lt(f(x), f(y)).

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    SeqLike
    Example:
    1. val words = "The quick brown fox jumped over the lazy dog".split(' ')
      // this works because scala.Ordering will implicitly provide an Ordering[Tuple2[Int, Char]]
      words.sortBy(x => (x.length, x.head))
      res0: Array[String] = Array(The, dog, fox, the, lazy, over, brown, quick, jumped)
    See also

    scala.math.Ordering

  584. def sortBy[B](f: (Int) ⇒ B)(implicit ord: math.Ordering[B]): Array[Int]

    Permalink

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

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

    B

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

    f

    the transformation function mapping elements to some other domain B.

    ord

    the ordering assumed on domain B.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering where x < y if ord.lt(f(x), f(y)).

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    SeqLike
    Example:
    1. val words = "The quick brown fox jumped over the lazy dog".split(' ')
      // this works because scala.Ordering will implicitly provide an Ordering[Tuple2[Int, Char]]
      words.sortBy(x => (x.length, x.head))
      res0: Array[String] = Array(The, dog, fox, the, lazy, over, brown, quick, jumped)
    See also

    scala.math.Ordering

  585. def sortBy[B](f: (Float) ⇒ B)(implicit ord: math.Ordering[B]): Array[Float]

    Permalink

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

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

    B

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

    f

    the transformation function mapping elements to some other domain B.

    ord

    the ordering assumed on domain B.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering where x < y if ord.lt(f(x), f(y)).

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    SeqLike
    Example:
    1. val words = "The quick brown fox jumped over the lazy dog".split(' ')
      // this works because scala.Ordering will implicitly provide an Ordering[Tuple2[Int, Char]]
      words.sortBy(x => (x.length, x.head))
      res0: Array[String] = Array(The, dog, fox, the, lazy, over, brown, quick, jumped)
    See also

    scala.math.Ordering

  586. def sortBy[B](f: (Double) ⇒ B)(implicit ord: math.Ordering[B]): Array[Double]

    Permalink

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

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

    B

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

    f

    the transformation function mapping elements to some other domain B.

    ord

    the ordering assumed on domain B.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering where x < y if ord.lt(f(x), f(y)).

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    SeqLike
    Example:
    1. val words = "The quick brown fox jumped over the lazy dog".split(' ')
      // this works because scala.Ordering will implicitly provide an Ordering[Tuple2[Int, Char]]
      words.sortBy(x => (x.length, x.head))
      res0: Array[String] = Array(The, dog, fox, the, lazy, over, brown, quick, jumped)
    See also

    scala.math.Ordering

  587. def sortBy[B](f: (Char) ⇒ B)(implicit ord: math.Ordering[B]): Array[Char]

    Permalink

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

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

    B

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

    f

    the transformation function mapping elements to some other domain B.

    ord

    the ordering assumed on domain B.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering where x < y if ord.lt(f(x), f(y)).

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    SeqLike
    Example:
    1. val words = "The quick brown fox jumped over the lazy dog".split(' ')
      // this works because scala.Ordering will implicitly provide an Ordering[Tuple2[Int, Char]]
      words.sortBy(x => (x.length, x.head))
      res0: Array[String] = Array(The, dog, fox, the, lazy, over, brown, quick, jumped)
    See also

    scala.math.Ordering

  588. def sortBy[B](f: (Byte) ⇒ B)(implicit ord: math.Ordering[B]): Array[Byte]

    Permalink

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

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

    B

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

    f

    the transformation function mapping elements to some other domain B.

    ord

    the ordering assumed on domain B.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering where x < y if ord.lt(f(x), f(y)).

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    SeqLike
    Example:
    1. val words = "The quick brown fox jumped over the lazy dog".split(' ')
      // this works because scala.Ordering will implicitly provide an Ordering[Tuple2[Int, Char]]
      words.sortBy(x => (x.length, x.head))
      res0: Array[String] = Array(The, dog, fox, the, lazy, over, brown, quick, jumped)
    See also

    scala.math.Ordering

  589. def sortBy[B](f: (Boolean) ⇒ B)(implicit ord: math.Ordering[B]): Array[Boolean]

    Permalink

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

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

    B

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

    f

    the transformation function mapping elements to some other domain B.

    ord

    the ordering assumed on domain B.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering where x < y if ord.lt(f(x), f(y)).

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    SeqLike
    Example:
    1. val words = "The quick brown fox jumped over the lazy dog".split(' ')
      // this works because scala.Ordering will implicitly provide an Ordering[Tuple2[Int, Char]]
      words.sortBy(x => (x.length, x.head))
      res0: Array[String] = Array(The, dog, fox, the, lazy, over, brown, quick, jumped)
    See also

    scala.math.Ordering

  590. def sortWith(lt: (Unit, Unit) ⇒ Boolean): Array[Unit]

    Permalink

    Sorts this mutable indexed sequence according to a comparison function.

    Sorts this mutable indexed sequence according to a comparison function.

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

    lt

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

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the comparison function lt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    SeqLike
    Example:
    1. List("Steve", "Tom", "John", "Bob").sortWith(_.compareTo(_) < 0) =
      List("Bob", "John", "Steve", "Tom")
  591. def sortWith(lt: (Short, Short) ⇒ Boolean): Array[Short]

    Permalink

    Sorts this mutable indexed sequence according to a comparison function.

    Sorts this mutable indexed sequence according to a comparison function.

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

    lt

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

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the comparison function lt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    SeqLike
    Example:
    1. List("Steve", "Tom", "John", "Bob").sortWith(_.compareTo(_) < 0) =
      List("Bob", "John", "Steve", "Tom")
  592. def sortWith(lt: (Long, Long) ⇒ Boolean): Array[Long]

    Permalink

    Sorts this mutable indexed sequence according to a comparison function.

    Sorts this mutable indexed sequence according to a comparison function.

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

    lt

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

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the comparison function lt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    SeqLike
    Example:
    1. List("Steve", "Tom", "John", "Bob").sortWith(_.compareTo(_) < 0) =
      List("Bob", "John", "Steve", "Tom")
  593. def sortWith(lt: (Int, Int) ⇒ Boolean): Array[Int]

    Permalink

    Sorts this mutable indexed sequence according to a comparison function.

    Sorts this mutable indexed sequence according to a comparison function.

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

    lt

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

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the comparison function lt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    SeqLike
    Example:
    1. List("Steve", "Tom", "John", "Bob").sortWith(_.compareTo(_) < 0) =
      List("Bob", "John", "Steve", "Tom")
  594. def sortWith(lt: (Float, Float) ⇒ Boolean): Array[Float]

    Permalink

    Sorts this mutable indexed sequence according to a comparison function.

    Sorts this mutable indexed sequence according to a comparison function.

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

    lt

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

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the comparison function lt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    SeqLike
    Example:
    1. List("Steve", "Tom", "John", "Bob").sortWith(_.compareTo(_) < 0) =
      List("Bob", "John", "Steve", "Tom")
  595. def sortWith(lt: (Double, Double) ⇒ Boolean): Array[Double]

    Permalink

    Sorts this mutable indexed sequence according to a comparison function.

    Sorts this mutable indexed sequence according to a comparison function.

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

    lt

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

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the comparison function lt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    SeqLike
    Example:
    1. List("Steve", "Tom", "John", "Bob").sortWith(_.compareTo(_) < 0) =
      List("Bob", "John", "Steve", "Tom")
  596. def sortWith(lt: (Char, Char) ⇒ Boolean): Array[Char]

    Permalink

    Sorts this mutable indexed sequence according to a comparison function.

    Sorts this mutable indexed sequence according to a comparison function.

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

    lt

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

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the comparison function lt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    SeqLike
    Example:
    1. List("Steve", "Tom", "John", "Bob").sortWith(_.compareTo(_) < 0) =
      List("Bob", "John", "Steve", "Tom")
  597. def sortWith(lt: (Byte, Byte) ⇒ Boolean): Array[Byte]

    Permalink

    Sorts this mutable indexed sequence according to a comparison function.

    Sorts this mutable indexed sequence according to a comparison function.

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

    lt

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

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the comparison function lt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    SeqLike
    Example:
    1. List("Steve", "Tom", "John", "Bob").sortWith(_.compareTo(_) < 0) =
      List("Bob", "John", "Steve", "Tom")
  598. def sortWith(lt: (Boolean, Boolean) ⇒ Boolean): Array[Boolean]

    Permalink

    Sorts this mutable indexed sequence according to a comparison function.

    Sorts this mutable indexed sequence according to a comparison function.

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

    lt

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

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the comparison function lt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    SeqLike
    Example:
    1. List("Steve", "Tom", "John", "Bob").sortWith(_.compareTo(_) < 0) =
      List("Bob", "John", "Steve", "Tom")
  599. def sorted[B >: A](implicit ord: math.Ordering[B]): Array[Unit]

    Permalink

    Sorts this mutable indexed sequence according to an Ordering.

    Sorts this mutable indexed sequence according to an Ordering.

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

    ord

    the ordering to be used to compare elements.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering ord.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    SeqLike
    See also

    scala.math.Ordering

  600. def sorted[B >: A](implicit ord: math.Ordering[B]): Array[Short]

    Permalink

    Sorts this mutable indexed sequence according to an Ordering.

    Sorts this mutable indexed sequence according to an Ordering.

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

    ord

    the ordering to be used to compare elements.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering ord.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    SeqLike
    See also

    scala.math.Ordering

  601. def sorted[B >: A](implicit ord: math.Ordering[B]): Array[T]

    Permalink

    Sorts this mutable indexed sequence according to an Ordering.

    Sorts this mutable indexed sequence according to an Ordering.

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

    ord

    the ordering to be used to compare elements.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering ord.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    SeqLike
    See also

    scala.math.Ordering

  602. def sorted[B >: A](implicit ord: math.Ordering[B]): Array[Long]

    Permalink

    Sorts this mutable indexed sequence according to an Ordering.

    Sorts this mutable indexed sequence according to an Ordering.

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

    ord

    the ordering to be used to compare elements.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering ord.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    SeqLike
    See also

    scala.math.Ordering

  603. def sorted[B >: A](implicit ord: math.Ordering[B]): Array[Int]

    Permalink

    Sorts this mutable indexed sequence according to an Ordering.

    Sorts this mutable indexed sequence according to an Ordering.

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

    ord

    the ordering to be used to compare elements.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering ord.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    SeqLike
    See also

    scala.math.Ordering

  604. def sorted[B >: A](implicit ord: math.Ordering[B]): Array[Float]

    Permalink

    Sorts this mutable indexed sequence according to an Ordering.

    Sorts this mutable indexed sequence according to an Ordering.

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

    ord

    the ordering to be used to compare elements.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering ord.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    SeqLike
    See also

    scala.math.Ordering

  605. def sorted[B >: A](implicit ord: math.Ordering[B]): Array[Double]

    Permalink

    Sorts this mutable indexed sequence according to an Ordering.

    Sorts this mutable indexed sequence according to an Ordering.

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

    ord

    the ordering to be used to compare elements.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering ord.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    SeqLike
    See also

    scala.math.Ordering

  606. def sorted[B >: A](implicit ord: math.Ordering[B]): Array[Char]

    Permalink

    Sorts this mutable indexed sequence according to an Ordering.

    Sorts this mutable indexed sequence according to an Ordering.

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

    ord

    the ordering to be used to compare elements.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering ord.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    SeqLike
    See also

    scala.math.Ordering

  607. def sorted[B >: A](implicit ord: math.Ordering[B]): Array[Byte]

    Permalink

    Sorts this mutable indexed sequence according to an Ordering.

    Sorts this mutable indexed sequence according to an Ordering.

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

    ord

    the ordering to be used to compare elements.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering ord.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    SeqLike
    See also

    scala.math.Ordering

  608. def sorted[B >: A](implicit ord: math.Ordering[B]): Array[Boolean]

    Permalink

    Sorts this mutable indexed sequence according to an Ordering.

    Sorts this mutable indexed sequence according to an Ordering.

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

    ord

    the ordering to be used to compare elements.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering ord.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    SeqLike
    See also

    scala.math.Ordering

  609. def sorted[B >: A](implicit ord: math.Ordering[B]): Array[T]

    Permalink

    Sorts this mutable indexed sequence according to an Ordering.

    Sorts this mutable indexed sequence according to an Ordering.

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

    ord

    the ordering to be used to compare elements.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering ord.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    SeqLike
    See also

    scala.math.Ordering

  610. def span(p: (Unit) ⇒ Boolean): (Array[Unit], Array[Unit])

    Permalink

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

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

    returns

    a pair consisting of the longest prefix of this mutable indexed sequence whose elements all satisfy p, and the rest of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  611. def span(p: (Short) ⇒ Boolean): (Array[Short], Array[Short])

    Permalink

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

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

    returns

    a pair consisting of the longest prefix of this mutable indexed sequence whose elements all satisfy p, and the rest of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  612. def span(p: (Long) ⇒ Boolean): (Array[Long], Array[Long])

    Permalink

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

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

    returns

    a pair consisting of the longest prefix of this mutable indexed sequence whose elements all satisfy p, and the rest of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  613. def span(p: (Int) ⇒ Boolean): (Array[Int], Array[Int])

    Permalink

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

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

    returns

    a pair consisting of the longest prefix of this mutable indexed sequence whose elements all satisfy p, and the rest of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  614. def span(p: (Float) ⇒ Boolean): (Array[Float], Array[Float])

    Permalink

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

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

    returns

    a pair consisting of the longest prefix of this mutable indexed sequence whose elements all satisfy p, and the rest of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  615. def span(p: (Double) ⇒ Boolean): (Array[Double], Array[Double])

    Permalink

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

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

    returns

    a pair consisting of the longest prefix of this mutable indexed sequence whose elements all satisfy p, and the rest of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  616. def span(p: (Char) ⇒ Boolean): (Array[Char], Array[Char])

    Permalink

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

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

    returns

    a pair consisting of the longest prefix of this mutable indexed sequence whose elements all satisfy p, and the rest of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  617. def span(p: (Byte) ⇒ Boolean): (Array[Byte], Array[Byte])

    Permalink

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

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

    returns

    a pair consisting of the longest prefix of this mutable indexed sequence whose elements all satisfy p, and the rest of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  618. def span(p: (Boolean) ⇒ Boolean): (Array[Boolean], Array[Boolean])

    Permalink

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

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

    returns

    a pair consisting of the longest prefix of this mutable indexed sequence whose elements all satisfy p, and the rest of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  619. def subSequence(start: Int, end: Int): CharSequence

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayCharSequence performed by method ArrayCharSequence in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    ArrayCharSequence → CharSequence
  620. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  621. def takeWhile(p: (Unit) ⇒ Boolean): Array[Unit]

    Permalink

    Takes longest prefix of elements that satisfy a predicate.

    Takes longest prefix of elements that satisfy a predicate.

    returns

    the longest prefix of this mutable indexed sequence whose elements all satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  622. def takeWhile(p: (Short) ⇒ Boolean): Array[Short]

    Permalink

    Takes longest prefix of elements that satisfy a predicate.

    Takes longest prefix of elements that satisfy a predicate.

    returns

    the longest prefix of this mutable indexed sequence whose elements all satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  623. def takeWhile(p: (Long) ⇒ Boolean): Array[Long]

    Permalink

    Takes longest prefix of elements that satisfy a predicate.

    Takes longest prefix of elements that satisfy a predicate.

    returns

    the longest prefix of this mutable indexed sequence whose elements all satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  624. def takeWhile(p: (Int) ⇒ Boolean): Array[Int]

    Permalink

    Takes longest prefix of elements that satisfy a predicate.

    Takes longest prefix of elements that satisfy a predicate.

    returns

    the longest prefix of this mutable indexed sequence whose elements all satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  625. def takeWhile(p: (Float) ⇒ Boolean): Array[Float]

    Permalink

    Takes longest prefix of elements that satisfy a predicate.

    Takes longest prefix of elements that satisfy a predicate.

    returns

    the longest prefix of this mutable indexed sequence whose elements all satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  626. def takeWhile(p: (Double) ⇒ Boolean): Array[Double]

    Permalink

    Takes longest prefix of elements that satisfy a predicate.

    Takes longest prefix of elements that satisfy a predicate.

    returns

    the longest prefix of this mutable indexed sequence whose elements all satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  627. def takeWhile(p: (Char) ⇒ Boolean): Array[Char]

    Permalink

    Takes longest prefix of elements that satisfy a predicate.

    Takes longest prefix of elements that satisfy a predicate.

    returns

    the longest prefix of this mutable indexed sequence whose elements all satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  628. def takeWhile(p: (Byte) ⇒ Boolean): Array[Byte]

    Permalink

    Takes longest prefix of elements that satisfy a predicate.

    Takes longest prefix of elements that satisfy a predicate.

    returns

    the longest prefix of this mutable indexed sequence whose elements all satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  629. def takeWhile(p: (Boolean) ⇒ Boolean): Array[Boolean]

    Permalink

    Takes longest prefix of elements that satisfy a predicate.

    Takes longest prefix of elements that satisfy a predicate.

    returns

    the longest prefix of this mutable indexed sequence whose elements all satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  630. def toString(): String

    Permalink

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    AnyRef → Any
  631. def transpose[U](implicit asArray: (Unit) ⇒ Array[U]): Array[Array[U]]

    Permalink

    Transposes a two dimensional array.

    Transposes a two dimensional array.

    U

    Type of row elements.

    asArray

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    ArrayOps
  632. def transpose[U](implicit asArray: (Short) ⇒ Array[U]): Array[Array[U]]

    Permalink

    Transposes a two dimensional array.

    Transposes a two dimensional array.

    U

    Type of row elements.

    asArray

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    ArrayOps
  633. def transpose[U](implicit asArray: (Long) ⇒ Array[U]): Array[Array[U]]

    Permalink

    Transposes a two dimensional array.

    Transposes a two dimensional array.

    U

    Type of row elements.

    asArray

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    ArrayOps
  634. def transpose[U](implicit asArray: (Int) ⇒ Array[U]): Array[Array[U]]

    Permalink

    Transposes a two dimensional array.

    Transposes a two dimensional array.

    U

    Type of row elements.

    asArray

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    ArrayOps
  635. def transpose[U](implicit asArray: (Float) ⇒ Array[U]): Array[Array[U]]

    Permalink

    Transposes a two dimensional array.

    Transposes a two dimensional array.

    U

    Type of row elements.

    asArray

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    ArrayOps
  636. def transpose[U](implicit asArray: (Double) ⇒ Array[U]): Array[Array[U]]

    Permalink

    Transposes a two dimensional array.

    Transposes a two dimensional array.

    U

    Type of row elements.

    asArray

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    ArrayOps
  637. def transpose[U](implicit asArray: (Char) ⇒ Array[U]): Array[Array[U]]

    Permalink

    Transposes a two dimensional array.

    Transposes a two dimensional array.

    U

    Type of row elements.

    asArray

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    ArrayOps
  638. def transpose[U](implicit asArray: (Byte) ⇒ Array[U]): Array[Array[U]]

    Permalink

    Transposes a two dimensional array.

    Transposes a two dimensional array.

    U

    Type of row elements.

    asArray

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    ArrayOps
  639. def transpose[U](implicit asArray: (Boolean) ⇒ Array[U]): Array[Array[U]]

    Permalink

    Transposes a two dimensional array.

    Transposes a two dimensional array.

    U

    Type of row elements.

    asArray

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    ArrayOps
  640. def union(that: collection.Seq[Unit]): Array[Unit]

    Permalink

    [use case] Produces a new sequence which contains all elements of this array and also all elements of a given sequence.

    [use case]

    Produces a new sequence which contains all elements of this array and also all elements of a given sequence. xs union ys is equivalent to xs ++ ys.

    Another way to express this is that xs union ys computes the order-preserving multi-set union of xs and ys. union is hence a counter-part of diff and intersect which also work on multi-sets.

    that

    the sequence to add.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def union[B >: A, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Array[Unit], B, That]): That

  641. def union(that: collection.Seq[Short]): Array[Short]

    Permalink

    [use case] Produces a new sequence which contains all elements of this array and also all elements of a given sequence.

    [use case]

    Produces a new sequence which contains all elements of this array and also all elements of a given sequence. xs union ys is equivalent to xs ++ ys.

    Another way to express this is that xs union ys computes the order-preserving multi-set union of xs and ys. union is hence a counter-part of diff and intersect which also work on multi-sets.

    that

    the sequence to add.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def union[B >: A, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Array[Short], B, That]): That

  642. def union(that: collection.Seq[Long]): Array[Long]

    Permalink

    [use case] Produces a new sequence which contains all elements of this array and also all elements of a given sequence.

    [use case]

    Produces a new sequence which contains all elements of this array and also all elements of a given sequence. xs union ys is equivalent to xs ++ ys.

    Another way to express this is that xs union ys computes the order-preserving multi-set union of xs and ys. union is hence a counter-part of diff and intersect which also work on multi-sets.

    that

    the sequence to add.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def union[B >: A, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Array[Long], B, That]): That

  643. def union(that: collection.Seq[Int]): Array[Int]

    Permalink

    [use case] Produces a new sequence which contains all elements of this array and also all elements of a given sequence.

    [use case]

    Produces a new sequence which contains all elements of this array and also all elements of a given sequence. xs union ys is equivalent to xs ++ ys.

    Another way to express this is that xs union ys computes the order-preserving multi-set union of xs and ys. union is hence a counter-part of diff and intersect which also work on multi-sets.

    that

    the sequence to add.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def union[B >: A, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Array[Int], B, That]): That

  644. def union(that: collection.Seq[Float]): Array[Float]

    Permalink

    [use case] Produces a new sequence which contains all elements of this array and also all elements of a given sequence.

    [use case]

    Produces a new sequence which contains all elements of this array and also all elements of a given sequence. xs union ys is equivalent to xs ++ ys.

    Another way to express this is that xs union ys computes the order-preserving multi-set union of xs and ys. union is hence a counter-part of diff and intersect which also work on multi-sets.

    that

    the sequence to add.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def union[B >: A, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Array[Float], B, That]): That

  645. def union(that: collection.Seq[Double]): Array[Double]

    Permalink

    [use case] Produces a new sequence which contains all elements of this array and also all elements of a given sequence.

    [use case]

    Produces a new sequence which contains all elements of this array and also all elements of a given sequence. xs union ys is equivalent to xs ++ ys.

    Another way to express this is that xs union ys computes the order-preserving multi-set union of xs and ys. union is hence a counter-part of diff and intersect which also work on multi-sets.

    that

    the sequence to add.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def union[B >: A, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Array[Double], B, That]): That

  646. def union(that: collection.Seq[Char]): Array[Char]

    Permalink

    [use case] Produces a new sequence which contains all elements of this array and also all elements of a given sequence.

    [use case]

    Produces a new sequence which contains all elements of this array and also all elements of a given sequence. xs union ys is equivalent to xs ++ ys.

    Another way to express this is that xs union ys computes the order-preserving multi-set union of xs and ys. union is hence a counter-part of diff and intersect which also work on multi-sets.

    that

    the sequence to add.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def union[B >: A, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Array[Char], B, That]): That

  647. def union(that: collection.Seq[Byte]): Array[Byte]

    Permalink

    [use case] Produces a new sequence which contains all elements of this array and also all elements of a given sequence.

    [use case]

    Produces a new sequence which contains all elements of this array and also all elements of a given sequence. xs union ys is equivalent to xs ++ ys.

    Another way to express this is that xs union ys computes the order-preserving multi-set union of xs and ys. union is hence a counter-part of diff and intersect which also work on multi-sets.

    that

    the sequence to add.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def union[B >: A, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Array[Byte], B, That]): That

  648. def union(that: collection.Seq[Boolean]): Array[Boolean]

    Permalink

    [use case] Produces a new sequence which contains all elements of this array and also all elements of a given sequence.

    [use case]

    Produces a new sequence which contains all elements of this array and also all elements of a given sequence. xs union ys is equivalent to xs ++ ys.

    Another way to express this is that xs union ys computes the order-preserving multi-set union of xs and ys. union is hence a counter-part of diff and intersect which also work on multi-sets.

    that

    the sequence to add.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def union[B >: A, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Array[Boolean], B, That]): That

  649. def unzip[T1, T2](implicit asPair: (Unit) ⇒ (T1, T2), ct1: ClassTag[T1], ct2: ClassTag[T2]): (Array[T1], Array[T2])

    Permalink

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

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

    T1

    the type of the first half of the element pairs

    T2

    the type of the second half of the element pairs

    asPair

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    ArrayOps
  650. def unzip[T1, T2](implicit asPair: (Short) ⇒ (T1, T2), ct1: ClassTag[T1], ct2: ClassTag[T2]): (Array[T1], Array[T2])

    Permalink

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

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

    T1

    the type of the first half of the element pairs

    T2

    the type of the second half of the element pairs

    asPair

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    ArrayOps
  651. def unzip[T1, T2](implicit asPair: (Long) ⇒ (T1, T2), ct1: ClassTag[T1], ct2: ClassTag[T2]): (Array[T1], Array[T2])

    Permalink

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

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

    T1

    the type of the first half of the element pairs

    T2

    the type of the second half of the element pairs

    asPair

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    ArrayOps
  652. def unzip[T1, T2](implicit asPair: (Int) ⇒ (T1, T2), ct1: ClassTag[T1], ct2: ClassTag[T2]): (Array[T1], Array[T2])

    Permalink

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

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

    T1

    the type of the first half of the element pairs

    T2

    the type of the second half of the element pairs

    asPair

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    ArrayOps
  653. def unzip[T1, T2](implicit asPair: (Float) ⇒ (T1, T2), ct1: ClassTag[T1], ct2: ClassTag[T2]): (Array[T1], Array[T2])

    Permalink

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

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

    T1

    the type of the first half of the element pairs

    T2

    the type of the second half of the element pairs

    asPair

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    ArrayOps
  654. def unzip[T1, T2](implicit asPair: (Double) ⇒ (T1, T2), ct1: ClassTag[T1], ct2: ClassTag[T2]): (Array[T1], Array[T2])

    Permalink

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

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

    T1

    the type of the first half of the element pairs

    T2

    the type of the second half of the element pairs

    asPair

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    ArrayOps
  655. def unzip[T1, T2](implicit asPair: (Char) ⇒ (T1, T2), ct1: ClassTag[T1], ct2: ClassTag[T2]): (Array[T1], Array[T2])

    Permalink

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

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

    T1

    the type of the first half of the element pairs

    T2

    the type of the second half of the element pairs

    asPair

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    ArrayOps
  656. def unzip[T1, T2](implicit asPair: (Byte) ⇒ (T1, T2), ct1: ClassTag[T1], ct2: ClassTag[T2]): (Array[T1], Array[T2])

    Permalink

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

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

    T1

    the type of the first half of the element pairs

    T2

    the type of the second half of the element pairs

    asPair

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    ArrayOps
  657. def unzip[T1, T2](implicit asPair: (Boolean) ⇒ (T1, T2), ct1: ClassTag[T1], ct2: ClassTag[T2]): (Array[T1], Array[T2])

    Permalink

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

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

    T1

    the type of the first half of the element pairs

    T2

    the type of the second half of the element pairs

    asPair

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    ArrayOps
  658. def unzip3[T1, T2, T3](implicit asTriple: (Unit) ⇒ (T1, T2, T3), ct1: ClassTag[T1], ct2: ClassTag[T2], ct3: ClassTag[T3]): (Array[T1], Array[T2], Array[T3])

    Permalink

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

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

    T1

    the type of the first of three elements in the triple

    T2

    the type of the second of three elements in the triple

    T3

    the type of the third of three elements in the triple

    asTriple

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    ct3

    a class tag for T3 type parameter that is required to create an instance of Array[T3]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    ArrayOps
  659. def unzip3[T1, T2, T3](implicit asTriple: (Short) ⇒ (T1, T2, T3), ct1: ClassTag[T1], ct2: ClassTag[T2], ct3: ClassTag[T3]): (Array[T1], Array[T2], Array[T3])

    Permalink

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

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

    T1

    the type of the first of three elements in the triple

    T2

    the type of the second of three elements in the triple

    T3

    the type of the third of three elements in the triple

    asTriple

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    ct3

    a class tag for T3 type parameter that is required to create an instance of Array[T3]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    ArrayOps
  660. def unzip3[T1, T2, T3](implicit asTriple: (Long) ⇒ (T1, T2, T3), ct1: ClassTag[T1], ct2: ClassTag[T2], ct3: ClassTag[T3]): (Array[T1], Array[T2], Array[T3])

    Permalink

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

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

    T1

    the type of the first of three elements in the triple

    T2

    the type of the second of three elements in the triple

    T3

    the type of the third of three elements in the triple

    asTriple

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    ct3

    a class tag for T3 type parameter that is required to create an instance of Array[T3]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    ArrayOps
  661. def unzip3[T1, T2, T3](implicit asTriple: (Int) ⇒ (T1, T2, T3), ct1: ClassTag[T1], ct2: ClassTag[T2], ct3: ClassTag[T3]): (Array[T1], Array[T2], Array[T3])

    Permalink

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

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

    T1

    the type of the first of three elements in the triple

    T2

    the type of the second of three elements in the triple

    T3

    the type of the third of three elements in the triple

    asTriple

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    ct3

    a class tag for T3 type parameter that is required to create an instance of Array[T3]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    ArrayOps
  662. def unzip3[T1, T2, T3](implicit asTriple: (Float) ⇒ (T1, T2, T3), ct1: ClassTag[T1], ct2: ClassTag[T2], ct3: ClassTag[T3]): (Array[T1], Array[T2], Array[T3])

    Permalink

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

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

    T1

    the type of the first of three elements in the triple

    T2

    the type of the second of three elements in the triple

    T3

    the type of the third of three elements in the triple

    asTriple

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    ct3

    a class tag for T3 type parameter that is required to create an instance of Array[T3]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    ArrayOps
  663. def unzip3[T1, T2, T3](implicit asTriple: (Double) ⇒ (T1, T2, T3), ct1: ClassTag[T1], ct2: ClassTag[T2], ct3: ClassTag[T3]): (Array[T1], Array[T2], Array[T3])

    Permalink

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

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

    T1

    the type of the first of three elements in the triple

    T2

    the type of the second of three elements in the triple

    T3

    the type of the third of three elements in the triple

    asTriple

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    ct3

    a class tag for T3 type parameter that is required to create an instance of Array[T3]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    ArrayOps
  664. def unzip3[T1, T2, T3](implicit asTriple: (Char) ⇒ (T1, T2, T3), ct1: ClassTag[T1], ct2: ClassTag[T2], ct3: ClassTag[T3]): (Array[T1], Array[T2], Array[T3])

    Permalink

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

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

    T1

    the type of the first of three elements in the triple

    T2

    the type of the second of three elements in the triple

    T3

    the type of the third of three elements in the triple

    asTriple

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    ct3

    a class tag for T3 type parameter that is required to create an instance of Array[T3]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    ArrayOps
  665. def unzip3[T1, T2, T3](implicit asTriple: (Byte) ⇒ (T1, T2, T3), ct1: ClassTag[T1], ct2: ClassTag[T2], ct3: ClassTag[T3]): (Array[T1], Array[T2], Array[T3])

    Permalink

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

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

    T1

    the type of the first of three elements in the triple

    T2

    the type of the second of three elements in the triple

    T3

    the type of the third of three elements in the triple

    asTriple

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    ct3

    a class tag for T3 type parameter that is required to create an instance of Array[T3]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    ArrayOps
  666. def unzip3[T1, T2, T3](implicit asTriple: (Boolean) ⇒ (T1, T2, T3), ct1: ClassTag[T1], ct2: ClassTag[T2], ct3: ClassTag[T3]): (Array[T1], Array[T2], Array[T3])

    Permalink

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

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

    T1

    the type of the first of three elements in the triple

    T2

    the type of the second of three elements in the triple

    T3

    the type of the third of three elements in the triple

    asTriple

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

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    ct3

    a class tag for T3 type parameter that is required to create an instance of Array[T3]

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    ArrayOps
  667. def update(i: Int, x: T): Unit

    Permalink

    Update the element at given index.

    Update the element at given index.

    Indices start at 0; xs.update(i, x) replaces the ith element in the array. Note the syntax xs(i) = x is a shorthand for xs.update(i, x).

    i

    the index

    x

    the value to be written at index i

    Exceptions thrown

    ArrayIndexOutOfBoundsException if i < 0 or length <= i

  668. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  671. def withFilter(p: (Unit) ⇒ Boolean): FilterMonadic[Unit, Array[Unit]]

    Permalink

    Creates a non-strict filter of this mutable indexed sequence.

    Creates a non-strict filter of this mutable indexed sequence.

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    TraversableLikeFilterMonadic
  672. def withFilter(p: (Short) ⇒ Boolean): FilterMonadic[Short, Array[Short]]

    Permalink

    Creates a non-strict filter of this mutable indexed sequence.

    Creates a non-strict filter of this mutable indexed sequence.

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    TraversableLikeFilterMonadic
  673. def withFilter(p: (Long) ⇒ Boolean): FilterMonadic[Long, Array[Long]]

    Permalink

    Creates a non-strict filter of this mutable indexed sequence.

    Creates a non-strict filter of this mutable indexed sequence.

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    TraversableLikeFilterMonadic
  674. def withFilter(p: (Int) ⇒ Boolean): FilterMonadic[Int, Array[Int]]

    Permalink

    Creates a non-strict filter of this mutable indexed sequence.

    Creates a non-strict filter of this mutable indexed sequence.

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    TraversableLikeFilterMonadic
  675. def withFilter(p: (Float) ⇒ Boolean): FilterMonadic[Float, Array[Float]]

    Permalink

    Creates a non-strict filter of this mutable indexed sequence.

    Creates a non-strict filter of this mutable indexed sequence.

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    TraversableLikeFilterMonadic
  676. def withFilter(p: (Double) ⇒ Boolean): FilterMonadic[Double, Array[Double]]

    Permalink

    Creates a non-strict filter of this mutable indexed sequence.

    Creates a non-strict filter of this mutable indexed sequence.

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    TraversableLikeFilterMonadic
  677. def withFilter(p: (Char) ⇒ Boolean): FilterMonadic[Char, Array[Char]]

    Permalink

    Creates a non-strict filter of this mutable indexed sequence.

    Creates a non-strict filter of this mutable indexed sequence.

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    TraversableLikeFilterMonadic
  678. def withFilter(p: (Byte) ⇒ Boolean): FilterMonadic[Byte, Array[Byte]]

    Permalink

    Creates a non-strict filter of this mutable indexed sequence.

    Creates a non-strict filter of this mutable indexed sequence.

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    TraversableLikeFilterMonadic
  679. def withFilter(p: (Boolean) ⇒ Boolean): FilterMonadic[Boolean, Array[Boolean]]

    Permalink

    Creates a non-strict filter of this mutable indexed sequence.

    Creates a non-strict filter of this mutable indexed sequence.

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

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    TraversableLikeFilterMonadic
  680. def zip[B](that: GenIterable[B]): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is longer than the other, its remaining elements are ignored.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Array[Unit], (A1, B), That]): That

  681. def zip[B](that: GenIterable[B]): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is longer than the other, its remaining elements are ignored.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Array[Short], (A1, B), That]): That

  682. def zip[B](that: GenIterable[B]): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is longer than the other, its remaining elements are ignored.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Array[T], (A1, B), That]): That

  683. def zip[B](that: GenIterable[B]): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is longer than the other, its remaining elements are ignored.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Array[Long], (A1, B), That]): That

  684. def zip[B](that: GenIterable[B]): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is longer than the other, its remaining elements are ignored.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Array[Int], (A1, B), That]): That

  685. def zip[B](that: GenIterable[B]): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is longer than the other, its remaining elements are ignored.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Array[Float], (A1, B), That]): That

  686. def zip[B](that: GenIterable[B]): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is longer than the other, its remaining elements are ignored.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Array[Double], (A1, B), That]): That

  687. def zip[B](that: GenIterable[B]): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is longer than the other, its remaining elements are ignored.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Array[Char], (A1, B), That]): That

  688. def zip[B](that: GenIterable[B]): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is longer than the other, its remaining elements are ignored.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Array[Byte], (A1, B), That]): That

  689. def zip[B](that: GenIterable[B]): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is longer than the other, its remaining elements are ignored.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Array[Boolean], (A1, B), That]): That

  690. def zip[B](that: GenIterable[B]): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is longer than the other, its remaining elements are ignored.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Array[T], (A1, B), That]): That

  691. def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is shorter than the other, placeholder elements are used to extend the shorter collection to the length of the longer.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    thisElem

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

    thatElem

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Definition Classes
    IterableLikeGenIterableLike
    Full Signature

    def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Array[Unit], (A1, B), That]): That

  692. def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is shorter than the other, placeholder elements are used to extend the shorter collection to the length of the longer.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    thisElem

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

    thatElem

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Definition Classes
    IterableLikeGenIterableLike
    Full Signature

    def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Array[Short], (A1, B), That]): That

  693. def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is shorter than the other, placeholder elements are used to extend the shorter collection to the length of the longer.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    thisElem

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

    thatElem

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Definition Classes
    IterableLikeGenIterableLike
    Full Signature

    def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Array[T], (A1, B), That]): That

  694. def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is shorter than the other, placeholder elements are used to extend the shorter collection to the length of the longer.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    thisElem

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

    thatElem

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Definition Classes
    IterableLikeGenIterableLike
    Full Signature

    def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Array[Long], (A1, B), That]): That

  695. def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is shorter than the other, placeholder elements are used to extend the shorter collection to the length of the longer.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    thisElem

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

    thatElem

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Definition Classes
    IterableLikeGenIterableLike
    Full Signature

    def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Array[Int], (A1, B), That]): That

  696. def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is shorter than the other, placeholder elements are used to extend the shorter collection to the length of the longer.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    thisElem

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

    thatElem

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Definition Classes
    IterableLikeGenIterableLike
    Full Signature

    def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Array[Float], (A1, B), That]): That

  697. def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is shorter than the other, placeholder elements are used to extend the shorter collection to the length of the longer.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    thisElem

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

    thatElem

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Definition Classes
    IterableLikeGenIterableLike
    Full Signature

    def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Array[Double], (A1, B), That]): That

  698. def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is shorter than the other, placeholder elements are used to extend the shorter collection to the length of the longer.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    thisElem

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

    thatElem

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Definition Classes
    IterableLikeGenIterableLike
    Full Signature

    def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Array[Char], (A1, B), That]): That

  699. def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is shorter than the other, placeholder elements are used to extend the shorter collection to the length of the longer.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    thisElem

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

    thatElem

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Definition Classes
    IterableLikeGenIterableLike
    Full Signature

    def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Array[Byte], (A1, B), That]): That

  700. def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is shorter than the other, placeholder elements are used to extend the shorter collection to the length of the longer.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    thisElem

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

    thatElem

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Definition Classes
    IterableLikeGenIterableLike
    Full Signature

    def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Array[Boolean], (A1, B), That]): That

  701. def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): Array[(A, B)]

    Permalink

    [use case] Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs.

    [use case]

    Returns a array formed from this array and another iterable collection by combining corresponding elements in pairs. If one of the two collections is shorter than the other, placeholder elements are used to extend the shorter collection to the length of the longer.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    thisElem

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

    thatElem

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

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Definition Classes
    IterableLikeGenIterableLike
    Full Signature

    def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Array[T], (A1, B), That]): That

  702. def [B](y: B): (Array[T], B)

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

Shadowed Implicit Value Members

  1. def +:(elem: A): Array[A]

    Permalink

    [use case] A copy of the array with an element prepended.

    [use case]

    A copy of the array with an element prepended.

    Note that :-ending operators are right associative (see example). A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Also, the original array is not modified, so you will want to capture the result.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = 2 +: x
    y: List[Int] = List(2, 1)
    
    scala> println(x)
    List(1)
    elem

    the prepended element

    returns

    a new array consisting of elem followed by all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).+:(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def +:[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Unit], B, That]): That

  2. def +:(elem: A): Array[A]

    Permalink

    [use case] A copy of the array with an element prepended.

    [use case]

    A copy of the array with an element prepended.

    Note that :-ending operators are right associative (see example). A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Also, the original array is not modified, so you will want to capture the result.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = 2 +: x
    y: List[Int] = List(2, 1)
    
    scala> println(x)
    List(1)
    elem

    the prepended element

    returns

    a new array consisting of elem followed by all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).+:(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def +:[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Short], B, That]): That

  3. def +:(elem: A): Array[A]

    Permalink

    [use case] A copy of the array with an element prepended.

    [use case]

    A copy of the array with an element prepended.

    Note that :-ending operators are right associative (see example). A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Also, the original array is not modified, so you will want to capture the result.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = 2 +: x
    y: List[Int] = List(2, 1)
    
    scala> println(x)
    List(1)
    elem

    the prepended element

    returns

    a new array consisting of elem followed by all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).+:(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def +:[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[T], B, That]): That

  4. def +:(elem: A): Array[A]

    Permalink

    [use case] A copy of the array with an element prepended.

    [use case]

    A copy of the array with an element prepended.

    Note that :-ending operators are right associative (see example). A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Also, the original array is not modified, so you will want to capture the result.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = 2 +: x
    y: List[Int] = List(2, 1)
    
    scala> println(x)
    List(1)
    elem

    the prepended element

    returns

    a new array consisting of elem followed by all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).+:(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def +:[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Long], B, That]): That

  5. def +:(elem: A): Array[A]

    Permalink

    [use case] A copy of the array with an element prepended.

    [use case]

    A copy of the array with an element prepended.

    Note that :-ending operators are right associative (see example). A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Also, the original array is not modified, so you will want to capture the result.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = 2 +: x
    y: List[Int] = List(2, 1)
    
    scala> println(x)
    List(1)
    elem

    the prepended element

    returns

    a new array consisting of elem followed by all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).+:(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def +:[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Int], B, That]): That

  6. def +:(elem: A): Array[A]

    Permalink

    [use case] A copy of the array with an element prepended.

    [use case]

    A copy of the array with an element prepended.

    Note that :-ending operators are right associative (see example). A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Also, the original array is not modified, so you will want to capture the result.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = 2 +: x
    y: List[Int] = List(2, 1)
    
    scala> println(x)
    List(1)
    elem

    the prepended element

    returns

    a new array consisting of elem followed by all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).+:(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def +:[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Float], B, That]): That

  7. def +:(elem: A): Array[A]

    Permalink

    [use case] A copy of the array with an element prepended.

    [use case]

    A copy of the array with an element prepended.

    Note that :-ending operators are right associative (see example). A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Also, the original array is not modified, so you will want to capture the result.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = 2 +: x
    y: List[Int] = List(2, 1)
    
    scala> println(x)
    List(1)
    elem

    the prepended element

    returns

    a new array consisting of elem followed by all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).+:(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def +:[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Double], B, That]): That

  8. def +:(elem: A): Array[A]

    Permalink

    [use case] A copy of the array with an element prepended.

    [use case]

    A copy of the array with an element prepended.

    Note that :-ending operators are right associative (see example). A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Also, the original array is not modified, so you will want to capture the result.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = 2 +: x
    y: List[Int] = List(2, 1)
    
    scala> println(x)
    List(1)
    elem

    the prepended element

    returns

    a new array consisting of elem followed by all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).+:(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def +:[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Char], B, That]): That

  9. def +:(elem: A): Array[A]

    Permalink

    [use case] A copy of the array with an element prepended.

    [use case]

    A copy of the array with an element prepended.

    Note that :-ending operators are right associative (see example). A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Also, the original array is not modified, so you will want to capture the result.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = 2 +: x
    y: List[Int] = List(2, 1)
    
    scala> println(x)
    List(1)
    elem

    the prepended element

    returns

    a new array consisting of elem followed by all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).+:(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def +:[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Byte], B, That]): That

  10. def +:(elem: A): Array[A]

    Permalink

    [use case] A copy of the array with an element prepended.

    [use case]

    A copy of the array with an element prepended.

    Note that :-ending operators are right associative (see example). A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Also, the original array is not modified, so you will want to capture the result.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = 2 +: x
    y: List[Int] = List(2, 1)
    
    scala> println(x)
    List(1)
    elem

    the prepended element

    returns

    a new array consisting of elem followed by all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).+:(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def +:[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Boolean], B, That]): That

  11. def +:(elem: A): Array[A]

    Permalink

    [use case] A copy of the array with an element prepended.

    [use case]

    A copy of the array with an element prepended.

    Note that :-ending operators are right associative (see example). A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Also, the original array is not modified, so you will want to capture the result.

    Example:

    scala> val x = List(1)
    x: List[Int] = List(1)
    
    scala> val y = 2 +: x
    y: List[Int] = List(2, 1)
    
    scala> println(x)
    List(1)
    elem

    the prepended element

    returns

    a new array consisting of elem followed by all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).+:(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def +:[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[T], B, That]): That

  12. def /:[B](z: B)(op: (B, T) ⇒ B): B

    Permalink

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

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

    Note: /: is alternate syntax for foldLeft; z /: xs is the same as xs foldLeft z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (5 /: a)(_+_)
    b: Int = 15
    
    scala> val c = (5 /: a)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T])./:(z)(op)
    Definition Classes
    TraversableOnceGenTraversableOnce
  13. def /:[B](z: B)(op: (B, T) ⇒ B): B

    Permalink

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

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

    Note: /: is alternate syntax for foldLeft; z /: xs is the same as xs foldLeft z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (5 /: a)(_+_)
    b: Int = 15
    
    scala> val c = (5 /: a)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T])./:(z)(op)
    Definition Classes
    TraversableOnceGenTraversableOnce
  14. def :+(elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element appended.

    [use case]

    A copy of this array with an element appended.

    A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = a :+ 2
    b: List[Int] = List(1, 2)
    
    scala> println(a)
    List(1)
    elem

    the appended element

    returns

    a new array consisting of all elements of this array followed by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).:+(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def :+[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Unit], B, That]): That

  15. def :+(elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element appended.

    [use case]

    A copy of this array with an element appended.

    A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = a :+ 2
    b: List[Int] = List(1, 2)
    
    scala> println(a)
    List(1)
    elem

    the appended element

    returns

    a new array consisting of all elements of this array followed by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).:+(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def :+[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Short], B, That]): That

  16. def :+(elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element appended.

    [use case]

    A copy of this array with an element appended.

    A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = a :+ 2
    b: List[Int] = List(1, 2)
    
    scala> println(a)
    List(1)
    elem

    the appended element

    returns

    a new array consisting of all elements of this array followed by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).:+(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def :+[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[T], B, That]): That

  17. def :+(elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element appended.

    [use case]

    A copy of this array with an element appended.

    A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = a :+ 2
    b: List[Int] = List(1, 2)
    
    scala> println(a)
    List(1)
    elem

    the appended element

    returns

    a new array consisting of all elements of this array followed by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).:+(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def :+[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Long], B, That]): That

  18. def :+(elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element appended.

    [use case]

    A copy of this array with an element appended.

    A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = a :+ 2
    b: List[Int] = List(1, 2)
    
    scala> println(a)
    List(1)
    elem

    the appended element

    returns

    a new array consisting of all elements of this array followed by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).:+(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def :+[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Int], B, That]): That

  19. def :+(elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element appended.

    [use case]

    A copy of this array with an element appended.

    A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = a :+ 2
    b: List[Int] = List(1, 2)
    
    scala> println(a)
    List(1)
    elem

    the appended element

    returns

    a new array consisting of all elements of this array followed by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).:+(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def :+[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Float], B, That]): That

  20. def :+(elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element appended.

    [use case]

    A copy of this array with an element appended.

    A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = a :+ 2
    b: List[Int] = List(1, 2)
    
    scala> println(a)
    List(1)
    elem

    the appended element

    returns

    a new array consisting of all elements of this array followed by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).:+(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def :+[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Double], B, That]): That

  21. def :+(elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element appended.

    [use case]

    A copy of this array with an element appended.

    A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = a :+ 2
    b: List[Int] = List(1, 2)
    
    scala> println(a)
    List(1)
    elem

    the appended element

    returns

    a new array consisting of all elements of this array followed by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).:+(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def :+[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Char], B, That]): That

  22. def :+(elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element appended.

    [use case]

    A copy of this array with an element appended.

    A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = a :+ 2
    b: List[Int] = List(1, 2)
    
    scala> println(a)
    List(1)
    elem

    the appended element

    returns

    a new array consisting of all elements of this array followed by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).:+(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def :+[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Byte], B, That]): That

  23. def :+(elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element appended.

    [use case]

    A copy of this array with an element appended.

    A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = a :+ 2
    b: List[Int] = List(1, 2)
    
    scala> println(a)
    List(1)
    elem

    the appended element

    returns

    a new array consisting of all elements of this array followed by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).:+(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def :+[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[Boolean], B, That]): That

  24. def :+(elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element appended.

    [use case]

    A copy of this array with an element appended.

    A mnemonic for +: vs. :+ is: the COLon goes on the COLlection side.

    Example:

    scala> val a = List(1)
    a: List[Int] = List(1)
    
    scala> val b = a :+ 2
    b: List[Int] = List(1, 2)
    
    scala> println(a)
    List(1)
    elem

    the appended element

    returns

    a new array consisting of all elements of this array followed by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).:+(elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def :+[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[T], B, That]): That

  25. def :\[B](z: B)(op: (T, B) ⇒ B): B

    Permalink

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

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

    Note: :\ is alternate syntax for foldRight; xs :\ z is the same as xs foldRight z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (a :\ 5)(_+_)
    b: Int = 15
    
    scala> val c = (a :\ 5)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value

    op

    the binary operator

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).:\(z)(op)
    Definition Classes
    TraversableOnceGenTraversableOnce
  26. def :\[B](z: B)(op: (T, B) ⇒ B): B

    Permalink

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

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

    Note: :\ is alternate syntax for foldRight; xs :\ z is the same as xs foldRight z.

    Examples:

    Note that the folding function used to compute b is equivalent to that used to compute c.

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = (a :\ 5)(_+_)
    b: Int = 15
    
    scala> val c = (a :\ 5)((x,y) => x + y)
    c: Int = 15
    B

    the result type of the binary operator.

    z

    the start value

    op

    the binary operator

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).:\(z)(op)
    Definition Classes
    TraversableOnceGenTraversableOnce
  27. def addString(b: StringBuilder): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder.

    Appends all elements of this mutable indexed sequence to a string builder. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence without any separator string.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> val h = a.addString(b)
    h: StringBuilder = 1234
    b

    the string builder to which elements are appended.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).addString(b)
    Definition Classes
    TraversableOnce
  28. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using a separator string.

    Appends all elements of this mutable indexed sequence to a string builder using a separator string. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence, separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b, ", ")
    res0: StringBuilder = 1, 2, 3, 4
    b

    the string builder to which elements are appended.

    sep

    the separator string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).addString(b, sep)
    Definition Classes
    TraversableOnce
  29. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings.

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings. The written text begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b , "List(" , ", " , ")")
    res5: StringBuilder = List(1, 2, 3, 4)
    b

    the string builder to which elements are appended.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).addString(b, start, sep, end)
    Definition Classes
    TraversableOnce
  30. def addString(b: StringBuilder): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder.

    Appends all elements of this mutable indexed sequence to a string builder. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence without any separator string.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> val h = a.addString(b)
    h: StringBuilder = 1234
    b

    the string builder to which elements are appended.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).addString(b)
    Definition Classes
    TraversableOnce
  31. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using a separator string.

    Appends all elements of this mutable indexed sequence to a string builder using a separator string. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence, separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b, ", ")
    res0: StringBuilder = 1, 2, 3, 4
    b

    the string builder to which elements are appended.

    sep

    the separator string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).addString(b, sep)
    Definition Classes
    TraversableOnce
  32. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings.

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings. The written text begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b , "List(" , ", " , ")")
    res5: StringBuilder = List(1, 2, 3, 4)
    b

    the string builder to which elements are appended.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).addString(b, start, sep, end)
    Definition Classes
    TraversableOnce
  33. def addString(b: StringBuilder): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder.

    Appends all elements of this mutable indexed sequence to a string builder. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence without any separator string.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> val h = a.addString(b)
    h: StringBuilder = 1234
    b

    the string builder to which elements are appended.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).addString(b)
    Definition Classes
    TraversableOnce
  34. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using a separator string.

    Appends all elements of this mutable indexed sequence to a string builder using a separator string. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence, separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b, ", ")
    res0: StringBuilder = 1, 2, 3, 4
    b

    the string builder to which elements are appended.

    sep

    the separator string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).addString(b, sep)
    Definition Classes
    TraversableOnce
  35. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings.

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings. The written text begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b , "List(" , ", " , ")")
    res5: StringBuilder = List(1, 2, 3, 4)
    b

    the string builder to which elements are appended.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).addString(b, start, sep, end)
    Definition Classes
    TraversableOnce
  36. def addString(b: StringBuilder): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder.

    Appends all elements of this mutable indexed sequence to a string builder. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence without any separator string.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> val h = a.addString(b)
    h: StringBuilder = 1234
    b

    the string builder to which elements are appended.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).addString(b)
    Definition Classes
    TraversableOnce
  37. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using a separator string.

    Appends all elements of this mutable indexed sequence to a string builder using a separator string. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence, separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b, ", ")
    res0: StringBuilder = 1, 2, 3, 4
    b

    the string builder to which elements are appended.

    sep

    the separator string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).addString(b, sep)
    Definition Classes
    TraversableOnce
  38. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings.

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings. The written text begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b , "List(" , ", " , ")")
    res5: StringBuilder = List(1, 2, 3, 4)
    b

    the string builder to which elements are appended.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).addString(b, start, sep, end)
    Definition Classes
    TraversableOnce
  39. def addString(b: StringBuilder): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder.

    Appends all elements of this mutable indexed sequence to a string builder. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence without any separator string.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> val h = a.addString(b)
    h: StringBuilder = 1234
    b

    the string builder to which elements are appended.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).addString(b)
    Definition Classes
    TraversableOnce
  40. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using a separator string.

    Appends all elements of this mutable indexed sequence to a string builder using a separator string. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence, separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b, ", ")
    res0: StringBuilder = 1, 2, 3, 4
    b

    the string builder to which elements are appended.

    sep

    the separator string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).addString(b, sep)
    Definition Classes
    TraversableOnce
  41. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings.

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings. The written text begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b , "List(" , ", " , ")")
    res5: StringBuilder = List(1, 2, 3, 4)
    b

    the string builder to which elements are appended.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).addString(b, start, sep, end)
    Definition Classes
    TraversableOnce
  42. def addString(b: StringBuilder): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder.

    Appends all elements of this mutable indexed sequence to a string builder. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence without any separator string.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> val h = a.addString(b)
    h: StringBuilder = 1234
    b

    the string builder to which elements are appended.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).addString(b)
    Definition Classes
    TraversableOnce
  43. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using a separator string.

    Appends all elements of this mutable indexed sequence to a string builder using a separator string. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence, separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b, ", ")
    res0: StringBuilder = 1, 2, 3, 4
    b

    the string builder to which elements are appended.

    sep

    the separator string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).addString(b, sep)
    Definition Classes
    TraversableOnce
  44. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings.

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings. The written text begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b , "List(" , ", " , ")")
    res5: StringBuilder = List(1, 2, 3, 4)
    b

    the string builder to which elements are appended.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).addString(b, start, sep, end)
    Definition Classes
    TraversableOnce
  45. def addString(b: StringBuilder): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder.

    Appends all elements of this mutable indexed sequence to a string builder. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence without any separator string.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> val h = a.addString(b)
    h: StringBuilder = 1234
    b

    the string builder to which elements are appended.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).addString(b)
    Definition Classes
    TraversableOnce
  46. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using a separator string.

    Appends all elements of this mutable indexed sequence to a string builder using a separator string. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence, separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b, ", ")
    res0: StringBuilder = 1, 2, 3, 4
    b

    the string builder to which elements are appended.

    sep

    the separator string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).addString(b, sep)
    Definition Classes
    TraversableOnce
  47. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings.

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings. The written text begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b , "List(" , ", " , ")")
    res5: StringBuilder = List(1, 2, 3, 4)
    b

    the string builder to which elements are appended.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).addString(b, start, sep, end)
    Definition Classes
    TraversableOnce
  48. def addString(b: StringBuilder): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder.

    Appends all elements of this mutable indexed sequence to a string builder. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence without any separator string.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> val h = a.addString(b)
    h: StringBuilder = 1234
    b

    the string builder to which elements are appended.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).addString(b)
    Definition Classes
    TraversableOnce
  49. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using a separator string.

    Appends all elements of this mutable indexed sequence to a string builder using a separator string. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence, separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b, ", ")
    res0: StringBuilder = 1, 2, 3, 4
    b

    the string builder to which elements are appended.

    sep

    the separator string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).addString(b, sep)
    Definition Classes
    TraversableOnce
  50. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings.

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings. The written text begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b , "List(" , ", " , ")")
    res5: StringBuilder = List(1, 2, 3, 4)
    b

    the string builder to which elements are appended.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).addString(b, start, sep, end)
    Definition Classes
    TraversableOnce
  51. def addString(b: StringBuilder): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder.

    Appends all elements of this mutable indexed sequence to a string builder. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence without any separator string.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> val h = a.addString(b)
    h: StringBuilder = 1234
    b

    the string builder to which elements are appended.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).addString(b)
    Definition Classes
    TraversableOnce
  52. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using a separator string.

    Appends all elements of this mutable indexed sequence to a string builder using a separator string. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence, separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b, ", ")
    res0: StringBuilder = 1, 2, 3, 4
    b

    the string builder to which elements are appended.

    sep

    the separator string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).addString(b, sep)
    Definition Classes
    TraversableOnce
  53. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings.

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings. The written text begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b , "List(" , ", " , ")")
    res5: StringBuilder = List(1, 2, 3, 4)
    b

    the string builder to which elements are appended.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).addString(b, start, sep, end)
    Definition Classes
    TraversableOnce
  54. def addString(b: StringBuilder): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder.

    Appends all elements of this mutable indexed sequence to a string builder. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence without any separator string.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> val h = a.addString(b)
    h: StringBuilder = 1234
    b

    the string builder to which elements are appended.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).addString(b)
    Definition Classes
    TraversableOnce
  55. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using a separator string.

    Appends all elements of this mutable indexed sequence to a string builder using a separator string. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence, separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b, ", ")
    res0: StringBuilder = 1, 2, 3, 4
    b

    the string builder to which elements are appended.

    sep

    the separator string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).addString(b, sep)
    Definition Classes
    TraversableOnce
  56. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings.

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings. The written text begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b , "List(" , ", " , ")")
    res5: StringBuilder = List(1, 2, 3, 4)
    b

    the string builder to which elements are appended.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).addString(b, start, sep, end)
    Definition Classes
    TraversableOnce
  57. def addString(b: StringBuilder): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder.

    Appends all elements of this mutable indexed sequence to a string builder. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence without any separator string.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> val h = a.addString(b)
    h: StringBuilder = 1234
    b

    the string builder to which elements are appended.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).addString(b)
    Definition Classes
    TraversableOnce
  58. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using a separator string.

    Appends all elements of this mutable indexed sequence to a string builder using a separator string. The written text consists of the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence, separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b, ", ")
    res0: StringBuilder = 1, 2, 3, 4
    b

    the string builder to which elements are appended.

    sep

    the separator string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).addString(b, sep)
    Definition Classes
    TraversableOnce
  59. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings.

    Appends all elements of this mutable indexed sequence to a string builder using start, end, and separator strings. The written text begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Example:

    scala> val a = List(1,2,3,4)
    a: List[Int] = List(1, 2, 3, 4)
    
    scala> val b = new StringBuilder()
    b: StringBuilder =
    
    scala> a.addString(b , "List(" , ", " , ")")
    res5: StringBuilder = List(1, 2, 3, 4)
    b

    the string builder to which elements are appended.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    the string builder b to which elements were appended.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).addString(b, start, sep, end)
    Definition Classes
    TraversableOnce
  60. def aggregate[B](z: ⇒ B)(seqop: (B, T) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink

    Aggregates the results of applying an operator to subsequent elements.

    Aggregates the results of applying an operator to subsequent elements.

    This is a more general form of fold and reduce. It has similar semantics, but does not require the result to be a supertype of the element type. It traverses the elements in different partitions sequentially, using seqop to update the result, and then applies combop to results from different partitions. The implementation of this operation may operate on an arbitrary number of collection partitions, so combop may be invoked an arbitrary number of times.

    For example, one might want to process some elements and then produce a Set. In this case, seqop would process an element and append it to the list, while combop would concatenate two lists from different partitions together. The initial value z would be an empty set.

    pc.aggregate(Set[Int]())(_ += process(_), _ ++ _)

    Another example is calculating geometric mean from a collection of doubles (one would typically require big doubles for this).

    B

    the type of accumulated results

    z

    the initial value for the accumulated result of the partition - this will typically be the neutral element for the seqop operator (e.g. Nil for list concatenation or 0 for summation) and may be evaluated more than once

    seqop

    an operator used to accumulate results within a partition

    combop

    an associative operator used to combine results from different partitions

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).aggregate(z)(seqop, combop)
    Definition Classes
    TraversableOnceGenTraversableOnce
  61. def aggregate[B](z: ⇒ B)(seqop: (B, T) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink

    Aggregates the results of applying an operator to subsequent elements.

    Aggregates the results of applying an operator to subsequent elements.

    This is a more general form of fold and reduce. It has similar semantics, but does not require the result to be a supertype of the element type. It traverses the elements in different partitions sequentially, using seqop to update the result, and then applies combop to results from different partitions. The implementation of this operation may operate on an arbitrary number of collection partitions, so combop may be invoked an arbitrary number of times.

    For example, one might want to process some elements and then produce a Set. In this case, seqop would process an element and append it to the list, while combop would concatenate two lists from different partitions together. The initial value z would be an empty set.

    pc.aggregate(Set[Int]())(_ += process(_), _ ++ _)

    Another example is calculating geometric mean from a collection of doubles (one would typically require big doubles for this).

    B

    the type of accumulated results

    z

    the initial value for the accumulated result of the partition - this will typically be the neutral element for the seqop operator (e.g. Nil for list concatenation or 0 for summation) and may be evaluated more than once

    seqop

    an operator used to accumulate results within a partition

    combop

    an associative operator used to combine results from different partitions

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).aggregate(z)(seqop, combop)
    Definition Classes
    TraversableOnceGenTraversableOnce
  62. def apply(index: Int): Unit

    Permalink

    Selects an element by its index in the mutable indexed sequence.

    Selects an element by its index in the mutable indexed sequence.

    Example:

    scala> val x = List(1, 2, 3, 4, 5)
    x: List[Int] = List(1, 2, 3, 4, 5)
    
    scala> x(3)
    res1: Int = 4
    returns

    the element of this mutable indexed sequence at index idx, where 0 indicates the first element.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    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: ofUnit).apply(index)
    Definition Classes
    ofUnitSeqLikeGenSeqLike
    Exceptions thrown

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

  63. def apply(index: Int): Short

    Permalink

    Selects an element by its index in the mutable indexed sequence.

    Selects an element by its index in the mutable indexed sequence.

    Example:

    scala> val x = List(1, 2, 3, 4, 5)
    x: List[Int] = List(1, 2, 3, 4, 5)
    
    scala> x(3)
    res1: Int = 4
    returns

    the element of this mutable indexed sequence at index idx, where 0 indicates the first element.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    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: ofShort).apply(index)
    Definition Classes
    ofShortSeqLikeGenSeqLike
    Exceptions thrown

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

  64. def apply(index: Int): T

    Permalink

    Selects an element by its index in the mutable indexed sequence.

    Selects an element by its index in the mutable indexed sequence.

    Example:

    scala> val x = List(1, 2, 3, 4, 5)
    x: List[Int] = List(1, 2, 3, 4, 5)
    
    scala> x(3)
    res1: Int = 4
    returns

    the element of this mutable indexed sequence at index idx, where 0 indicates the first element.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    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: ofRef[T]).apply(index)
    Definition Classes
    ofRefSeqLikeGenSeqLike
    Exceptions thrown

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

  65. def apply(index: Int): Long

    Permalink

    Selects an element by its index in the mutable indexed sequence.

    Selects an element by its index in the mutable indexed sequence.

    Example:

    scala> val x = List(1, 2, 3, 4, 5)
    x: List[Int] = List(1, 2, 3, 4, 5)
    
    scala> x(3)
    res1: Int = 4
    returns

    the element of this mutable indexed sequence at index idx, where 0 indicates the first element.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    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: ofLong).apply(index)
    Definition Classes
    ofLongSeqLikeGenSeqLike
    Exceptions thrown

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

  66. def apply(index: Int): Int

    Permalink

    Selects an element by its index in the mutable indexed sequence.

    Selects an element by its index in the mutable indexed sequence.

    Example:

    scala> val x = List(1, 2, 3, 4, 5)
    x: List[Int] = List(1, 2, 3, 4, 5)
    
    scala> x(3)
    res1: Int = 4
    returns

    the element of this mutable indexed sequence at index idx, where 0 indicates the first element.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    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: ofInt).apply(index)
    Definition Classes
    ofIntSeqLikeGenSeqLike
    Exceptions thrown

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

  67. def apply(index: Int): Float

    Permalink

    Selects an element by its index in the mutable indexed sequence.

    Selects an element by its index in the mutable indexed sequence.

    Example:

    scala> val x = List(1, 2, 3, 4, 5)
    x: List[Int] = List(1, 2, 3, 4, 5)
    
    scala> x(3)
    res1: Int = 4
    returns

    the element of this mutable indexed sequence at index idx, where 0 indicates the first element.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    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: ofFloat).apply(index)
    Definition Classes
    ofFloatSeqLikeGenSeqLike
    Exceptions thrown

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

  68. def apply(index: Int): Double

    Permalink

    Selects an element by its index in the mutable indexed sequence.

    Selects an element by its index in the mutable indexed sequence.

    Example:

    scala> val x = List(1, 2, 3, 4, 5)
    x: List[Int] = List(1, 2, 3, 4, 5)
    
    scala> x(3)
    res1: Int = 4
    returns

    the element of this mutable indexed sequence at index idx, where 0 indicates the first element.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    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: ofDouble).apply(index)
    Definition Classes
    ofDoubleSeqLikeGenSeqLike
    Exceptions thrown

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

  69. def apply(index: Int): Char

    Permalink

    Selects an element by its index in the mutable indexed sequence.

    Selects an element by its index in the mutable indexed sequence.

    Example:

    scala> val x = List(1, 2, 3, 4, 5)
    x: List[Int] = List(1, 2, 3, 4, 5)
    
    scala> x(3)
    res1: Int = 4
    returns

    the element of this mutable indexed sequence at index idx, where 0 indicates the first element.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= 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:
    (array: ofChar).apply(index)
    Definition Classes
    ofCharSeqLikeGenSeqLike
    Exceptions thrown

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

  70. def apply(index: Int): Byte

    Permalink

    Selects an element by its index in the mutable indexed sequence.

    Selects an element by its index in the mutable indexed sequence.

    Example:

    scala> val x = List(1, 2, 3, 4, 5)
    x: List[Int] = List(1, 2, 3, 4, 5)
    
    scala> x(3)
    res1: Int = 4
    returns

    the element of this mutable indexed sequence at index idx, where 0 indicates the first element.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    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: ofByte).apply(index)
    Definition Classes
    ofByteSeqLikeGenSeqLike
    Exceptions thrown

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

  71. def apply(index: Int): Boolean

    Permalink

    Selects an element by its index in the mutable indexed sequence.

    Selects an element by its index in the mutable indexed sequence.

    Example:

    scala> val x = List(1, 2, 3, 4, 5)
    x: List[Int] = List(1, 2, 3, 4, 5)
    
    scala> x(3)
    res1: Int = 4
    returns

    the element of this mutable indexed sequence at index idx, where 0 indicates the first element.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    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: ofBoolean).apply(index)
    Definition Classes
    ofBooleanSeqLikeGenSeqLike
    Exceptions thrown

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

  72. def apply(idx: Int): T

    Permalink

    Selects an element by its index in the mutable indexed sequence.

    Selects an element by its index in the mutable indexed sequence.

    Example:

    scala> val x = List(1, 2, 3, 4, 5)
    x: List[Int] = List(1, 2, 3, 4, 5)
    
    scala> x(3)
    res1: Int = 4
    idx

    The index to select.

    returns

    the element of this mutable indexed sequence at index idx, where 0 indicates the first element.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    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[T]).apply(idx)
    Definition Classes
    SeqLikeGenSeqLike
    Exceptions thrown

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

  73. def canEqual(that: Any): Boolean

    Permalink

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    that

    The object with which this mutable indexed sequence should be compared

    returns

    true, if this mutable indexed sequence can possibly equal that, false otherwise. The test takes into consideration only the run-time types of objects but ignores their elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).canEqual(that)
    Definition Classes
    IterableLikeEquals
  74. def canEqual(that: Any): Boolean

    Permalink

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    that

    The object with which this mutable indexed sequence should be compared

    returns

    true, if this mutable indexed sequence can possibly equal that, false otherwise. The test takes into consideration only the run-time types of objects but ignores their elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).canEqual(that)
    Definition Classes
    IterableLikeEquals
  75. def canEqual(that: Any): Boolean

    Permalink

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    that

    The object with which this mutable indexed sequence should be compared

    returns

    true, if this mutable indexed sequence can possibly equal that, false otherwise. The test takes into consideration only the run-time types of objects but ignores their elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).canEqual(that)
    Definition Classes
    IterableLikeEquals
  76. def canEqual(that: Any): Boolean

    Permalink

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    that

    The object with which this mutable indexed sequence should be compared

    returns

    true, if this mutable indexed sequence can possibly equal that, false otherwise. The test takes into consideration only the run-time types of objects but ignores their elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).canEqual(that)
    Definition Classes
    IterableLikeEquals
  77. def canEqual(that: Any): Boolean

    Permalink

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    that

    The object with which this mutable indexed sequence should be compared

    returns

    true, if this mutable indexed sequence can possibly equal that, false otherwise. The test takes into consideration only the run-time types of objects but ignores their elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).canEqual(that)
    Definition Classes
    IterableLikeEquals
  78. def canEqual(that: Any): Boolean

    Permalink

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    that

    The object with which this mutable indexed sequence should be compared

    returns

    true, if this mutable indexed sequence can possibly equal that, false otherwise. The test takes into consideration only the run-time types of objects but ignores their elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).canEqual(that)
    Definition Classes
    IterableLikeEquals
  79. def canEqual(that: Any): Boolean

    Permalink

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    that

    The object with which this mutable indexed sequence should be compared

    returns

    true, if this mutable indexed sequence can possibly equal that, false otherwise. The test takes into consideration only the run-time types of objects but ignores their elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).canEqual(that)
    Definition Classes
    IterableLikeEquals
  80. def canEqual(that: Any): Boolean

    Permalink

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    that

    The object with which this mutable indexed sequence should be compared

    returns

    true, if this mutable indexed sequence can possibly equal that, false otherwise. The test takes into consideration only the run-time types of objects but ignores their elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).canEqual(that)
    Definition Classes
    IterableLikeEquals
  81. def canEqual(that: Any): Boolean

    Permalink

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    that

    The object with which this mutable indexed sequence should be compared

    returns

    true, if this mutable indexed sequence can possibly equal that, false otherwise. The test takes into consideration only the run-time types of objects but ignores their elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).canEqual(that)
    Definition Classes
    IterableLikeEquals
  82. def canEqual(that: Any): Boolean

    Permalink

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    that

    The object with which this mutable indexed sequence should be compared

    returns

    true, if this mutable indexed sequence can possibly equal that, false otherwise. The test takes into consideration only the run-time types of objects but ignores their elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).canEqual(that)
    Definition Classes
    IterableLikeEquals
  83. def canEqual(that: Any): Boolean

    Permalink

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    that

    The object with which this mutable indexed sequence should be compared

    returns

    true, if this mutable indexed sequence can possibly equal that, false otherwise. The test takes into consideration only the run-time types of objects but ignores their elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).canEqual(that)
    Definition Classes
    IterableLikeEquals
  84. def collectFirst[B](pf: PartialFunction[T, B]): Option[B]

    Permalink

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

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

    pf

    the partial function

    returns

    an option value containing pf applied to the first value for which it is defined, or None if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).collectFirst(pf)
    Definition Classes
    TraversableOnce
    Example:
    1. Seq("a", 1, 5L).collectFirst({ case x: Int => x*10 }) = Some(10)

  85. def collectFirst[B](pf: PartialFunction[T, B]): Option[B]

    Permalink

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

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

    pf

    the partial function

    returns

    an option value containing pf applied to the first value for which it is defined, or None if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).collectFirst(pf)
    Definition Classes
    TraversableOnce
    Example:
    1. Seq("a", 1, 5L).collectFirst({ case x: Int => x*10 }) = Some(10)

  86. def combinations(n: Int): collection.Iterator[Array[Unit]]

    Permalink

    Iterates over combinations.

    Iterates over combinations. A _combination_ of length n is a subsequence of the original sequence, with the elements taken in order. Thus, "xy" and "yy" are both length-2 combinations of "xyy", but "yx" is not. If there is more than one way to generate the same subsequence, only one will be returned.

    For example, "xyyy" has three different ways to generate "xy" depending on whether the first, second, or third "y" is selected. However, since all are identical, only one will be chosen. Which of the three will be taken is an implementation detail that is not defined.

    returns

    An Iterator which traverses the possible n-element combinations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).combinations(n)
    Definition Classes
    SeqLike
    Example:
    1. "abbbc".combinations(2) = Iterator(ab, ac, bb, bc)

  87. def combinations(n: Int): collection.Iterator[Array[Short]]

    Permalink

    Iterates over combinations.

    Iterates over combinations. A _combination_ of length n is a subsequence of the original sequence, with the elements taken in order. Thus, "xy" and "yy" are both length-2 combinations of "xyy", but "yx" is not. If there is more than one way to generate the same subsequence, only one will be returned.

    For example, "xyyy" has three different ways to generate "xy" depending on whether the first, second, or third "y" is selected. However, since all are identical, only one will be chosen. Which of the three will be taken is an implementation detail that is not defined.

    returns

    An Iterator which traverses the possible n-element combinations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).combinations(n)
    Definition Classes
    SeqLike
    Example:
    1. "abbbc".combinations(2) = Iterator(ab, ac, bb, bc)

  88. def combinations(n: Int): collection.Iterator[Array[T]]

    Permalink

    Iterates over combinations.

    Iterates over combinations. A _combination_ of length n is a subsequence of the original sequence, with the elements taken in order. Thus, "xy" and "yy" are both length-2 combinations of "xyy", but "yx" is not. If there is more than one way to generate the same subsequence, only one will be returned.

    For example, "xyyy" has three different ways to generate "xy" depending on whether the first, second, or third "y" is selected. However, since all are identical, only one will be chosen. Which of the three will be taken is an implementation detail that is not defined.

    returns

    An Iterator which traverses the possible n-element combinations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).combinations(n)
    Definition Classes
    SeqLike
    Example:
    1. "abbbc".combinations(2) = Iterator(ab, ac, bb, bc)

  89. def combinations(n: Int): collection.Iterator[Array[Long]]

    Permalink

    Iterates over combinations.

    Iterates over combinations. A _combination_ of length n is a subsequence of the original sequence, with the elements taken in order. Thus, "xy" and "yy" are both length-2 combinations of "xyy", but "yx" is not. If there is more than one way to generate the same subsequence, only one will be returned.

    For example, "xyyy" has three different ways to generate "xy" depending on whether the first, second, or third "y" is selected. However, since all are identical, only one will be chosen. Which of the three will be taken is an implementation detail that is not defined.

    returns

    An Iterator which traverses the possible n-element combinations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).combinations(n)
    Definition Classes
    SeqLike
    Example:
    1. "abbbc".combinations(2) = Iterator(ab, ac, bb, bc)

  90. def combinations(n: Int): collection.Iterator[Array[Int]]

    Permalink

    Iterates over combinations.

    Iterates over combinations. A _combination_ of length n is a subsequence of the original sequence, with the elements taken in order. Thus, "xy" and "yy" are both length-2 combinations of "xyy", but "yx" is not. If there is more than one way to generate the same subsequence, only one will be returned.

    For example, "xyyy" has three different ways to generate "xy" depending on whether the first, second, or third "y" is selected. However, since all are identical, only one will be chosen. Which of the three will be taken is an implementation detail that is not defined.

    returns

    An Iterator which traverses the possible n-element combinations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).combinations(n)
    Definition Classes
    SeqLike
    Example:
    1. "abbbc".combinations(2) = Iterator(ab, ac, bb, bc)

  91. def combinations(n: Int): collection.Iterator[Array[Float]]

    Permalink

    Iterates over combinations.

    Iterates over combinations. A _combination_ of length n is a subsequence of the original sequence, with the elements taken in order. Thus, "xy" and "yy" are both length-2 combinations of "xyy", but "yx" is not. If there is more than one way to generate the same subsequence, only one will be returned.

    For example, "xyyy" has three different ways to generate "xy" depending on whether the first, second, or third "y" is selected. However, since all are identical, only one will be chosen. Which of the three will be taken is an implementation detail that is not defined.

    returns

    An Iterator which traverses the possible n-element combinations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).combinations(n)
    Definition Classes
    SeqLike
    Example:
    1. "abbbc".combinations(2) = Iterator(ab, ac, bb, bc)

  92. def combinations(n: Int): collection.Iterator[Array[Double]]

    Permalink

    Iterates over combinations.

    Iterates over combinations. A _combination_ of length n is a subsequence of the original sequence, with the elements taken in order. Thus, "xy" and "yy" are both length-2 combinations of "xyy", but "yx" is not. If there is more than one way to generate the same subsequence, only one will be returned.

    For example, "xyyy" has three different ways to generate "xy" depending on whether the first, second, or third "y" is selected. However, since all are identical, only one will be chosen. Which of the three will be taken is an implementation detail that is not defined.

    returns

    An Iterator which traverses the possible n-element combinations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).combinations(n)
    Definition Classes
    SeqLike
    Example:
    1. "abbbc".combinations(2) = Iterator(ab, ac, bb, bc)

  93. def combinations(n: Int): collection.Iterator[Array[Char]]

    Permalink

    Iterates over combinations.

    Iterates over combinations. A _combination_ of length n is a subsequence of the original sequence, with the elements taken in order. Thus, "xy" and "yy" are both length-2 combinations of "xyy", but "yx" is not. If there is more than one way to generate the same subsequence, only one will be returned.

    For example, "xyyy" has three different ways to generate "xy" depending on whether the first, second, or third "y" is selected. However, since all are identical, only one will be chosen. Which of the three will be taken is an implementation detail that is not defined.

    returns

    An Iterator which traverses the possible n-element combinations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).combinations(n)
    Definition Classes
    SeqLike
    Example:
    1. "abbbc".combinations(2) = Iterator(ab, ac, bb, bc)

  94. def combinations(n: Int): collection.Iterator[Array[Byte]]

    Permalink

    Iterates over combinations.

    Iterates over combinations. A _combination_ of length n is a subsequence of the original sequence, with the elements taken in order. Thus, "xy" and "yy" are both length-2 combinations of "xyy", but "yx" is not. If there is more than one way to generate the same subsequence, only one will be returned.

    For example, "xyyy" has three different ways to generate "xy" depending on whether the first, second, or third "y" is selected. However, since all are identical, only one will be chosen. Which of the three will be taken is an implementation detail that is not defined.

    returns

    An Iterator which traverses the possible n-element combinations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).combinations(n)
    Definition Classes
    SeqLike
    Example:
    1. "abbbc".combinations(2) = Iterator(ab, ac, bb, bc)

  95. def combinations(n: Int): collection.Iterator[Array[Boolean]]

    Permalink

    Iterates over combinations.

    Iterates over combinations. A _combination_ of length n is a subsequence of the original sequence, with the elements taken in order. Thus, "xy" and "yy" are both length-2 combinations of "xyy", but "yx" is not. If there is more than one way to generate the same subsequence, only one will be returned.

    For example, "xyyy" has three different ways to generate "xy" depending on whether the first, second, or third "y" is selected. However, since all are identical, only one will be chosen. Which of the three will be taken is an implementation detail that is not defined.

    returns

    An Iterator which traverses the possible n-element combinations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).combinations(n)
    Definition Classes
    SeqLike
    Example:
    1. "abbbc".combinations(2) = Iterator(ab, ac, bb, bc)

  96. def combinations(n: Int): collection.Iterator[Array[T]]

    Permalink

    Iterates over combinations.

    Iterates over combinations. A _combination_ of length n is a subsequence of the original sequence, with the elements taken in order. Thus, "xy" and "yy" are both length-2 combinations of "xyy", but "yx" is not. If there is more than one way to generate the same subsequence, only one will be returned.

    For example, "xyyy" has three different ways to generate "xy" depending on whether the first, second, or third "y" is selected. However, since all are identical, only one will be chosen. Which of the three will be taken is an implementation detail that is not defined.

    returns

    An Iterator which traverses the possible n-element combinations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).combinations(n)
    Definition Classes
    SeqLike
    Example:
    1. "abbbc".combinations(2) = Iterator(ab, ac, bb, bc)

  97. def containsSlice[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence contains a slice with the same elements as that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).containsSlice(that)
    Definition Classes
    SeqLike
  98. def containsSlice[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence contains a slice with the same elements as that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).containsSlice(that)
    Definition Classes
    SeqLike
  99. def containsSlice[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence contains a slice with the same elements as that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).containsSlice(that)
    Definition Classes
    SeqLike
  100. def containsSlice[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence contains a slice with the same elements as that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).containsSlice(that)
    Definition Classes
    SeqLike
  101. def containsSlice[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence contains a slice with the same elements as that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).containsSlice(that)
    Definition Classes
    SeqLike
  102. def containsSlice[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence contains a slice with the same elements as that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).containsSlice(that)
    Definition Classes
    SeqLike
  103. def containsSlice[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence contains a slice with the same elements as that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).containsSlice(that)
    Definition Classes
    SeqLike
  104. def containsSlice[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence contains a slice with the same elements as that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).containsSlice(that)
    Definition Classes
    SeqLike
  105. def containsSlice[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence contains a slice with the same elements as that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).containsSlice(that)
    Definition Classes
    SeqLike
  106. def containsSlice[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence contains a slice with the same elements as that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).containsSlice(that)
    Definition Classes
    SeqLike
  107. def containsSlice[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    Tests whether this mutable indexed sequence contains a given sequence as a slice.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence contains a slice with the same elements as that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).containsSlice(that)
    Definition Classes
    SeqLike
  108. def copyToArray(xs: Array[A], start: Int, len: Int): Unit

    Permalink

    [use case] Copies elements of this array to an array.

    [use case]

    Copies elements of this array to an array. Fills the given array xs with at most len elements of this array, starting at position start. Copying will stop once either the end of the current array is reached, or the end of the array is reached, or len elements have been copied.

    xs

    the array to fill.

    start

    the starting index.

    len

    the maximal number of elements to copy.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).copyToArray(xs, start, len)
    Definition Classes
    ArrayOpsIndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[U >: T](xs: Array[U], start: Int, len: Int): Unit

  109. def copyToArray(xs: Array[A]): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).copyToArray(xs)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B]): Unit

  110. def copyToArray(xs: Array[A], start: Int): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array, beginning at index start. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    start

    the starting index.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).copyToArray(xs, start)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B], start: Int): Unit

  111. def copyToArray(xs: Array[A], start: Int, len: Int): Unit

    Permalink

    [use case] Copies elements of this array to an array.

    [use case]

    Copies elements of this array to an array. Fills the given array xs with at most len elements of this array, starting at position start. Copying will stop once either the end of the current array is reached, or the end of the array is reached, or len elements have been copied.

    xs

    the array to fill.

    start

    the starting index.

    len

    the maximal number of elements to copy.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).copyToArray(xs, start, len)
    Definition Classes
    ArrayOpsIndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[U >: T](xs: Array[U], start: Int, len: Int): Unit

  112. def copyToArray(xs: Array[A]): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).copyToArray(xs)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B]): Unit

  113. def copyToArray(xs: Array[A], start: Int): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array, beginning at index start. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    start

    the starting index.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).copyToArray(xs, start)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B], start: Int): Unit

  114. def copyToArray(xs: Array[A], start: Int, len: Int): Unit

    Permalink

    [use case] Copies elements of this array to an array.

    [use case]

    Copies elements of this array to an array. Fills the given array xs with at most len elements of this array, starting at position start. Copying will stop once either the end of the current array is reached, or the end of the array is reached, or len elements have been copied.

    xs

    the array to fill.

    start

    the starting index.

    len

    the maximal number of elements to copy.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).copyToArray(xs, start, len)
    Definition Classes
    ArrayOpsIndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[U >: T](xs: Array[U], start: Int, len: Int): Unit

  115. def copyToArray(xs: Array[A]): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).copyToArray(xs)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B]): Unit

  116. def copyToArray(xs: Array[A], start: Int): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array, beginning at index start. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    start

    the starting index.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).copyToArray(xs, start)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B], start: Int): Unit

  117. def copyToArray(xs: Array[A], start: Int, len: Int): Unit

    Permalink

    [use case] Copies elements of this array to an array.

    [use case]

    Copies elements of this array to an array. Fills the given array xs with at most len elements of this array, starting at position start. Copying will stop once either the end of the current array is reached, or the end of the array is reached, or len elements have been copied.

    xs

    the array to fill.

    start

    the starting index.

    len

    the maximal number of elements to copy.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).copyToArray(xs, start, len)
    Definition Classes
    ArrayOpsIndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[U >: T](xs: Array[U], start: Int, len: Int): Unit

  118. def copyToArray(xs: Array[A]): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).copyToArray(xs)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B]): Unit

  119. def copyToArray(xs: Array[A], start: Int): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array, beginning at index start. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    start

    the starting index.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).copyToArray(xs, start)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B], start: Int): Unit

  120. def copyToArray(xs: Array[A], start: Int, len: Int): Unit

    Permalink

    [use case] Copies elements of this array to an array.

    [use case]

    Copies elements of this array to an array. Fills the given array xs with at most len elements of this array, starting at position start. Copying will stop once either the end of the current array is reached, or the end of the array is reached, or len elements have been copied.

    xs

    the array to fill.

    start

    the starting index.

    len

    the maximal number of elements to copy.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).copyToArray(xs, start, len)
    Definition Classes
    ArrayOpsIndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[U >: T](xs: Array[U], start: Int, len: Int): Unit

  121. def copyToArray(xs: Array[A]): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).copyToArray(xs)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B]): Unit

  122. def copyToArray(xs: Array[A], start: Int): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array, beginning at index start. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    start

    the starting index.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).copyToArray(xs, start)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B], start: Int): Unit

  123. def copyToArray(xs: Array[A], start: Int, len: Int): Unit

    Permalink

    [use case] Copies elements of this array to an array.

    [use case]

    Copies elements of this array to an array. Fills the given array xs with at most len elements of this array, starting at position start. Copying will stop once either the end of the current array is reached, or the end of the array is reached, or len elements have been copied.

    xs

    the array to fill.

    start

    the starting index.

    len

    the maximal number of elements to copy.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).copyToArray(xs, start, len)
    Definition Classes
    ArrayOpsIndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[U >: T](xs: Array[U], start: Int, len: Int): Unit

  124. def copyToArray(xs: Array[A]): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).copyToArray(xs)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B]): Unit

  125. def copyToArray(xs: Array[A], start: Int): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array, beginning at index start. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    start

    the starting index.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).copyToArray(xs, start)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B], start: Int): Unit

  126. def copyToArray(xs: Array[A], start: Int, len: Int): Unit

    Permalink

    [use case] Copies elements of this array to an array.

    [use case]

    Copies elements of this array to an array. Fills the given array xs with at most len elements of this array, starting at position start. Copying will stop once either the end of the current array is reached, or the end of the array is reached, or len elements have been copied.

    xs

    the array to fill.

    start

    the starting index.

    len

    the maximal number of elements to copy.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).copyToArray(xs, start, len)
    Definition Classes
    ArrayOpsIndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[U >: T](xs: Array[U], start: Int, len: Int): Unit

  127. def copyToArray(xs: Array[A]): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).copyToArray(xs)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B]): Unit

  128. def copyToArray(xs: Array[A], start: Int): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array, beginning at index start. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    start

    the starting index.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).copyToArray(xs, start)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B], start: Int): Unit

  129. def copyToArray(xs: Array[A], start: Int, len: Int): Unit

    Permalink

    [use case] Copies elements of this array to an array.

    [use case]

    Copies elements of this array to an array. Fills the given array xs with at most len elements of this array, starting at position start. Copying will stop once either the end of the current array is reached, or the end of the array is reached, or len elements have been copied.

    xs

    the array to fill.

    start

    the starting index.

    len

    the maximal number of elements to copy.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).copyToArray(xs, start, len)
    Definition Classes
    ArrayOpsIndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[U >: T](xs: Array[U], start: Int, len: Int): Unit

  130. def copyToArray(xs: Array[A]): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).copyToArray(xs)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B]): Unit

  131. def copyToArray(xs: Array[A], start: Int): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array, beginning at index start. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    start

    the starting index.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).copyToArray(xs, start)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B], start: Int): Unit

  132. def copyToArray(xs: Array[A], start: Int, len: Int): Unit

    Permalink

    [use case] Copies elements of this array to an array.

    [use case]

    Copies elements of this array to an array. Fills the given array xs with at most len elements of this array, starting at position start. Copying will stop once either the end of the current array is reached, or the end of the array is reached, or len elements have been copied.

    xs

    the array to fill.

    start

    the starting index.

    len

    the maximal number of elements to copy.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).copyToArray(xs, start, len)
    Definition Classes
    ArrayOpsIndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[U >: T](xs: Array[U], start: Int, len: Int): Unit

  133. def copyToArray(xs: Array[A]): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).copyToArray(xs)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B]): Unit

  134. def copyToArray(xs: Array[A], start: Int): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array, beginning at index start. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    start

    the starting index.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).copyToArray(xs, start)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B], start: Int): Unit

  135. def copyToArray(xs: Array[A], start: Int, len: Int): Unit

    Permalink

    [use case] Copies elements of this array to an array.

    [use case]

    Copies elements of this array to an array. Fills the given array xs with at most len elements of this array, starting at position start. Copying will stop once either the end of the current array is reached, or the end of the array is reached, or len elements have been copied.

    xs

    the array to fill.

    start

    the starting index.

    len

    the maximal number of elements to copy.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).copyToArray(xs, start, len)
    Definition Classes
    ArrayOpsIndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[U >: T](xs: Array[U], start: Int, len: Int): Unit

  136. def copyToArray(xs: Array[A]): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).copyToArray(xs)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B]): Unit

  137. def copyToArray(xs: Array[A], start: Int): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array, beginning at index start. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    start

    the starting index.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).copyToArray(xs, start)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B], start: Int): Unit

  138. def copyToArray(xs: Array[A], start: Int, len: Int): Unit

    Permalink

    [use case] Copies elements of this array to an array.

    [use case]

    Copies elements of this array to an array. Fills the given array xs with at most len elements of this array, starting at position start. Copying will stop once either the end of the current array is reached, or the end of the array is reached, or len elements have been copied.

    xs

    the array to fill.

    start

    the starting index.

    len

    the maximal number of elements to copy.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).copyToArray(xs, start, len)
    Definition Classes
    ArrayOpsIndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[U >: T](xs: Array[U], start: Int, len: Int): Unit

  139. def copyToArray(xs: Array[A]): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).copyToArray(xs)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B]): Unit

  140. def copyToArray(xs: Array[A], start: Int): Unit

    Permalink

    [use case] Copies values of this array to an array.

    [use case]

    Copies values of this array to an array. Fills the given array xs with values of this array, beginning at index start. Copying will stop once either the end of the current array is reached, or the end of the array is reached.

    xs

    the array to fill.

    start

    the starting index.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).copyToArray(xs, start)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def copyToArray[B >: A](xs: Array[B], start: Int): Unit

  141. def corresponds[B](that: GenSeq[B])(p: (T, B) ⇒ Boolean): Boolean

    Permalink

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    B

    the type of the elements of that

    that

    the other sequence

    p

    the test predicate, which relates elements from both sequences

    returns

    true if both sequences have the same length and p(x, y) is true for all corresponding elements x of this mutable indexed sequence and y of that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).corresponds(that)(p)
    Definition Classes
    SeqLikeGenSeqLike
  142. def corresponds[B](that: GenSeq[B])(p: (T, B) ⇒ Boolean): Boolean

    Permalink

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    Tests whether every element of this mutable indexed sequence relates to the corresponding element of another sequence by satisfying a test predicate.

    B

    the type of the elements of that

    that

    the other sequence

    p

    the test predicate, which relates elements from both sequences

    returns

    true if both sequences have the same length and p(x, y) is true for all corresponding elements x of this mutable indexed sequence and y of that, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).corresponds(that)(p)
    Definition Classes
    SeqLikeGenSeqLike
  143. def count(p: (T) ⇒ Boolean): Int

    Permalink

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    the number of elements satisfying the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).count(p)
    Definition Classes
    TraversableOnceGenTraversableOnce
  144. def count(p: (T) ⇒ Boolean): Int

    Permalink

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    Counts the number of elements in the mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    the number of elements satisfying the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).count(p)
    Definition Classes
    TraversableOnceGenTraversableOnce
  145. def deep: collection.IndexedSeq[Any]

    Permalink

    Creates a possible nested IndexedSeq which consists of all the elements of this array.

    Creates a possible nested IndexedSeq which consists of all the elements of this array. If the elements are arrays themselves, the deep transformation is applied recursively to them. The stringPrefix of the IndexedSeq is "Array", hence the IndexedSeq prints like an array with all its elements shown, and the same recursively for any subarrays.

    Example:

    Array(Array(1, 2), Array(3, 4)).deep.toString

    prints: Array(Array(1, 2), Array(3, 4))

    returns

    An possibly nested indexed sequence of consisting of all the elements of the array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).deep
    Definition Classes
    ArrayLike
  146. def deep: collection.IndexedSeq[Any]

    Permalink

    Creates a possible nested IndexedSeq which consists of all the elements of this array.

    Creates a possible nested IndexedSeq which consists of all the elements of this array. If the elements are arrays themselves, the deep transformation is applied recursively to them. The stringPrefix of the IndexedSeq is "Array", hence the IndexedSeq prints like an array with all its elements shown, and the same recursively for any subarrays.

    Example:

    Array(Array(1, 2), Array(3, 4)).deep.toString

    prints: Array(Array(1, 2), Array(3, 4))

    returns

    An possibly nested indexed sequence of consisting of all the elements of the array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).deep
    Definition Classes
    ArrayLike
  147. def deep: collection.IndexedSeq[Any]

    Permalink

    Creates a possible nested IndexedSeq which consists of all the elements of this array.

    Creates a possible nested IndexedSeq which consists of all the elements of this array. If the elements are arrays themselves, the deep transformation is applied recursively to them. The stringPrefix of the IndexedSeq is "Array", hence the IndexedSeq prints like an array with all its elements shown, and the same recursively for any subarrays.

    Example:

    Array(Array(1, 2), Array(3, 4)).deep.toString

    prints: Array(Array(1, 2), Array(3, 4))

    returns

    An possibly nested indexed sequence of consisting of all the elements of the array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).deep
    Definition Classes
    ArrayLike
  148. def deep: collection.IndexedSeq[Any]

    Permalink

    Creates a possible nested IndexedSeq which consists of all the elements of this array.

    Creates a possible nested IndexedSeq which consists of all the elements of this array. If the elements are arrays themselves, the deep transformation is applied recursively to them. The stringPrefix of the IndexedSeq is "Array", hence the IndexedSeq prints like an array with all its elements shown, and the same recursively for any subarrays.

    Example:

    Array(Array(1, 2), Array(3, 4)).deep.toString

    prints: Array(Array(1, 2), Array(3, 4))

    returns

    An possibly nested indexed sequence of consisting of all the elements of the array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).deep
    Definition Classes
    ArrayLike
  149. def deep: collection.IndexedSeq[Any]

    Permalink

    Creates a possible nested IndexedSeq which consists of all the elements of this array.

    Creates a possible nested IndexedSeq which consists of all the elements of this array. If the elements are arrays themselves, the deep transformation is applied recursively to them. The stringPrefix of the IndexedSeq is "Array", hence the IndexedSeq prints like an array with all its elements shown, and the same recursively for any subarrays.

    Example:

    Array(Array(1, 2), Array(3, 4)).deep.toString

    prints: Array(Array(1, 2), Array(3, 4))

    returns

    An possibly nested indexed sequence of consisting of all the elements of the array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).deep
    Definition Classes
    ArrayLike
  150. def deep: collection.IndexedSeq[Any]

    Permalink

    Creates a possible nested IndexedSeq which consists of all the elements of this array.

    Creates a possible nested IndexedSeq which consists of all the elements of this array. If the elements are arrays themselves, the deep transformation is applied recursively to them. The stringPrefix of the IndexedSeq is "Array", hence the IndexedSeq prints like an array with all its elements shown, and the same recursively for any subarrays.

    Example:

    Array(Array(1, 2), Array(3, 4)).deep.toString

    prints: Array(Array(1, 2), Array(3, 4))

    returns

    An possibly nested indexed sequence of consisting of all the elements of the array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).deep
    Definition Classes
    ArrayLike
  151. def deep: collection.IndexedSeq[Any]

    Permalink

    Creates a possible nested IndexedSeq which consists of all the elements of this array.

    Creates a possible nested IndexedSeq which consists of all the elements of this array. If the elements are arrays themselves, the deep transformation is applied recursively to them. The stringPrefix of the IndexedSeq is "Array", hence the IndexedSeq prints like an array with all its elements shown, and the same recursively for any subarrays.

    Example:

    Array(Array(1, 2), Array(3, 4)).deep.toString

    prints: Array(Array(1, 2), Array(3, 4))

    returns

    An possibly nested indexed sequence of consisting of all the elements of the array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).deep
    Definition Classes
    ArrayLike
  152. def deep: collection.IndexedSeq[Any]

    Permalink

    Creates a possible nested IndexedSeq which consists of all the elements of this array.

    Creates a possible nested IndexedSeq which consists of all the elements of this array. If the elements are arrays themselves, the deep transformation is applied recursively to them. The stringPrefix of the IndexedSeq is "Array", hence the IndexedSeq prints like an array with all its elements shown, and the same recursively for any subarrays.

    Example:

    Array(Array(1, 2), Array(3, 4)).deep.toString

    prints: Array(Array(1, 2), Array(3, 4))

    returns

    An possibly nested indexed sequence of consisting of all the elements of the array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).deep
    Definition Classes
    ArrayLike
  153. def deep: collection.IndexedSeq[Any]

    Permalink

    Creates a possible nested IndexedSeq which consists of all the elements of this array.

    Creates a possible nested IndexedSeq which consists of all the elements of this array. If the elements are arrays themselves, the deep transformation is applied recursively to them. The stringPrefix of the IndexedSeq is "Array", hence the IndexedSeq prints like an array with all its elements shown, and the same recursively for any subarrays.

    Example:

    Array(Array(1, 2), Array(3, 4)).deep.toString

    prints: Array(Array(1, 2), Array(3, 4))

    returns

    An possibly nested indexed sequence of consisting of all the elements of the array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).deep
    Definition Classes
    ArrayLike
  154. def deep: collection.IndexedSeq[Any]

    Permalink

    Creates a possible nested IndexedSeq which consists of all the elements of this array.

    Creates a possible nested IndexedSeq which consists of all the elements of this array. If the elements are arrays themselves, the deep transformation is applied recursively to them. The stringPrefix of the IndexedSeq is "Array", hence the IndexedSeq prints like an array with all its elements shown, and the same recursively for any subarrays.

    Example:

    Array(Array(1, 2), Array(3, 4)).deep.toString

    prints: Array(Array(1, 2), Array(3, 4))

    returns

    An possibly nested indexed sequence of consisting of all the elements of the array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).deep
    Definition Classes
    ArrayLike
  155. def deep: collection.IndexedSeq[Any]

    Permalink

    Creates a possible nested IndexedSeq which consists of all the elements of this array.

    Creates a possible nested IndexedSeq which consists of all the elements of this array. If the elements are arrays themselves, the deep transformation is applied recursively to them. The stringPrefix of the IndexedSeq is "Array", hence the IndexedSeq prints like an array with all its elements shown, and the same recursively for any subarrays.

    Example:

    Array(Array(1, 2), Array(3, 4)).deep.toString

    prints: Array(Array(1, 2), Array(3, 4))

    returns

    An possibly nested indexed sequence of consisting of all the elements of the array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).deep
    Definition Classes
    ArrayLike
  156. def diff(that: collection.Seq[T]): Array[T]

    Permalink

    [use case] Computes the multiset difference between this array and another sequence.

    [use case]

    Computes the multiset difference between this array and another sequence.

    that

    the sequence of elements to remove

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).diff(that)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def diff[B >: A](that: GenSeq[B]): Array[T]

  157. def diff(that: collection.Seq[T]): Array[T]

    Permalink

    [use case] Computes the multiset difference between this array and another sequence.

    [use case]

    Computes the multiset difference between this array and another sequence.

    that

    the sequence of elements to remove

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).diff(that)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def diff[B >: A](that: GenSeq[B]): Array[T]

  158. def distinct: Array[Unit]

    Permalink

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    returns

    A new mutable indexed sequence which contains the first occurrence of every element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).distinct
    Definition Classes
    SeqLikeGenSeqLike
  159. def distinct: Array[Short]

    Permalink

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    returns

    A new mutable indexed sequence which contains the first occurrence of every element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).distinct
    Definition Classes
    SeqLikeGenSeqLike
  160. def distinct: Array[T]

    Permalink

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    returns

    A new mutable indexed sequence which contains the first occurrence of every element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).distinct
    Definition Classes
    SeqLikeGenSeqLike
  161. def distinct: Array[Long]

    Permalink

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    returns

    A new mutable indexed sequence which contains the first occurrence of every element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).distinct
    Definition Classes
    SeqLikeGenSeqLike
  162. def distinct: Array[Int]

    Permalink

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    returns

    A new mutable indexed sequence which contains the first occurrence of every element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).distinct
    Definition Classes
    SeqLikeGenSeqLike
  163. def distinct: Array[Float]

    Permalink

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    returns

    A new mutable indexed sequence which contains the first occurrence of every element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).distinct
    Definition Classes
    SeqLikeGenSeqLike
  164. def distinct: Array[Double]

    Permalink

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    returns

    A new mutable indexed sequence which contains the first occurrence of every element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).distinct
    Definition Classes
    SeqLikeGenSeqLike
  165. def distinct: Array[Char]

    Permalink

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    returns

    A new mutable indexed sequence which contains the first occurrence of every element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).distinct
    Definition Classes
    SeqLikeGenSeqLike
  166. def distinct: Array[Byte]

    Permalink

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    returns

    A new mutable indexed sequence which contains the first occurrence of every element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).distinct
    Definition Classes
    SeqLikeGenSeqLike
  167. def distinct: Array[Boolean]

    Permalink

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    returns

    A new mutable indexed sequence which contains the first occurrence of every element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).distinct
    Definition Classes
    SeqLikeGenSeqLike
  168. def distinct: Array[T]

    Permalink

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    Builds a new mutable indexed sequence from this mutable indexed sequence without any duplicate elements.

    returns

    A new mutable indexed sequence which contains the first occurrence of every element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).distinct
    Definition Classes
    SeqLikeGenSeqLike
  169. def drop(n: Int): Array[Unit]

    Permalink

    Selects all elements except first n ones.

    Selects all elements except first n ones.

    n

    the number of elements to drop from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).drop(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  170. def drop(n: Int): Array[Short]

    Permalink

    Selects all elements except first n ones.

    Selects all elements except first n ones.

    n

    the number of elements to drop from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).drop(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  171. def drop(n: Int): Array[T]

    Permalink

    Selects all elements except first n ones.

    Selects all elements except first n ones.

    n

    the number of elements to drop from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).drop(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  172. def drop(n: Int): Array[Long]

    Permalink

    Selects all elements except first n ones.

    Selects all elements except first n ones.

    n

    the number of elements to drop from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).drop(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  173. def drop(n: Int): Array[Int]

    Permalink

    Selects all elements except first n ones.

    Selects all elements except first n ones.

    n

    the number of elements to drop from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).drop(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  174. def drop(n: Int): Array[Float]

    Permalink

    Selects all elements except first n ones.

    Selects all elements except first n ones.

    n

    the number of elements to drop from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).drop(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  175. def drop(n: Int): Array[Double]

    Permalink

    Selects all elements except first n ones.

    Selects all elements except first n ones.

    n

    the number of elements to drop from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).drop(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  176. def drop(n: Int): Array[Char]

    Permalink

    Selects all elements except first n ones.

    Selects all elements except first n ones.

    n

    the number of elements to drop from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).drop(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  177. def drop(n: Int): Array[Byte]

    Permalink

    Selects all elements except first n ones.

    Selects all elements except first n ones.

    n

    the number of elements to drop from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).drop(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  178. def drop(n: Int): Array[Boolean]

    Permalink

    Selects all elements except first n ones.

    Selects all elements except first n ones.

    n

    the number of elements to drop from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).drop(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  179. def drop(n: Int): Array[T]

    Permalink

    Selects all elements except first n ones.

    Selects all elements except first n ones.

    n

    the number of elements to drop from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).drop(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  180. def dropRight(n: Int): Array[Unit]

    Permalink

    Selects all elements except last n ones.

    Selects all elements except last n ones.

    n

    The number of elements to take

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).dropRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  181. def dropRight(n: Int): Array[Short]

    Permalink

    Selects all elements except last n ones.

    Selects all elements except last n ones.

    n

    The number of elements to take

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).dropRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  182. def dropRight(n: Int): Array[T]

    Permalink

    Selects all elements except last n ones.

    Selects all elements except last n ones.

    n

    The number of elements to take

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).dropRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  183. def dropRight(n: Int): Array[Long]

    Permalink

    Selects all elements except last n ones.

    Selects all elements except last n ones.

    n

    The number of elements to take

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).dropRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  184. def dropRight(n: Int): Array[Int]

    Permalink

    Selects all elements except last n ones.

    Selects all elements except last n ones.

    n

    The number of elements to take

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).dropRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  185. def dropRight(n: Int): Array[Float]

    Permalink

    Selects all elements except last n ones.

    Selects all elements except last n ones.

    n

    The number of elements to take

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).dropRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  186. def dropRight(n: Int): Array[Double]

    Permalink

    Selects all elements except last n ones.

    Selects all elements except last n ones.

    n

    The number of elements to take

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).dropRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  187. def dropRight(n: Int): Array[Char]

    Permalink

    Selects all elements except last n ones.

    Selects all elements except last n ones.

    n

    The number of elements to take

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).dropRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  188. def dropRight(n: Int): Array[Byte]

    Permalink

    Selects all elements except last n ones.

    Selects all elements except last n ones.

    n

    The number of elements to take

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).dropRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  189. def dropRight(n: Int): Array[Boolean]

    Permalink

    Selects all elements except last n ones.

    Selects all elements except last n ones.

    n

    The number of elements to take

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).dropRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  190. def dropRight(n: Int): Array[T]

    Permalink

    Selects all elements except last n ones.

    Selects all elements except last n ones.

    n

    The number of elements to take

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last n ones, or else the empty mutable indexed sequence, if this mutable indexed sequence has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).dropRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  191. def dropWhile(p: (T) ⇒ Boolean): Array[T]

    Permalink

    Drops longest prefix of elements that satisfy a predicate.

    Drops longest prefix of elements that satisfy a predicate.

    returns

    the longest suffix of this mutable indexed sequence whose first element does not satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).dropWhile(p)
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  192. def dropWhile(p: (T) ⇒ Boolean): Array[T]

    Permalink

    Drops longest prefix of elements that satisfy a predicate.

    Drops longest prefix of elements that satisfy a predicate.

    returns

    the longest suffix of this mutable indexed sequence whose first element does not satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).dropWhile(p)
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  193. def endsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence ends with the given sequence.

    Tests whether this mutable indexed sequence ends with the given sequence.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence has that as a suffix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).endsWith(that)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  194. def endsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence ends with the given sequence.

    Tests whether this mutable indexed sequence ends with the given sequence.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence has that as a suffix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).endsWith(that)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  195. def endsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence ends with the given sequence.

    Tests whether this mutable indexed sequence ends with the given sequence.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence has that as a suffix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).endsWith(that)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  196. def endsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence ends with the given sequence.

    Tests whether this mutable indexed sequence ends with the given sequence.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence has that as a suffix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).endsWith(that)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  197. def endsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence ends with the given sequence.

    Tests whether this mutable indexed sequence ends with the given sequence.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence has that as a suffix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).endsWith(that)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  198. def endsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence ends with the given sequence.

    Tests whether this mutable indexed sequence ends with the given sequence.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence has that as a suffix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).endsWith(that)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  199. def endsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence ends with the given sequence.

    Tests whether this mutable indexed sequence ends with the given sequence.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence has that as a suffix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).endsWith(that)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  200. def endsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence ends with the given sequence.

    Tests whether this mutable indexed sequence ends with the given sequence.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence has that as a suffix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).endsWith(that)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  201. def endsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence ends with the given sequence.

    Tests whether this mutable indexed sequence ends with the given sequence.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence has that as a suffix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).endsWith(that)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  202. def endsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence ends with the given sequence.

    Tests whether this mutable indexed sequence ends with the given sequence.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence has that as a suffix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).endsWith(that)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  203. def endsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence ends with the given sequence.

    Tests whether this mutable indexed sequence ends with the given sequence.

    that

    the sequence to test

    returns

    true if this mutable indexed sequence has that as a suffix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).endsWith(that)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  204. def equals(that: Any): Boolean

    Permalink

    The equals method for arbitrary sequences.

    The equals method for arbitrary sequences. Compares this sequence to some other object.

    that

    The object to compare the sequence to

    returns

    true if that is a sequence that has the same elements as this sequence in the same order, false otherwise

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    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[T]).equals(that)
    Definition Classes
    GenSeqLikeEqualsAny
  205. def exists(p: (T) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    false if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for some of the elements of this mutable indexed sequence, otherwise false

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).exists(p)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  206. def exists(p: (T) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    Tests whether a predicate holds for some of the elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    false if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for some of the elements of this mutable indexed sequence, otherwise false

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).exists(p)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  207. def filter(p: (T) ⇒ Boolean): Array[T]

    Permalink

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).filter(p)
    Definition Classes
    TraversableLikeGenTraversableLike
  208. def filter(p: (T) ⇒ Boolean): Array[T]

    Permalink

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    Selects all elements of this mutable indexed sequence which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).filter(p)
    Definition Classes
    TraversableLikeGenTraversableLike
  209. def filterNot(p: (T) ⇒ Boolean): Array[T]

    Permalink

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that do not satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).filterNot(p)
    Definition Classes
    TraversableLikeGenTraversableLike
  210. def filterNot(p: (T) ⇒ Boolean): Array[T]

    Permalink

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    Selects all elements of this mutable indexed sequence which do not satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new mutable indexed sequence consisting of all elements of this mutable indexed sequence that do not satisfy the given predicate p. The order of the elements is preserved.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).filterNot(p)
    Definition Classes
    TraversableLikeGenTraversableLike
  211. def find(p: (T) ⇒ Boolean): Option[T]

    Permalink

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).find(p)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  212. def find(p: (T) ⇒ Boolean): Option[T]

    Permalink

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    Finds the first element of the mutable indexed sequence satisfying a predicate, if any.

    p

    the predicate used to test elements.

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).find(p)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  213. def flatten[U](implicit asTrav: (T) ⇒ collection.Traversable[U], m: ClassTag[U]): Array[U]

    Permalink

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

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

    U

    Type of row elements.

    asTrav

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

    returns

    An array obtained by concatenating rows of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).flatten(asTrav, m)
    Definition Classes
    ArrayOps
  214. def flatten[U](implicit asTrav: (T) ⇒ collection.Traversable[U], m: ClassTag[U]): Array[U]

    Permalink

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

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

    U

    Type of row elements.

    asTrav

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

    returns

    An array obtained by concatenating rows of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).flatten(asTrav, m)
    Definition Classes
    ArrayOps
  215. def foldLeft[B](z: B)(op: (B, T) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).foldLeft(z)(op)
    Definition Classes
    IndexedSeqOptimizedTraversableOnceGenTraversableOnce
  216. def foldLeft[B](z: B)(op: (B, T) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).foldLeft(z)(op)
    Definition Classes
    IndexedSeqOptimizedTraversableOnceGenTraversableOnce
  217. def foldRight[B](z: B)(op: (T, B) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).foldRight(z)(op)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
  218. def foldRight[B](z: B)(op: (T, B) ⇒ B): B

    Permalink

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

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

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

    where x1, ..., xn are the elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).foldRight(z)(op)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableOnceGenTraversableOnce
  219. def forall(p: (T) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    true if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for all elements of this mutable indexed sequence, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).forall(p)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  220. def forall(p: (T) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    Tests whether a predicate holds for all elements of this mutable indexed sequence.

    p

    the predicate used to test elements.

    returns

    true if this mutable indexed sequence is empty, otherwise true if the given predicate p holds for all elements of this mutable indexed sequence, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).forall(p)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  221. def foreach(f: (A) ⇒ Unit): Unit

    Permalink

    [use case] Applies a function f to all elements of this array.

    [use case]

    Applies a function f to all elements of this array.

    Note: this method underlies the implementation of most other bulk operations. Subclasses should re-implement this method if a more efficient implementation exists.

    f

    the function that is applied for its side-effect to every element. The result of function f is discarded.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).foreach(f)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLikeTraversableOnceGenTraversableOnceFilterMonadic
    Full Signature

    def foreach[U](f: (Unit) ⇒ U): Unit

  222. def foreach(f: (A) ⇒ Unit): Unit

    Permalink

    [use case] Applies a function f to all elements of this array.

    [use case]

    Applies a function f to all elements of this array.

    Note: this method underlies the implementation of most other bulk operations. Subclasses should re-implement this method if a more efficient implementation exists.

    f

    the function that is applied for its side-effect to every element. The result of function f is discarded.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).foreach(f)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLikeTraversableOnceGenTraversableOnceFilterMonadic
    Full Signature

    def foreach[U](f: (Short) ⇒ U): Unit

  223. def foreach(f: (A) ⇒ Unit): Unit

    Permalink

    [use case] Applies a function f to all elements of this array.

    [use case]

    Applies a function f to all elements of this array.

    Note: this method underlies the implementation of most other bulk operations. Subclasses should re-implement this method if a more efficient implementation exists.

    f

    the function that is applied for its side-effect to every element. The result of function f is discarded.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).foreach(f)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLikeTraversableOnceGenTraversableOnceFilterMonadic
    Full Signature

    def foreach[U](f: (T) ⇒ U): Unit

  224. def foreach(f: (A) ⇒ Unit): Unit

    Permalink

    [use case] Applies a function f to all elements of this array.

    [use case]

    Applies a function f to all elements of this array.

    Note: this method underlies the implementation of most other bulk operations. Subclasses should re-implement this method if a more efficient implementation exists.

    f

    the function that is applied for its side-effect to every element. The result of function f is discarded.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).foreach(f)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLikeTraversableOnceGenTraversableOnceFilterMonadic
    Full Signature

    def foreach[U](f: (Long) ⇒ U): Unit

  225. def foreach(f: (A) ⇒ Unit): Unit

    Permalink

    [use case] Applies a function f to all elements of this array.

    [use case]

    Applies a function f to all elements of this array.

    Note: this method underlies the implementation of most other bulk operations. Subclasses should re-implement this method if a more efficient implementation exists.

    f

    the function that is applied for its side-effect to every element. The result of function f is discarded.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).foreach(f)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLikeTraversableOnceGenTraversableOnceFilterMonadic
    Full Signature

    def foreach[U](f: (Int) ⇒ U): Unit

  226. def foreach(f: (A) ⇒ Unit): Unit

    Permalink

    [use case] Applies a function f to all elements of this array.

    [use case]

    Applies a function f to all elements of this array.

    Note: this method underlies the implementation of most other bulk operations. Subclasses should re-implement this method if a more efficient implementation exists.

    f

    the function that is applied for its side-effect to every element. The result of function f is discarded.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).foreach(f)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLikeTraversableOnceGenTraversableOnceFilterMonadic
    Full Signature

    def foreach[U](f: (Float) ⇒ U): Unit

  227. def foreach(f: (A) ⇒ Unit): Unit

    Permalink

    [use case] Applies a function f to all elements of this array.

    [use case]

    Applies a function f to all elements of this array.

    Note: this method underlies the implementation of most other bulk operations. Subclasses should re-implement this method if a more efficient implementation exists.

    f

    the function that is applied for its side-effect to every element. The result of function f is discarded.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).foreach(f)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLikeTraversableOnceGenTraversableOnceFilterMonadic
    Full Signature

    def foreach[U](f: (Double) ⇒ U): Unit

  228. def foreach(f: (A) ⇒ Unit): Unit

    Permalink

    [use case] Applies a function f to all elements of this array.

    [use case]

    Applies a function f to all elements of this array.

    Note: this method underlies the implementation of most other bulk operations. Subclasses should re-implement this method if a more efficient implementation exists.

    f

    the function that is applied for its side-effect to every element. The result of function f is discarded.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).foreach(f)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLikeTraversableOnceGenTraversableOnceFilterMonadic
    Full Signature

    def foreach[U](f: (Char) ⇒ U): Unit

  229. def foreach(f: (A) ⇒ Unit): Unit

    Permalink

    [use case] Applies a function f to all elements of this array.

    [use case]

    Applies a function f to all elements of this array.

    Note: this method underlies the implementation of most other bulk operations. Subclasses should re-implement this method if a more efficient implementation exists.

    f

    the function that is applied for its side-effect to every element. The result of function f is discarded.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).foreach(f)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLikeTraversableOnceGenTraversableOnceFilterMonadic
    Full Signature

    def foreach[U](f: (Byte) ⇒ U): Unit

  230. def foreach(f: (A) ⇒ Unit): Unit

    Permalink

    [use case] Applies a function f to all elements of this array.

    [use case]

    Applies a function f to all elements of this array.

    Note: this method underlies the implementation of most other bulk operations. Subclasses should re-implement this method if a more efficient implementation exists.

    f

    the function that is applied for its side-effect to every element. The result of function f is discarded.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).foreach(f)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLikeTraversableOnceGenTraversableOnceFilterMonadic
    Full Signature

    def foreach[U](f: (Boolean) ⇒ U): Unit

  231. def foreach(f: (A) ⇒ Unit): Unit

    Permalink

    [use case] Applies a function f to all elements of this array.

    [use case]

    Applies a function f to all elements of this array.

    Note: this method underlies the implementation of most other bulk operations. Subclasses should re-implement this method if a more efficient implementation exists.

    f

    the function that is applied for its side-effect to every element. The result of function f is discarded.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).foreach(f)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLikeTraversableOnceGenTraversableOnceFilterMonadic
    Full Signature

    def foreach[U](f: (T) ⇒ U): Unit

  232. def groupBy[K](f: (T) ⇒ K): Map[K, Array[T]]

    Permalink

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Note: this method is not re-implemented by views. This means when applied to a view it will always force the view and return a new mutable indexed sequence.

    K

    the type of keys returned by the discriminator function.

    f

    the discriminator function.

    returns

    A map from keys to mutable indexed sequences such that the following invariant holds:

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

    That is, every key k is bound to a mutable indexed sequence of those elements x for which f(x) equals k.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).groupBy(f)
    Definition Classes
    TraversableLikeGenTraversableLike
  233. def groupBy[K](f: (T) ⇒ K): Map[K, Array[T]]

    Permalink

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Partitions this mutable indexed sequence into a map of mutable indexed sequences according to some discriminator function.

    Note: this method is not re-implemented by views. This means when applied to a view it will always force the view and return a new mutable indexed sequence.

    K

    the type of keys returned by the discriminator function.

    f

    the discriminator function.

    returns

    A map from keys to mutable indexed sequences such that the following invariant holds:

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

    That is, every key k is bound to a mutable indexed sequence of those elements x for which f(x) equals k.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).groupBy(f)
    Definition Classes
    TraversableLikeGenTraversableLike
  234. def grouped(size: Int): collection.Iterator[Array[Unit]]

    Permalink

    Partitions elements in fixed size mutable indexed sequences.

    Partitions elements in fixed size mutable indexed sequences.

    size

    the number of elements per group

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).grouped(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method grouped

  235. def grouped(size: Int): collection.Iterator[Array[Short]]

    Permalink

    Partitions elements in fixed size mutable indexed sequences.

    Partitions elements in fixed size mutable indexed sequences.

    size

    the number of elements per group

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).grouped(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method grouped

  236. def grouped(size: Int): collection.Iterator[Array[T]]

    Permalink

    Partitions elements in fixed size mutable indexed sequences.

    Partitions elements in fixed size mutable indexed sequences.

    size

    the number of elements per group

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).grouped(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method grouped

  237. def grouped(size: Int): collection.Iterator[Array[Long]]

    Permalink

    Partitions elements in fixed size mutable indexed sequences.

    Partitions elements in fixed size mutable indexed sequences.

    size

    the number of elements per group

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).grouped(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method grouped

  238. def grouped(size: Int): collection.Iterator[Array[Int]]

    Permalink

    Partitions elements in fixed size mutable indexed sequences.

    Partitions elements in fixed size mutable indexed sequences.

    size

    the number of elements per group

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).grouped(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method grouped

  239. def grouped(size: Int): collection.Iterator[Array[Float]]

    Permalink

    Partitions elements in fixed size mutable indexed sequences.

    Partitions elements in fixed size mutable indexed sequences.

    size

    the number of elements per group

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).grouped(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method grouped

  240. def grouped(size: Int): collection.Iterator[Array[Double]]

    Permalink

    Partitions elements in fixed size mutable indexed sequences.

    Partitions elements in fixed size mutable indexed sequences.

    size

    the number of elements per group

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).grouped(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method grouped

  241. def grouped(size: Int): collection.Iterator[Array[Char]]

    Permalink

    Partitions elements in fixed size mutable indexed sequences.

    Partitions elements in fixed size mutable indexed sequences.

    size

    the number of elements per group

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).grouped(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method grouped

  242. def grouped(size: Int): collection.Iterator[Array[Byte]]

    Permalink

    Partitions elements in fixed size mutable indexed sequences.

    Partitions elements in fixed size mutable indexed sequences.

    size

    the number of elements per group

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).grouped(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method grouped

  243. def grouped(size: Int): collection.Iterator[Array[Boolean]]

    Permalink

    Partitions elements in fixed size mutable indexed sequences.

    Partitions elements in fixed size mutable indexed sequences.

    size

    the number of elements per group

    returns

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

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).grouped(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method grouped

  244. def grouped(size: Int): collection.Iterator[Array[T]]

    Permalink

    Partitions elements in fixed size mutable indexed sequences.

    Partitions elements in fixed size mutable indexed sequences.

    size

    the number of elements per group

    returns

    An iterator producing mutable indexed sequences of size size, except the last will be less than size size if the elements don't divide evenly.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).grouped(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method grouped

  245. def hasDefiniteSize: Boolean

    Permalink

    Tests whether this mutable indexed sequence is known to have a finite size.

    Tests whether this mutable indexed sequence is known to have a finite size. All strict collections are known to have finite size. For a non-strict collection such as Stream, the predicate returns true if all elements have been computed. It returns false if the stream is not yet evaluated to the end.

    Note: many collection methods will not work on collections of infinite sizes.

    returns

    true if this collection is known to have finite size, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).hasDefiniteSize
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
  246. def hasDefiniteSize: Boolean

    Permalink

    Tests whether this mutable indexed sequence is known to have a finite size.

    Tests whether this mutable indexed sequence is known to have a finite size. All strict collections are known to have finite size. For a non-strict collection such as Stream, the predicate returns true if all elements have been computed. It returns false if the stream is not yet evaluated to the end.

    Note: many collection methods will not work on collections of infinite sizes.

    returns

    true if this collection is known to have finite size, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).hasDefiniteSize
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
  247. def hasDefiniteSize: Boolean

    Permalink

    Tests whether this mutable indexed sequence is known to have a finite size.

    Tests whether this mutable indexed sequence is known to have a finite size. All strict collections are known to have finite size. For a non-strict collection such as Stream, the predicate returns true if all elements have been computed. It returns false if the stream is not yet evaluated to the end.

    Note: many collection methods will not work on collections of infinite sizes.

    returns

    true if this collection is known to have finite size, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).hasDefiniteSize
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
  248. def hasDefiniteSize: Boolean

    Permalink

    Tests whether this mutable indexed sequence is known to have a finite size.

    Tests whether this mutable indexed sequence is known to have a finite size. All strict collections are known to have finite size. For a non-strict collection such as Stream, the predicate returns true if all elements have been computed. It returns false if the stream is not yet evaluated to the end.

    Note: many collection methods will not work on collections of infinite sizes.

    returns

    true if this collection is known to have finite size, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).hasDefiniteSize
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
  249. def hasDefiniteSize: Boolean

    Permalink

    Tests whether this mutable indexed sequence is known to have a finite size.

    Tests whether this mutable indexed sequence is known to have a finite size. All strict collections are known to have finite size. For a non-strict collection such as Stream, the predicate returns true if all elements have been computed. It returns false if the stream is not yet evaluated to the end.

    Note: many collection methods will not work on collections of infinite sizes.

    returns

    true if this collection is known to have finite size, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).hasDefiniteSize
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
  250. def hasDefiniteSize: Boolean

    Permalink

    Tests whether this mutable indexed sequence is known to have a finite size.

    Tests whether this mutable indexed sequence is known to have a finite size. All strict collections are known to have finite size. For a non-strict collection such as Stream, the predicate returns true if all elements have been computed. It returns false if the stream is not yet evaluated to the end.

    Note: many collection methods will not work on collections of infinite sizes.

    returns

    true if this collection is known to have finite size, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).hasDefiniteSize
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
  251. def hasDefiniteSize: Boolean

    Permalink

    Tests whether this mutable indexed sequence is known to have a finite size.

    Tests whether this mutable indexed sequence is known to have a finite size. All strict collections are known to have finite size. For a non-strict collection such as Stream, the predicate returns true if all elements have been computed. It returns false if the stream is not yet evaluated to the end.

    Note: many collection methods will not work on collections of infinite sizes.

    returns

    true if this collection is known to have finite size, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).hasDefiniteSize
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
  252. def hasDefiniteSize: Boolean

    Permalink

    Tests whether this mutable indexed sequence is known to have a finite size.

    Tests whether this mutable indexed sequence is known to have a finite size. All strict collections are known to have finite size. For a non-strict collection such as Stream, the predicate returns true if all elements have been computed. It returns false if the stream is not yet evaluated to the end.

    Note: many collection methods will not work on collections of infinite sizes.

    returns

    true if this collection is known to have finite size, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).hasDefiniteSize
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
  253. def hasDefiniteSize: Boolean

    Permalink

    Tests whether this mutable indexed sequence is known to have a finite size.

    Tests whether this mutable indexed sequence is known to have a finite size. All strict collections are known to have finite size. For a non-strict collection such as Stream, the predicate returns true if all elements have been computed. It returns false if the stream is not yet evaluated to the end.

    Note: many collection methods will not work on collections of infinite sizes.

    returns

    true if this collection is known to have finite size, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).hasDefiniteSize
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
  254. def hasDefiniteSize: Boolean

    Permalink

    Tests whether this mutable indexed sequence is known to have a finite size.

    Tests whether this mutable indexed sequence is known to have a finite size. All strict collections are known to have finite size. For a non-strict collection such as Stream, the predicate returns true if all elements have been computed. It returns false if the stream is not yet evaluated to the end.

    Note: many collection methods will not work on collections of infinite sizes.

    returns

    true if this collection is known to have finite size, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).hasDefiniteSize
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
  255. def hasDefiniteSize: Boolean

    Permalink

    Tests whether this mutable indexed sequence is known to have a finite size.

    Tests whether this mutable indexed sequence is known to have a finite size. All strict collections are known to have finite size. For a non-strict collection such as Stream, the predicate returns true if all elements have been computed. It returns false if the stream is not yet evaluated to the end.

    Note: many collection methods will not work on collections of infinite sizes.

    returns

    true if this collection is known to have finite size, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).hasDefiniteSize
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
  256. def hashCode(): Int

    Permalink

    Hashcodes for Array produce a value from the hashcodes of all the elements of the mutable indexed sequence.

    Hashcodes for Array produce a value from the hashcodes of all the elements of the mutable indexed sequence.

    returns

    the hash code value for this object.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    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[T]).hashCode()
    Definition Classes
    IndexedSeqLikeGenSeqLikeAny
  257. def head: Unit

    Permalink

    Selects the first element of this mutable indexed sequence.

    Selects the first element of this mutable indexed sequence.

    returns

    the first element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).head
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException if the mutable indexed sequence is empty.

  258. def head: Short

    Permalink

    Selects the first element of this mutable indexed sequence.

    Selects the first element of this mutable indexed sequence.

    returns

    the first element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).head
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException if the mutable indexed sequence is empty.

  259. def head: T

    Permalink

    Selects the first element of this mutable indexed sequence.

    Selects the first element of this mutable indexed sequence.

    returns

    the first element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).head
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException if the mutable indexed sequence is empty.

  260. def head: Long

    Permalink

    Selects the first element of this mutable indexed sequence.

    Selects the first element of this mutable indexed sequence.

    returns

    the first element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).head
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException if the mutable indexed sequence is empty.

  261. def head: Int

    Permalink

    Selects the first element of this mutable indexed sequence.

    Selects the first element of this mutable indexed sequence.

    returns

    the first element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).head
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException if the mutable indexed sequence is empty.

  262. def head: Float

    Permalink

    Selects the first element of this mutable indexed sequence.

    Selects the first element of this mutable indexed sequence.

    returns

    the first element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).head
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException if the mutable indexed sequence is empty.

  263. def head: Double

    Permalink

    Selects the first element of this mutable indexed sequence.

    Selects the first element of this mutable indexed sequence.

    returns

    the first element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).head
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException if the mutable indexed sequence is empty.

  264. def head: Char

    Permalink

    Selects the first element of this mutable indexed sequence.

    Selects the first element of this mutable indexed sequence.

    returns

    the first element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).head
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException if the mutable indexed sequence is empty.

  265. def head: Byte

    Permalink

    Selects the first element of this mutable indexed sequence.

    Selects the first element of this mutable indexed sequence.

    returns

    the first element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).head
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException if the mutable indexed sequence is empty.

  266. def head: Boolean

    Permalink

    Selects the first element of this mutable indexed sequence.

    Selects the first element of this mutable indexed sequence.

    returns

    the first element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).head
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException if the mutable indexed sequence is empty.

  267. def head: T

    Permalink

    Selects the first element of this mutable indexed sequence.

    Selects the first element of this mutable indexed sequence.

    returns

    the first element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).head
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException if the mutable indexed sequence is empty.

  268. def headOption: Option[Unit]

    Permalink

    Optionally selects the first element.

    Optionally selects the first element.

    returns

    the first element of this mutable indexed sequence if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).headOption
    Definition Classes
    TraversableLikeGenTraversableLike
  269. def headOption: Option[Short]

    Permalink

    Optionally selects the first element.

    Optionally selects the first element.

    returns

    the first element of this mutable indexed sequence if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).headOption
    Definition Classes
    TraversableLikeGenTraversableLike
  270. def headOption: Option[T]

    Permalink

    Optionally selects the first element.

    Optionally selects the first element.

    returns

    the first element of this mutable indexed sequence if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).headOption
    Definition Classes
    TraversableLikeGenTraversableLike
  271. def headOption: Option[Long]

    Permalink

    Optionally selects the first element.

    Optionally selects the first element.

    returns

    the first element of this mutable indexed sequence if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).headOption
    Definition Classes
    TraversableLikeGenTraversableLike
  272. def headOption: Option[Int]

    Permalink

    Optionally selects the first element.

    Optionally selects the first element.

    returns

    the first element of this mutable indexed sequence if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).headOption
    Definition Classes
    TraversableLikeGenTraversableLike
  273. def headOption: Option[Float]

    Permalink

    Optionally selects the first element.

    Optionally selects the first element.

    returns

    the first element of this mutable indexed sequence if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).headOption
    Definition Classes
    TraversableLikeGenTraversableLike
  274. def headOption: Option[Double]

    Permalink

    Optionally selects the first element.

    Optionally selects the first element.

    returns

    the first element of this mutable indexed sequence if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).headOption
    Definition Classes
    TraversableLikeGenTraversableLike
  275. def headOption: Option[Char]

    Permalink

    Optionally selects the first element.

    Optionally selects the first element.

    returns

    the first element of this mutable indexed sequence if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).headOption
    Definition Classes
    TraversableLikeGenTraversableLike
  276. def headOption: Option[Byte]

    Permalink

    Optionally selects the first element.

    Optionally selects the first element.

    returns

    the first element of this mutable indexed sequence if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).headOption
    Definition Classes
    TraversableLikeGenTraversableLike
  277. def headOption: Option[Boolean]

    Permalink

    Optionally selects the first element.

    Optionally selects the first element.

    returns

    the first element of this mutable indexed sequence if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).headOption
    Definition Classes
    TraversableLikeGenTraversableLike
  278. def headOption: Option[T]

    Permalink

    Optionally selects the first element.

    Optionally selects the first element.

    returns

    the first element of this mutable indexed sequence if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).headOption
    Definition Classes
    TraversableLikeGenTraversableLike
  279. def indexOf(elem: T, from: Int): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array after or at some start index.

    [use case]

    Finds index of first occurrence of some value in this array after or at some start index.

    elem

    the element value to search for.

    from

    the start index

    returns

    the index >= from of the first element of this array that is equal (as determined by ==) to elem, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).indexOf(elem, from)
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B, from: Int): Int

  280. def indexOf(elem: T): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array.

    [use case]

    Finds index of first occurrence of some value in this array.

    elem

    the element value to search for.

    returns

    the index of the first element of this array that is equal (as determined by ==) to elem, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).indexOf(elem)
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B): Int

  281. def indexOf(elem: T, from: Int): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array after or at some start index.

    [use case]

    Finds index of first occurrence of some value in this array after or at some start index.

    elem

    the element value to search for.

    from

    the start index

    returns

    the index >= from of the first element of this array that is equal (as determined by ==) to elem, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).indexOf(elem, from)
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B, from: Int): Int

  282. def indexOf(elem: T): Int

    Permalink

    [use case] Finds index of first occurrence of some value in this array.

    [use case]

    Finds index of first occurrence of some value in this array.

    elem

    the element value to search for.

    returns

    the index of the first element of this array that is equal (as determined by ==) to elem, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).indexOf(elem)
    Definition Classes
    GenSeqLike
    Full Signature

    def indexOf[B >: A](elem: B): Int

  283. def indexWhere(p: (T) ⇒ Boolean, from: Int): Int

    Permalink

    Finds index of the first element satisfying some predicate after or at some start index.

    Finds index of the first element satisfying some predicate after or at some start index.

    p

    the predicate used to test elements.

    from

    the start index

    returns

    the index >= from of the first element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).indexWhere(p, from)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  284. def indexWhere(p: (T) ⇒ Boolean): Int

    Permalink

    Finds index of first element satisfying some predicate.

    Finds index of first element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the first element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).indexWhere(p)
    Definition Classes
    GenSeqLike
  285. def indexWhere(p: (T) ⇒ Boolean, from: Int): Int

    Permalink

    Finds index of the first element satisfying some predicate after or at some start index.

    Finds index of the first element satisfying some predicate after or at some start index.

    p

    the predicate used to test elements.

    from

    the start index

    returns

    the index >= from of the first element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).indexWhere(p, from)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  286. def indexWhere(p: (T) ⇒ Boolean): Int

    Permalink

    Finds index of first element satisfying some predicate.

    Finds index of first element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the first element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).indexWhere(p)
    Definition Classes
    GenSeqLike
  287. def indices: collection.immutable.Range

    Permalink

    Produces the range of all indices of this sequence.

    Produces the range of all indices of this sequence.

    returns

    a Range value from 0 to one less than the length of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).indices
    Definition Classes
    SeqLike
  288. def indices: collection.immutable.Range

    Permalink

    Produces the range of all indices of this sequence.

    Produces the range of all indices of this sequence.

    returns

    a Range value from 0 to one less than the length of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).indices
    Definition Classes
    SeqLike
  289. def indices: collection.immutable.Range

    Permalink

    Produces the range of all indices of this sequence.

    Produces the range of all indices of this sequence.

    returns

    a Range value from 0 to one less than the length of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).indices
    Definition Classes
    SeqLike
  290. def indices: collection.immutable.Range

    Permalink

    Produces the range of all indices of this sequence.

    Produces the range of all indices of this sequence.

    returns

    a Range value from 0 to one less than the length of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).indices
    Definition Classes
    SeqLike
  291. def indices: collection.immutable.Range

    Permalink

    Produces the range of all indices of this sequence.

    Produces the range of all indices of this sequence.

    returns

    a Range value from 0 to one less than the length of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).indices
    Definition Classes
    SeqLike
  292. def indices: collection.immutable.Range

    Permalink

    Produces the range of all indices of this sequence.

    Produces the range of all indices of this sequence.

    returns

    a Range value from 0 to one less than the length of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).indices
    Definition Classes
    SeqLike
  293. def indices: collection.immutable.Range

    Permalink

    Produces the range of all indices of this sequence.

    Produces the range of all indices of this sequence.

    returns

    a Range value from 0 to one less than the length of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).indices
    Definition Classes
    SeqLike
  294. def indices: collection.immutable.Range

    Permalink

    Produces the range of all indices of this sequence.

    Produces the range of all indices of this sequence.

    returns

    a Range value from 0 to one less than the length of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).indices
    Definition Classes
    SeqLike
  295. def indices: collection.immutable.Range

    Permalink

    Produces the range of all indices of this sequence.

    Produces the range of all indices of this sequence.

    returns

    a Range value from 0 to one less than the length of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).indices
    Definition Classes
    SeqLike
  296. def indices: collection.immutable.Range

    Permalink

    Produces the range of all indices of this sequence.

    Produces the range of all indices of this sequence.

    returns

    a Range value from 0 to one less than the length of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).indices
    Definition Classes
    SeqLike
  297. def indices: collection.immutable.Range

    Permalink

    Produces the range of all indices of this sequence.

    Produces the range of all indices of this sequence.

    returns

    a Range value from 0 to one less than the length of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).indices
    Definition Classes
    SeqLike
  298. def init: Array[Unit]

    Permalink

    Selects all elements except the last.

    Selects all elements except the last.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).init
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    UnsupportedOperationException if the mutable indexed sequence is empty.

  299. def init: Array[Short]

    Permalink

    Selects all elements except the last.

    Selects all elements except the last.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).init
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    UnsupportedOperationException if the mutable indexed sequence is empty.

  300. def init: Array[T]

    Permalink

    Selects all elements except the last.

    Selects all elements except the last.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).init
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    UnsupportedOperationException if the mutable indexed sequence is empty.

  301. def init: Array[Long]

    Permalink

    Selects all elements except the last.

    Selects all elements except the last.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).init
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    UnsupportedOperationException if the mutable indexed sequence is empty.

  302. def init: Array[Int]

    Permalink

    Selects all elements except the last.

    Selects all elements except the last.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).init
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    UnsupportedOperationException if the mutable indexed sequence is empty.

  303. def init: Array[Float]

    Permalink

    Selects all elements except the last.

    Selects all elements except the last.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).init
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    UnsupportedOperationException if the mutable indexed sequence is empty.

  304. def init: Array[Double]

    Permalink

    Selects all elements except the last.

    Selects all elements except the last.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).init
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    UnsupportedOperationException if the mutable indexed sequence is empty.

  305. def init: Array[Char]

    Permalink

    Selects all elements except the last.

    Selects all elements except the last.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).init
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    UnsupportedOperationException if the mutable indexed sequence is empty.

  306. def init: Array[Byte]

    Permalink

    Selects all elements except the last.

    Selects all elements except the last.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).init
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    UnsupportedOperationException if the mutable indexed sequence is empty.

  307. def init: Array[Boolean]

    Permalink

    Selects all elements except the last.

    Selects all elements except the last.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).init
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    UnsupportedOperationException if the mutable indexed sequence is empty.

  308. def init: Array[T]

    Permalink

    Selects all elements except the last.

    Selects all elements except the last.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the last one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).init
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    UnsupportedOperationException if the mutable indexed sequence is empty.

  309. def inits: collection.Iterator[Array[Unit]]

    Permalink

    Iterates over the inits of this mutable indexed sequence.

    Iterates over the inits of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of init.

    returns

    an iterator over all the inits of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).inits
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).inits = Iterator(List(1,2,3), List(1,2), List(1), Nil)

  310. def inits: collection.Iterator[Array[Short]]

    Permalink

    Iterates over the inits of this mutable indexed sequence.

    Iterates over the inits of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of init.

    returns

    an iterator over all the inits of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).inits
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).inits = Iterator(List(1,2,3), List(1,2), List(1), Nil)

  311. def inits: collection.Iterator[Array[T]]

    Permalink

    Iterates over the inits of this mutable indexed sequence.

    Iterates over the inits of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of init.

    returns

    an iterator over all the inits of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).inits
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).inits = Iterator(List(1,2,3), List(1,2), List(1), Nil)

  312. def inits: collection.Iterator[Array[Long]]

    Permalink

    Iterates over the inits of this mutable indexed sequence.

    Iterates over the inits of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of init.

    returns

    an iterator over all the inits of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).inits
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).inits = Iterator(List(1,2,3), List(1,2), List(1), Nil)

  313. def inits: collection.Iterator[Array[Int]]

    Permalink

    Iterates over the inits of this mutable indexed sequence.

    Iterates over the inits of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of init.

    returns

    an iterator over all the inits of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).inits
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).inits = Iterator(List(1,2,3), List(1,2), List(1), Nil)

  314. def inits: collection.Iterator[Array[Float]]

    Permalink

    Iterates over the inits of this mutable indexed sequence.

    Iterates over the inits of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of init.

    returns

    an iterator over all the inits of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).inits
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).inits = Iterator(List(1,2,3), List(1,2), List(1), Nil)

  315. def inits: collection.Iterator[Array[Double]]

    Permalink

    Iterates over the inits of this mutable indexed sequence.

    Iterates over the inits of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of init.

    returns

    an iterator over all the inits of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).inits
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).inits = Iterator(List(1,2,3), List(1,2), List(1), Nil)

  316. def inits: collection.Iterator[Array[Char]]

    Permalink

    Iterates over the inits of this mutable indexed sequence.

    Iterates over the inits of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of init.

    returns

    an iterator over all the inits of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).inits
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).inits = Iterator(List(1,2,3), List(1,2), List(1), Nil)

  317. def inits: collection.Iterator[Array[Byte]]

    Permalink

    Iterates over the inits of this mutable indexed sequence.

    Iterates over the inits of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of init.

    returns

    an iterator over all the inits of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).inits
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).inits = Iterator(List(1,2,3), List(1,2), List(1), Nil)

  318. def inits: collection.Iterator[Array[Boolean]]

    Permalink

    Iterates over the inits of this mutable indexed sequence.

    Iterates over the inits of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of init.

    returns

    an iterator over all the inits of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).inits
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).inits = Iterator(List(1,2,3), List(1,2), List(1), Nil)

  319. def inits: collection.Iterator[Array[T]]

    Permalink

    Iterates over the inits of this mutable indexed sequence.

    Iterates over the inits of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of init.

    returns

    an iterator over all the inits of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).inits
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).inits = Iterator(List(1,2,3), List(1,2), List(1), Nil)

  320. def intersect(that: collection.Seq[T]): Array[T]

    Permalink

    [use case] Computes the multiset intersection between this array and another sequence.

    [use case]

    Computes the multiset intersection between this array and another sequence.

    that

    the sequence of elements to intersect with.

    returns

    a new array which contains all elements of this array which also appear in that. If an element value x appears n times in that, then the first n occurrences of x will be retained in the result, but any following occurrences will be omitted.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).intersect(that)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def intersect[B >: A](that: GenSeq[B]): Array[T]

  321. def intersect(that: collection.Seq[T]): Array[T]

    Permalink

    [use case] Computes the multiset intersection between this array and another sequence.

    [use case]

    Computes the multiset intersection between this array and another sequence.

    that

    the sequence of elements to intersect with.

    returns

    a new array which contains all elements of this array which also appear in that. If an element value x appears n times in that, then the first n occurrences of x will be retained in the result, but any following occurrences will be omitted.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).intersect(that)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def intersect[B >: A](that: GenSeq[B]): Array[T]

  322. def isDefinedAt(idx: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains given index.

    Tests whether this mutable indexed sequence contains given index.

    The implementations of methods apply and isDefinedAt turn a Seq[A] into a PartialFunction[Int, A].

    idx

    the index to test

    returns

    true if this mutable indexed sequence contains an element at position idx, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).isDefinedAt(idx)
    Definition Classes
    GenSeqLike
  323. def isDefinedAt(idx: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains given index.

    Tests whether this mutable indexed sequence contains given index.

    The implementations of methods apply and isDefinedAt turn a Seq[A] into a PartialFunction[Int, A].

    idx

    the index to test

    returns

    true if this mutable indexed sequence contains an element at position idx, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).isDefinedAt(idx)
    Definition Classes
    GenSeqLike
  324. def isDefinedAt(idx: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains given index.

    Tests whether this mutable indexed sequence contains given index.

    The implementations of methods apply and isDefinedAt turn a Seq[A] into a PartialFunction[Int, A].

    idx

    the index to test

    returns

    true if this mutable indexed sequence contains an element at position idx, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).isDefinedAt(idx)
    Definition Classes
    GenSeqLike
  325. def isDefinedAt(idx: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains given index.

    Tests whether this mutable indexed sequence contains given index.

    The implementations of methods apply and isDefinedAt turn a Seq[A] into a PartialFunction[Int, A].

    idx

    the index to test

    returns

    true if this mutable indexed sequence contains an element at position idx, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).isDefinedAt(idx)
    Definition Classes
    GenSeqLike
  326. def isDefinedAt(idx: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains given index.

    Tests whether this mutable indexed sequence contains given index.

    The implementations of methods apply and isDefinedAt turn a Seq[A] into a PartialFunction[Int, A].

    idx

    the index to test

    returns

    true if this mutable indexed sequence contains an element at position idx, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).isDefinedAt(idx)
    Definition Classes
    GenSeqLike
  327. def isDefinedAt(idx: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains given index.

    Tests whether this mutable indexed sequence contains given index.

    The implementations of methods apply and isDefinedAt turn a Seq[A] into a PartialFunction[Int, A].

    idx

    the index to test

    returns

    true if this mutable indexed sequence contains an element at position idx, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).isDefinedAt(idx)
    Definition Classes
    GenSeqLike
  328. def isDefinedAt(idx: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains given index.

    Tests whether this mutable indexed sequence contains given index.

    The implementations of methods apply and isDefinedAt turn a Seq[A] into a PartialFunction[Int, A].

    idx

    the index to test

    returns

    true if this mutable indexed sequence contains an element at position idx, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).isDefinedAt(idx)
    Definition Classes
    GenSeqLike
  329. def isDefinedAt(idx: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains given index.

    Tests whether this mutable indexed sequence contains given index.

    The implementations of methods apply and isDefinedAt turn a Seq[A] into a PartialFunction[Int, A].

    idx

    the index to test

    returns

    true if this mutable indexed sequence contains an element at position idx, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).isDefinedAt(idx)
    Definition Classes
    GenSeqLike
  330. def isDefinedAt(idx: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains given index.

    Tests whether this mutable indexed sequence contains given index.

    The implementations of methods apply and isDefinedAt turn a Seq[A] into a PartialFunction[Int, A].

    idx

    the index to test

    returns

    true if this mutable indexed sequence contains an element at position idx, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).isDefinedAt(idx)
    Definition Classes
    GenSeqLike
  331. def isDefinedAt(idx: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains given index.

    Tests whether this mutable indexed sequence contains given index.

    The implementations of methods apply and isDefinedAt turn a Seq[A] into a PartialFunction[Int, A].

    idx

    the index to test

    returns

    true if this mutable indexed sequence contains an element at position idx, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).isDefinedAt(idx)
    Definition Classes
    GenSeqLike
  332. def isDefinedAt(idx: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains given index.

    Tests whether this mutable indexed sequence contains given index.

    The implementations of methods apply and isDefinedAt turn a Seq[A] into a PartialFunction[Int, A].

    idx

    the index to test

    returns

    true if this mutable indexed sequence contains an element at position idx, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).isDefinedAt(idx)
    Definition Classes
    GenSeqLike
  333. def isEmpty: Boolean

    Permalink

    Tests whether this mutable indexed sequence is empty.

    Tests whether this mutable indexed sequence is empty.

    returns

    true if the mutable indexed sequence contain no elements, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).isEmpty
    Definition Classes
    IndexedSeqOptimizedSeqLikeIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  334. def isEmpty: Boolean

    Permalink

    Tests whether this mutable indexed sequence is empty.

    Tests whether this mutable indexed sequence is empty.

    returns

    true if the mutable indexed sequence contain no elements, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).isEmpty
    Definition Classes
    IndexedSeqOptimizedSeqLikeIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  335. def isEmpty: Boolean

    Permalink

    Tests whether this mutable indexed sequence is empty.

    Tests whether this mutable indexed sequence is empty.

    returns

    true if the mutable indexed sequence contain no elements, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).isEmpty
    Definition Classes
    IndexedSeqOptimizedSeqLikeIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  336. def isEmpty: Boolean

    Permalink

    Tests whether this mutable indexed sequence is empty.

    Tests whether this mutable indexed sequence is empty.

    returns

    true if the mutable indexed sequence contain no elements, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).isEmpty
    Definition Classes
    IndexedSeqOptimizedSeqLikeIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  337. def isEmpty: Boolean

    Permalink

    Tests whether this mutable indexed sequence is empty.

    Tests whether this mutable indexed sequence is empty.

    returns

    true if the mutable indexed sequence contain no elements, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).isEmpty
    Definition Classes
    IndexedSeqOptimizedSeqLikeIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  338. def isEmpty: Boolean

    Permalink

    Tests whether this mutable indexed sequence is empty.

    Tests whether this mutable indexed sequence is empty.

    returns

    true if the mutable indexed sequence contain no elements, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).isEmpty
    Definition Classes
    IndexedSeqOptimizedSeqLikeIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  339. def isEmpty: Boolean

    Permalink

    Tests whether this mutable indexed sequence is empty.

    Tests whether this mutable indexed sequence is empty.

    returns

    true if the mutable indexed sequence contain no elements, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).isEmpty
    Definition Classes
    IndexedSeqOptimizedSeqLikeIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  340. def isEmpty: Boolean

    Permalink

    Tests whether this mutable indexed sequence is empty.

    Tests whether this mutable indexed sequence is empty.

    returns

    true if the mutable indexed sequence contain no elements, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).isEmpty
    Definition Classes
    IndexedSeqOptimizedSeqLikeIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  341. def isEmpty: Boolean

    Permalink

    Tests whether this mutable indexed sequence is empty.

    Tests whether this mutable indexed sequence is empty.

    returns

    true if the mutable indexed sequence contain no elements, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).isEmpty
    Definition Classes
    IndexedSeqOptimizedSeqLikeIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  342. def isEmpty: Boolean

    Permalink

    Tests whether this mutable indexed sequence is empty.

    Tests whether this mutable indexed sequence is empty.

    returns

    true if the mutable indexed sequence contain no elements, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).isEmpty
    Definition Classes
    IndexedSeqOptimizedSeqLikeIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  343. def isEmpty: Boolean

    Permalink

    Tests whether this mutable indexed sequence is empty.

    Tests whether this mutable indexed sequence is empty.

    returns

    true if the mutable indexed sequence contain no elements, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).isEmpty
    Definition Classes
    IndexedSeqOptimizedSeqLikeIterableLikeTraversableLikeTraversableOnceGenTraversableOnce
  344. final def isTraversableAgain: Boolean

    Permalink

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    returns

    true

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).isTraversableAgain
    Definition Classes
    TraversableLikeGenTraversableLikeGenTraversableOnce
  345. final def isTraversableAgain: Boolean

    Permalink

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    returns

    true

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).isTraversableAgain
    Definition Classes
    TraversableLikeGenTraversableLikeGenTraversableOnce
  346. final def isTraversableAgain: Boolean

    Permalink

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    returns

    true

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).isTraversableAgain
    Definition Classes
    TraversableLikeGenTraversableLikeGenTraversableOnce
  347. final def isTraversableAgain: Boolean

    Permalink

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    returns

    true

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).isTraversableAgain
    Definition Classes
    TraversableLikeGenTraversableLikeGenTraversableOnce
  348. final def isTraversableAgain: Boolean

    Permalink

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    returns

    true

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).isTraversableAgain
    Definition Classes
    TraversableLikeGenTraversableLikeGenTraversableOnce
  349. final def isTraversableAgain: Boolean

    Permalink

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    returns

    true

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).isTraversableAgain
    Definition Classes
    TraversableLikeGenTraversableLikeGenTraversableOnce
  350. final def isTraversableAgain: Boolean

    Permalink

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    returns

    true

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).isTraversableAgain
    Definition Classes
    TraversableLikeGenTraversableLikeGenTraversableOnce
  351. final def isTraversableAgain: Boolean

    Permalink

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    returns

    true

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).isTraversableAgain
    Definition Classes
    TraversableLikeGenTraversableLikeGenTraversableOnce
  352. final def isTraversableAgain: Boolean

    Permalink

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    returns

    true

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).isTraversableAgain
    Definition Classes
    TraversableLikeGenTraversableLikeGenTraversableOnce
  353. final def isTraversableAgain: Boolean

    Permalink

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    returns

    true

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).isTraversableAgain
    Definition Classes
    TraversableLikeGenTraversableLikeGenTraversableOnce
  354. final def isTraversableAgain: Boolean

    Permalink

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    Tests whether this mutable indexed sequence can be repeatedly traversed.

    returns

    true

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).isTraversableAgain
    Definition Classes
    TraversableLikeGenTraversableLikeGenTraversableOnce
  355. def iterator: collection.Iterator[Unit]

    Permalink

    Creates a new iterator over all elements contained in this iterable object.

    Creates a new iterator over all elements contained in this iterable object.

    returns

    the new iterator

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).iterator
    Definition Classes
    IndexedSeqLikeIterableLikeGenIterableLike
  356. def iterator: collection.Iterator[Short]

    Permalink

    Creates a new iterator over all elements contained in this iterable object.

    Creates a new iterator over all elements contained in this iterable object.

    returns

    the new iterator

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).iterator
    Definition Classes
    IndexedSeqLikeIterableLikeGenIterableLike
  357. def iterator: collection.Iterator[T]

    Permalink

    Creates a new iterator over all elements contained in this iterable object.

    Creates a new iterator over all elements contained in this iterable object.

    returns

    the new iterator

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).iterator
    Definition Classes
    IndexedSeqLikeIterableLikeGenIterableLike
  358. def iterator: collection.Iterator[Long]

    Permalink

    Creates a new iterator over all elements contained in this iterable object.

    Creates a new iterator over all elements contained in this iterable object.

    returns

    the new iterator

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).iterator
    Definition Classes
    IndexedSeqLikeIterableLikeGenIterableLike
  359. def iterator: collection.Iterator[Int]

    Permalink

    Creates a new iterator over all elements contained in this iterable object.

    Creates a new iterator over all elements contained in this iterable object.

    returns

    the new iterator

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).iterator
    Definition Classes
    IndexedSeqLikeIterableLikeGenIterableLike
  360. def iterator: collection.Iterator[Float]

    Permalink

    Creates a new iterator over all elements contained in this iterable object.

    Creates a new iterator over all elements contained in this iterable object.

    returns

    the new iterator

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).iterator
    Definition Classes
    IndexedSeqLikeIterableLikeGenIterableLike
  361. def iterator: collection.Iterator[Double]

    Permalink

    Creates a new iterator over all elements contained in this iterable object.

    Creates a new iterator over all elements contained in this iterable object.

    returns

    the new iterator

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).iterator
    Definition Classes
    IndexedSeqLikeIterableLikeGenIterableLike
  362. def iterator: collection.Iterator[Char]

    Permalink

    Creates a new iterator over all elements contained in this iterable object.

    Creates a new iterator over all elements contained in this iterable object.

    returns

    the new iterator

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).iterator
    Definition Classes
    IndexedSeqLikeIterableLikeGenIterableLike
  363. def iterator: collection.Iterator[Byte]

    Permalink

    Creates a new iterator over all elements contained in this iterable object.

    Creates a new iterator over all elements contained in this iterable object.

    returns

    the new iterator

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).iterator
    Definition Classes
    IndexedSeqLikeIterableLikeGenIterableLike
  364. def iterator: collection.Iterator[Boolean]

    Permalink

    Creates a new iterator over all elements contained in this iterable object.

    Creates a new iterator over all elements contained in this iterable object.

    returns

    the new iterator

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).iterator
    Definition Classes
    IndexedSeqLikeIterableLikeGenIterableLike
  365. def iterator: collection.Iterator[T]

    Permalink

    Creates a new iterator over all elements contained in this iterable object.

    Creates a new iterator over all elements contained in this iterable object.

    returns

    the new iterator

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).iterator
    Definition Classes
    IndexedSeqLikeIterableLikeGenIterableLike
  366. def last: Unit

    Permalink

    Selects the last element.

    Selects the last element.

    returns

    The last element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).last
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException If the mutable indexed sequence is empty.

  367. def last: Short

    Permalink

    Selects the last element.

    Selects the last element.

    returns

    The last element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).last
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException If the mutable indexed sequence is empty.

  368. def last: T

    Permalink

    Selects the last element.

    Selects the last element.

    returns

    The last element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).last
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException If the mutable indexed sequence is empty.

  369. def last: Long

    Permalink

    Selects the last element.

    Selects the last element.

    returns

    The last element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).last
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException If the mutable indexed sequence is empty.

  370. def last: Int

    Permalink

    Selects the last element.

    Selects the last element.

    returns

    The last element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).last
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException If the mutable indexed sequence is empty.

  371. def last: Float

    Permalink

    Selects the last element.

    Selects the last element.

    returns

    The last element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).last
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException If the mutable indexed sequence is empty.

  372. def last: Double

    Permalink

    Selects the last element.

    Selects the last element.

    returns

    The last element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).last
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException If the mutable indexed sequence is empty.

  373. def last: Char

    Permalink

    Selects the last element.

    Selects the last element.

    returns

    The last element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).last
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException If the mutable indexed sequence is empty.

  374. def last: Byte

    Permalink

    Selects the last element.

    Selects the last element.

    returns

    The last element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).last
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException If the mutable indexed sequence is empty.

  375. def last: Boolean

    Permalink

    Selects the last element.

    Selects the last element.

    returns

    The last element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).last
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException If the mutable indexed sequence is empty.

  376. def last: T

    Permalink

    Selects the last element.

    Selects the last element.

    returns

    The last element of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).last
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    NoSuchElementException If the mutable indexed sequence is empty.

  377. def lastIndexOf(elem: T, end: Int): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array before or at a given end index.

    [use case]

    Finds index of last occurrence of some value in this array before or at a given end index.

    elem

    the element value to search for.

    end

    the end index.

    returns

    the index <= end of the last element of this array that is equal (as determined by ==) to elem, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).lastIndexOf(elem, end)
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B, end: Int): Int

  378. def lastIndexOf(elem: T): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array.

    [use case]

    Finds index of last occurrence of some value in this array.

    elem

    the element value to search for.

    returns

    the index of the last element of this array that is equal (as determined by ==) to elem, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).lastIndexOf(elem)
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B): Int

  379. def lastIndexOf(elem: T, end: Int): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array before or at a given end index.

    [use case]

    Finds index of last occurrence of some value in this array before or at a given end index.

    elem

    the element value to search for.

    end

    the end index.

    returns

    the index <= end of the last element of this array that is equal (as determined by ==) to elem, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).lastIndexOf(elem, end)
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B, end: Int): Int

  380. def lastIndexOf(elem: T): Int

    Permalink

    [use case] Finds index of last occurrence of some value in this array.

    [use case]

    Finds index of last occurrence of some value in this array.

    elem

    the element value to search for.

    returns

    the index of the last element of this array that is equal (as determined by ==) to elem, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).lastIndexOf(elem)
    Definition Classes
    GenSeqLike
    Full Signature

    def lastIndexOf[B >: A](elem: B): Int

  381. def lastIndexWhere(p: (T) ⇒ Boolean, end: Int): Int

    Permalink

    Finds index of last element satisfying some predicate before or at given end index.

    Finds index of last element satisfying some predicate before or at given end index.

    p

    the predicate used to test elements.

    returns

    the index <= end of the last element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).lastIndexWhere(p, end)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  382. def lastIndexWhere(p: (T) ⇒ Boolean): Int

    Permalink

    Finds index of last element satisfying some predicate.

    Finds index of last element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the last element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).lastIndexWhere(p)
    Definition Classes
    GenSeqLike
  383. def lastIndexWhere(p: (T) ⇒ Boolean, end: Int): Int

    Permalink

    Finds index of last element satisfying some predicate before or at given end index.

    Finds index of last element satisfying some predicate before or at given end index.

    p

    the predicate used to test elements.

    returns

    the index <= end of the last element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).lastIndexWhere(p, end)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  384. def lastIndexWhere(p: (T) ⇒ Boolean): Int

    Permalink

    Finds index of last element satisfying some predicate.

    Finds index of last element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the last element of this mutable indexed sequence that satisfies the predicate p, or -1, if none exists.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).lastIndexWhere(p)
    Definition Classes
    GenSeqLike
  385. def lastOption: Option[Unit]

    Permalink

    Optionally selects the last element.

    Optionally selects the last element.

    returns

    the last element of this mutable indexed sequence$ if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).lastOption
    Definition Classes
    TraversableLikeGenTraversableLike
  386. def lastOption: Option[Short]

    Permalink

    Optionally selects the last element.

    Optionally selects the last element.

    returns

    the last element of this mutable indexed sequence$ if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).lastOption
    Definition Classes
    TraversableLikeGenTraversableLike
  387. def lastOption: Option[T]

    Permalink

    Optionally selects the last element.

    Optionally selects the last element.

    returns

    the last element of this mutable indexed sequence$ if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).lastOption
    Definition Classes
    TraversableLikeGenTraversableLike
  388. def lastOption: Option[Long]

    Permalink

    Optionally selects the last element.

    Optionally selects the last element.

    returns

    the last element of this mutable indexed sequence$ if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).lastOption
    Definition Classes
    TraversableLikeGenTraversableLike
  389. def lastOption: Option[Int]

    Permalink

    Optionally selects the last element.

    Optionally selects the last element.

    returns

    the last element of this mutable indexed sequence$ if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).lastOption
    Definition Classes
    TraversableLikeGenTraversableLike
  390. def lastOption: Option[Float]

    Permalink

    Optionally selects the last element.

    Optionally selects the last element.

    returns

    the last element of this mutable indexed sequence$ if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).lastOption
    Definition Classes
    TraversableLikeGenTraversableLike
  391. def lastOption: Option[Double]

    Permalink

    Optionally selects the last element.

    Optionally selects the last element.

    returns

    the last element of this mutable indexed sequence$ if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).lastOption
    Definition Classes
    TraversableLikeGenTraversableLike
  392. def lastOption: Option[Char]

    Permalink

    Optionally selects the last element.

    Optionally selects the last element.

    returns

    the last element of this mutable indexed sequence$ if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).lastOption
    Definition Classes
    TraversableLikeGenTraversableLike
  393. def lastOption: Option[Byte]

    Permalink

    Optionally selects the last element.

    Optionally selects the last element.

    returns

    the last element of this mutable indexed sequence$ if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).lastOption
    Definition Classes
    TraversableLikeGenTraversableLike
  394. def lastOption: Option[Boolean]

    Permalink

    Optionally selects the last element.

    Optionally selects the last element.

    returns

    the last element of this mutable indexed sequence$ if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).lastOption
    Definition Classes
    TraversableLikeGenTraversableLike
  395. def lastOption: Option[T]

    Permalink

    Optionally selects the last element.

    Optionally selects the last element.

    returns

    the last element of this mutable indexed sequence$ if it is nonempty, None if it is empty.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).lastOption
    Definition Classes
    TraversableLikeGenTraversableLike
  396. def length: Int

    Permalink

    The length of the mutable indexed sequence.

    The length of the mutable indexed sequence.

    Note: xs.length and xs.size yield the same result.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    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: ofUnit).length
    Definition Classes
    ofUnitSeqLikeGenSeqLike
  397. def length: Int

    Permalink

    The length of the mutable indexed sequence.

    The length of the mutable indexed sequence.

    Note: xs.length and xs.size yield the same result.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    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: ofShort).length
    Definition Classes
    ofShortSeqLikeGenSeqLike
  398. def length: Int

    Permalink

    The length of the mutable indexed sequence.

    The length of the mutable indexed sequence.

    Note: xs.length and xs.size yield the same result.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    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: ofRef[T]).length
    Definition Classes
    ofRefSeqLikeGenSeqLike
  399. def length: Int

    Permalink

    The length of the mutable indexed sequence.

    The length of the mutable indexed sequence.

    Note: xs.length and xs.size yield the same result.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    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: ofLong).length
    Definition Classes
    ofLongSeqLikeGenSeqLike
  400. def length: Int

    Permalink

    The length of the mutable indexed sequence.

    The length of the mutable indexed sequence.

    Note: xs.length and xs.size yield the same result.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    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: ofInt).length
    Definition Classes
    ofIntSeqLikeGenSeqLike
  401. def length: Int

    Permalink

    The length of the mutable indexed sequence.

    The length of the mutable indexed sequence.

    Note: xs.length and xs.size yield the same result.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    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: ofFloat).length
    Definition Classes
    ofFloatSeqLikeGenSeqLike
  402. def length: Int

    Permalink

    The length of the mutable indexed sequence.

    The length of the mutable indexed sequence.

    Note: xs.length and xs.size yield the same result.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    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: ofDouble).length
    Definition Classes
    ofDoubleSeqLikeGenSeqLike
  403. def length: Int

    Permalink

    The length of the mutable indexed sequence.

    The length of the mutable indexed sequence.

    Note: xs.length and xs.size yield the same result.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= 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:
    (array: ofChar).length
    Definition Classes
    ofCharSeqLikeGenSeqLike
  404. def length: Int

    Permalink

    The length of the mutable indexed sequence.

    The length of the mutable indexed sequence.

    Note: xs.length and xs.size yield the same result.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    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: ofByte).length
    Definition Classes
    ofByteSeqLikeGenSeqLike
  405. def length: Int

    Permalink

    The length of the mutable indexed sequence.

    The length of the mutable indexed sequence.

    Note: xs.length and xs.size yield the same result.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    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: ofBoolean).length
    Definition Classes
    ofBooleanSeqLikeGenSeqLike
  406. def length: Int

    Permalink

    The length of the mutable indexed sequence.

    The length of the mutable indexed sequence.

    Note: xs.length and xs.size yield the same result.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    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[T]).length
    Definition Classes
    SeqLikeGenSeqLike
  407. def length(): Int

    Permalink
    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayCharSequence performed by method ArrayCharSequence in scala.Predef. This conversion will take place only if T is Char (T =:= 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:
    (array: ArrayCharSequence).length()
    Definition Classes
    ArrayCharSequence → CharSequence
  408. def lengthCompare(len: Int): Int

    Permalink

    Compares the length of this mutable indexed sequence to a test value.

    Compares the length of this mutable indexed sequence to a test value.

    len

    the test value that gets compared with the length.

    returns

    A value x where

    x <  0       if this.length <  len
    x == 0       if this.length == len
    x >  0       if this.length >  len

    The method as implemented here does not call length directly; its running time is O(length min len) instead of O(length). The method should be overwritten if computing length is cheap.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).lengthCompare(len)
    Definition Classes
    IndexedSeqOptimizedSeqLike
  409. def lengthCompare(len: Int): Int

    Permalink

    Compares the length of this mutable indexed sequence to a test value.

    Compares the length of this mutable indexed sequence to a test value.

    len

    the test value that gets compared with the length.

    returns

    A value x where

    x <  0       if this.length <  len
    x == 0       if this.length == len
    x >  0       if this.length >  len

    The method as implemented here does not call length directly; its running time is O(length min len) instead of O(length). The method should be overwritten if computing length is cheap.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).lengthCompare(len)
    Definition Classes
    IndexedSeqOptimizedSeqLike
  410. def lengthCompare(len: Int): Int

    Permalink

    Compares the length of this mutable indexed sequence to a test value.

    Compares the length of this mutable indexed sequence to a test value.

    len

    the test value that gets compared with the length.

    returns

    A value x where

    x <  0       if this.length <  len
    x == 0       if this.length == len
    x >  0       if this.length >  len

    The method as implemented here does not call length directly; its running time is O(length min len) instead of O(length). The method should be overwritten if computing length is cheap.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).lengthCompare(len)
    Definition Classes
    IndexedSeqOptimizedSeqLike
  411. def lengthCompare(len: Int): Int

    Permalink

    Compares the length of this mutable indexed sequence to a test value.

    Compares the length of this mutable indexed sequence to a test value.

    len

    the test value that gets compared with the length.

    returns

    A value x where

    x <  0       if this.length <  len
    x == 0       if this.length == len
    x >  0       if this.length >  len

    The method as implemented here does not call length directly; its running time is O(length min len) instead of O(length). The method should be overwritten if computing length is cheap.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).lengthCompare(len)
    Definition Classes
    IndexedSeqOptimizedSeqLike
  412. def lengthCompare(len: Int): Int

    Permalink

    Compares the length of this mutable indexed sequence to a test value.

    Compares the length of this mutable indexed sequence to a test value.

    len

    the test value that gets compared with the length.

    returns

    A value x where

    x <  0       if this.length <  len
    x == 0       if this.length == len
    x >  0       if this.length >  len

    The method as implemented here does not call length directly; its running time is O(length min len) instead of O(length). The method should be overwritten if computing length is cheap.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).lengthCompare(len)
    Definition Classes
    IndexedSeqOptimizedSeqLike
  413. def lengthCompare(len: Int): Int

    Permalink

    Compares the length of this mutable indexed sequence to a test value.

    Compares the length of this mutable indexed sequence to a test value.

    len

    the test value that gets compared with the length.

    returns

    A value x where

    x <  0       if this.length <  len
    x == 0       if this.length == len
    x >  0       if this.length >  len

    The method as implemented here does not call length directly; its running time is O(length min len) instead of O(length). The method should be overwritten if computing length is cheap.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).lengthCompare(len)
    Definition Classes
    IndexedSeqOptimizedSeqLike
  414. def lengthCompare(len: Int): Int

    Permalink

    Compares the length of this mutable indexed sequence to a test value.

    Compares the length of this mutable indexed sequence to a test value.

    len

    the test value that gets compared with the length.

    returns

    A value x where

    x <  0       if this.length <  len
    x == 0       if this.length == len
    x >  0       if this.length >  len

    The method as implemented here does not call length directly; its running time is O(length min len) instead of O(length). The method should be overwritten if computing length is cheap.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).lengthCompare(len)
    Definition Classes
    IndexedSeqOptimizedSeqLike
  415. def lengthCompare(len: Int): Int

    Permalink

    Compares the length of this mutable indexed sequence to a test value.

    Compares the length of this mutable indexed sequence to a test value.

    len

    the test value that gets compared with the length.

    returns

    A value x where

    x <  0       if this.length <  len
    x == 0       if this.length == len
    x >  0       if this.length >  len

    The method as implemented here does not call length directly; its running time is O(length min len) instead of O(length). The method should be overwritten if computing length is cheap.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).lengthCompare(len)
    Definition Classes
    IndexedSeqOptimizedSeqLike
  416. def lengthCompare(len: Int): Int

    Permalink

    Compares the length of this mutable indexed sequence to a test value.

    Compares the length of this mutable indexed sequence to a test value.

    len

    the test value that gets compared with the length.

    returns

    A value x where

    x <  0       if this.length <  len
    x == 0       if this.length == len
    x >  0       if this.length >  len

    The method as implemented here does not call length directly; its running time is O(length min len) instead of O(length). The method should be overwritten if computing length is cheap.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).lengthCompare(len)
    Definition Classes
    IndexedSeqOptimizedSeqLike
  417. def lengthCompare(len: Int): Int

    Permalink

    Compares the length of this mutable indexed sequence to a test value.

    Compares the length of this mutable indexed sequence to a test value.

    len

    the test value that gets compared with the length.

    returns

    A value x where

    x <  0       if this.length <  len
    x == 0       if this.length == len
    x >  0       if this.length >  len

    The method as implemented here does not call length directly; its running time is O(length min len) instead of O(length). The method should be overwritten if computing length is cheap.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).lengthCompare(len)
    Definition Classes
    IndexedSeqOptimizedSeqLike
  418. def lengthCompare(len: Int): Int

    Permalink

    Compares the length of this mutable indexed sequence to a test value.

    Compares the length of this mutable indexed sequence to a test value.

    len

    the test value that gets compared with the length.

    returns

    A value x where

    x <  0       if this.length <  len
    x == 0       if this.length == len
    x >  0       if this.length >  len

    The method as implemented here does not call length directly; its running time is O(length min len) instead of O(length). The method should be overwritten if computing length is cheap.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).lengthCompare(len)
    Definition Classes
    IndexedSeqOptimizedSeqLike
  419. def max: A

    Permalink

    [use case] Finds the largest element.

    [use case]

    Finds the largest element.

    returns

    the largest element of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).max
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def max[B >: A](implicit cmp: Ordering[B]): Unit

  420. def max: A

    Permalink

    [use case] Finds the largest element.

    [use case]

    Finds the largest element.

    returns

    the largest element of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).max
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def max[B >: A](implicit cmp: Ordering[B]): Short

  421. def max: A

    Permalink

    [use case] Finds the largest element.

    [use case]

    Finds the largest element.

    returns

    the largest element of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).max
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def max[B >: A](implicit cmp: Ordering[B]): T

  422. def max: A

    Permalink

    [use case] Finds the largest element.

    [use case]

    Finds the largest element.

    returns

    the largest element of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).max
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def max[B >: A](implicit cmp: Ordering[B]): Long

  423. def max: A

    Permalink

    [use case] Finds the largest element.

    [use case]

    Finds the largest element.

    returns

    the largest element of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).max
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def max[B >: A](implicit cmp: Ordering[B]): Int

  424. def max: A

    Permalink

    [use case] Finds the largest element.

    [use case]

    Finds the largest element.

    returns

    the largest element of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).max
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def max[B >: A](implicit cmp: Ordering[B]): Float

  425. def max: A

    Permalink

    [use case] Finds the largest element.

    [use case]

    Finds the largest element.

    returns

    the largest element of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).max
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def max[B >: A](implicit cmp: Ordering[B]): Double

  426. def max: A

    Permalink

    [use case] Finds the largest element.

    [use case]

    Finds the largest element.

    returns

    the largest element of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).max
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def max[B >: A](implicit cmp: Ordering[B]): Char

  427. def max: A

    Permalink

    [use case] Finds the largest element.

    [use case]

    Finds the largest element.

    returns

    the largest element of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).max
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def max[B >: A](implicit cmp: Ordering[B]): Byte

  428. def max: A

    Permalink

    [use case] Finds the largest element.

    [use case]

    Finds the largest element.

    returns

    the largest element of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).max
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def max[B >: A](implicit cmp: Ordering[B]): Boolean

  429. def max: A

    Permalink

    [use case] Finds the largest element.

    [use case]

    Finds the largest element.

    returns

    the largest element of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).max
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def max[B >: A](implicit cmp: Ordering[B]): T

  430. def min: A

    Permalink

    [use case] Finds the smallest element.

    [use case]

    Finds the smallest element.

    returns

    the smallest element of this array

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).min
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def min[B >: A](implicit cmp: Ordering[B]): Unit

  431. def min: A

    Permalink

    [use case] Finds the smallest element.

    [use case]

    Finds the smallest element.

    returns

    the smallest element of this array

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).min
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def min[B >: A](implicit cmp: Ordering[B]): Short

  432. def min: A

    Permalink

    [use case] Finds the smallest element.

    [use case]

    Finds the smallest element.

    returns

    the smallest element of this array

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).min
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def min[B >: A](implicit cmp: Ordering[B]): T

  433. def min: A

    Permalink

    [use case] Finds the smallest element.

    [use case]

    Finds the smallest element.

    returns

    the smallest element of this array

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).min
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def min[B >: A](implicit cmp: Ordering[B]): Long

  434. def min: A

    Permalink

    [use case] Finds the smallest element.

    [use case]

    Finds the smallest element.

    returns

    the smallest element of this array

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).min
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def min[B >: A](implicit cmp: Ordering[B]): Int

  435. def min: A

    Permalink

    [use case] Finds the smallest element.

    [use case]

    Finds the smallest element.

    returns

    the smallest element of this array

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).min
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def min[B >: A](implicit cmp: Ordering[B]): Float

  436. def min: A

    Permalink

    [use case] Finds the smallest element.

    [use case]

    Finds the smallest element.

    returns

    the smallest element of this array

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).min
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def min[B >: A](implicit cmp: Ordering[B]): Double

  437. def min: A

    Permalink

    [use case] Finds the smallest element.

    [use case]

    Finds the smallest element.

    returns

    the smallest element of this array

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).min
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def min[B >: A](implicit cmp: Ordering[B]): Char

  438. def min: A

    Permalink

    [use case] Finds the smallest element.

    [use case]

    Finds the smallest element.

    returns

    the smallest element of this array

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).min
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def min[B >: A](implicit cmp: Ordering[B]): Byte

  439. def min: A

    Permalink

    [use case] Finds the smallest element.

    [use case]

    Finds the smallest element.

    returns

    the smallest element of this array

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).min
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def min[B >: A](implicit cmp: Ordering[B]): Boolean

  440. def min: A

    Permalink

    [use case] Finds the smallest element.

    [use case]

    Finds the smallest element.

    returns

    the smallest element of this array

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).min
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def min[B >: A](implicit cmp: Ordering[B]): T

  441. def mkString: String

    Permalink

    Displays all elements of this mutable indexed sequence in a string.

    Displays all elements of this mutable indexed sequence in a string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence follow each other without any separator string.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).mkString
    Definition Classes
    TraversableOnceGenTraversableOnce
  442. def mkString(sep: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    sep

    the separator string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).mkString(sep)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("|") = "1|2|3"

  443. def mkString(start: String, sep: String, end: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    a string representation of this mutable indexed sequence. The resulting string begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).mkString(start, sep, end)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("(", "; ", ")") = "(1; 2; 3)"

  444. def mkString: String

    Permalink

    Displays all elements of this mutable indexed sequence in a string.

    Displays all elements of this mutable indexed sequence in a string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence follow each other without any separator string.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).mkString
    Definition Classes
    TraversableOnceGenTraversableOnce
  445. def mkString(sep: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    sep

    the separator string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).mkString(sep)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("|") = "1|2|3"

  446. def mkString(start: String, sep: String, end: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    a string representation of this mutable indexed sequence. The resulting string begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).mkString(start, sep, end)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("(", "; ", ")") = "(1; 2; 3)"

  447. def mkString: String

    Permalink

    Displays all elements of this mutable indexed sequence in a string.

    Displays all elements of this mutable indexed sequence in a string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence follow each other without any separator string.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).mkString
    Definition Classes
    TraversableOnceGenTraversableOnce
  448. def mkString(sep: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    sep

    the separator string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).mkString(sep)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("|") = "1|2|3"

  449. def mkString(start: String, sep: String, end: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    a string representation of this mutable indexed sequence. The resulting string begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).mkString(start, sep, end)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("(", "; ", ")") = "(1; 2; 3)"

  450. def mkString: String

    Permalink

    Displays all elements of this mutable indexed sequence in a string.

    Displays all elements of this mutable indexed sequence in a string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence follow each other without any separator string.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).mkString
    Definition Classes
    TraversableOnceGenTraversableOnce
  451. def mkString(sep: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    sep

    the separator string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).mkString(sep)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("|") = "1|2|3"

  452. def mkString(start: String, sep: String, end: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    a string representation of this mutable indexed sequence. The resulting string begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).mkString(start, sep, end)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("(", "; ", ")") = "(1; 2; 3)"

  453. def mkString: String

    Permalink

    Displays all elements of this mutable indexed sequence in a string.

    Displays all elements of this mutable indexed sequence in a string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence follow each other without any separator string.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).mkString
    Definition Classes
    TraversableOnceGenTraversableOnce
  454. def mkString(sep: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    sep

    the separator string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).mkString(sep)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("|") = "1|2|3"

  455. def mkString(start: String, sep: String, end: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    a string representation of this mutable indexed sequence. The resulting string begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).mkString(start, sep, end)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("(", "; ", ")") = "(1; 2; 3)"

  456. def mkString: String

    Permalink

    Displays all elements of this mutable indexed sequence in a string.

    Displays all elements of this mutable indexed sequence in a string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence follow each other without any separator string.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).mkString
    Definition Classes
    TraversableOnceGenTraversableOnce
  457. def mkString(sep: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    sep

    the separator string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).mkString(sep)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("|") = "1|2|3"

  458. def mkString(start: String, sep: String, end: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    a string representation of this mutable indexed sequence. The resulting string begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).mkString(start, sep, end)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("(", "; ", ")") = "(1; 2; 3)"

  459. def mkString: String

    Permalink

    Displays all elements of this mutable indexed sequence in a string.

    Displays all elements of this mutable indexed sequence in a string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence follow each other without any separator string.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).mkString
    Definition Classes
    TraversableOnceGenTraversableOnce
  460. def mkString(sep: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    sep

    the separator string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).mkString(sep)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("|") = "1|2|3"

  461. def mkString(start: String, sep: String, end: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    a string representation of this mutable indexed sequence. The resulting string begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).mkString(start, sep, end)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("(", "; ", ")") = "(1; 2; 3)"

  462. def mkString: String

    Permalink

    Displays all elements of this mutable indexed sequence in a string.

    Displays all elements of this mutable indexed sequence in a string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence follow each other without any separator string.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).mkString
    Definition Classes
    TraversableOnceGenTraversableOnce
  463. def mkString(sep: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    sep

    the separator string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).mkString(sep)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("|") = "1|2|3"

  464. def mkString(start: String, sep: String, end: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    a string representation of this mutable indexed sequence. The resulting string begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).mkString(start, sep, end)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("(", "; ", ")") = "(1; 2; 3)"

  465. def mkString: String

    Permalink

    Displays all elements of this mutable indexed sequence in a string.

    Displays all elements of this mutable indexed sequence in a string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence follow each other without any separator string.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).mkString
    Definition Classes
    TraversableOnceGenTraversableOnce
  466. def mkString(sep: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    sep

    the separator string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).mkString(sep)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("|") = "1|2|3"

  467. def mkString(start: String, sep: String, end: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    a string representation of this mutable indexed sequence. The resulting string begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).mkString(start, sep, end)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("(", "; ", ")") = "(1; 2; 3)"

  468. def mkString: String

    Permalink

    Displays all elements of this mutable indexed sequence in a string.

    Displays all elements of this mutable indexed sequence in a string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence follow each other without any separator string.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).mkString
    Definition Classes
    TraversableOnceGenTraversableOnce
  469. def mkString(sep: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    sep

    the separator string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).mkString(sep)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("|") = "1|2|3"

  470. def mkString(start: String, sep: String, end: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    a string representation of this mutable indexed sequence. The resulting string begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).mkString(start, sep, end)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("(", "; ", ")") = "(1; 2; 3)"

  471. def mkString: String

    Permalink

    Displays all elements of this mutable indexed sequence in a string.

    Displays all elements of this mutable indexed sequence in a string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence follow each other without any separator string.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).mkString
    Definition Classes
    TraversableOnceGenTraversableOnce
  472. def mkString(sep: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    Displays all elements of this mutable indexed sequence in a string using a separator string.

    sep

    the separator string.

    returns

    a string representation of this mutable indexed sequence. In the resulting string the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).mkString(sep)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("|") = "1|2|3"

  473. def mkString(start: String, sep: String, end: String): String

    Permalink

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    Displays all elements of this mutable indexed sequence in a string using start, end, and separator strings.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    a string representation of this mutable indexed sequence. The resulting string begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this mutable indexed sequence are separated by the string sep.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).mkString(start, sep, end)
    Definition Classes
    TraversableOnceGenTraversableOnce
    Example:
    1. List(1, 2, 3).mkString("(", "; ", ")") = "(1; 2; 3)"

  474. def nonEmpty: Boolean

    Permalink

    Tests whether the mutable indexed sequence is not empty.

    Tests whether the mutable indexed sequence is not empty.

    returns

    true if the mutable indexed sequence contains at least one element, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).nonEmpty
    Definition Classes
    TraversableOnceGenTraversableOnce
  475. def nonEmpty: Boolean

    Permalink

    Tests whether the mutable indexed sequence is not empty.

    Tests whether the mutable indexed sequence is not empty.

    returns

    true if the mutable indexed sequence contains at least one element, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).nonEmpty
    Definition Classes
    TraversableOnceGenTraversableOnce
  476. def nonEmpty: Boolean

    Permalink

    Tests whether the mutable indexed sequence is not empty.

    Tests whether the mutable indexed sequence is not empty.

    returns

    true if the mutable indexed sequence contains at least one element, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).nonEmpty
    Definition Classes
    TraversableOnceGenTraversableOnce
  477. def nonEmpty: Boolean

    Permalink

    Tests whether the mutable indexed sequence is not empty.

    Tests whether the mutable indexed sequence is not empty.

    returns

    true if the mutable indexed sequence contains at least one element, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).nonEmpty
    Definition Classes
    TraversableOnceGenTraversableOnce
  478. def nonEmpty: Boolean

    Permalink

    Tests whether the mutable indexed sequence is not empty.

    Tests whether the mutable indexed sequence is not empty.

    returns

    true if the mutable indexed sequence contains at least one element, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).nonEmpty
    Definition Classes
    TraversableOnceGenTraversableOnce
  479. def nonEmpty: Boolean

    Permalink

    Tests whether the mutable indexed sequence is not empty.

    Tests whether the mutable indexed sequence is not empty.

    returns

    true if the mutable indexed sequence contains at least one element, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).nonEmpty
    Definition Classes
    TraversableOnceGenTraversableOnce
  480. def nonEmpty: Boolean

    Permalink

    Tests whether the mutable indexed sequence is not empty.

    Tests whether the mutable indexed sequence is not empty.

    returns

    true if the mutable indexed sequence contains at least one element, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).nonEmpty
    Definition Classes
    TraversableOnceGenTraversableOnce
  481. def nonEmpty: Boolean

    Permalink

    Tests whether the mutable indexed sequence is not empty.

    Tests whether the mutable indexed sequence is not empty.

    returns

    true if the mutable indexed sequence contains at least one element, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).nonEmpty
    Definition Classes
    TraversableOnceGenTraversableOnce
  482. def nonEmpty: Boolean

    Permalink

    Tests whether the mutable indexed sequence is not empty.

    Tests whether the mutable indexed sequence is not empty.

    returns

    true if the mutable indexed sequence contains at least one element, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).nonEmpty
    Definition Classes
    TraversableOnceGenTraversableOnce
  483. def nonEmpty: Boolean

    Permalink

    Tests whether the mutable indexed sequence is not empty.

    Tests whether the mutable indexed sequence is not empty.

    returns

    true if the mutable indexed sequence contains at least one element, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).nonEmpty
    Definition Classes
    TraversableOnceGenTraversableOnce
  484. def nonEmpty: Boolean

    Permalink

    Tests whether the mutable indexed sequence is not empty.

    Tests whether the mutable indexed sequence is not empty.

    returns

    true if the mutable indexed sequence contains at least one element, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).nonEmpty
    Definition Classes
    TraversableOnceGenTraversableOnce
  485. def padTo(len: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element value appended until a given target length is reached.

    [use case]

    A copy of this array with an element value appended until a given target length is reached.

    len

    the target length

    elem

    the padding value

    returns

    a new array consisting of all elements of this array followed by the minimal number of occurrences of elem so that the resulting array has a length of at least len.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).padTo(len, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def padTo[B >: A, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Array[Unit], B, That]): That

  486. def padTo(len: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element value appended until a given target length is reached.

    [use case]

    A copy of this array with an element value appended until a given target length is reached.

    len

    the target length

    elem

    the padding value

    returns

    a new array consisting of all elements of this array followed by the minimal number of occurrences of elem so that the resulting array has a length of at least len.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).padTo(len, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def padTo[B >: A, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Array[Short], B, That]): That

  487. def padTo(len: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element value appended until a given target length is reached.

    [use case]

    A copy of this array with an element value appended until a given target length is reached.

    len

    the target length

    elem

    the padding value

    returns

    a new array consisting of all elements of this array followed by the minimal number of occurrences of elem so that the resulting array has a length of at least len.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).padTo(len, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def padTo[B >: A, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Array[T], B, That]): That

  488. def padTo(len: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element value appended until a given target length is reached.

    [use case]

    A copy of this array with an element value appended until a given target length is reached.

    len

    the target length

    elem

    the padding value

    returns

    a new array consisting of all elements of this array followed by the minimal number of occurrences of elem so that the resulting array has a length of at least len.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).padTo(len, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def padTo[B >: A, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Array[Long], B, That]): That

  489. def padTo(len: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element value appended until a given target length is reached.

    [use case]

    A copy of this array with an element value appended until a given target length is reached.

    len

    the target length

    elem

    the padding value

    returns

    a new array consisting of all elements of this array followed by the minimal number of occurrences of elem so that the resulting array has a length of at least len.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).padTo(len, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def padTo[B >: A, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Array[Int], B, That]): That

  490. def padTo(len: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element value appended until a given target length is reached.

    [use case]

    A copy of this array with an element value appended until a given target length is reached.

    len

    the target length

    elem

    the padding value

    returns

    a new array consisting of all elements of this array followed by the minimal number of occurrences of elem so that the resulting array has a length of at least len.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).padTo(len, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def padTo[B >: A, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Array[Float], B, That]): That

  491. def padTo(len: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element value appended until a given target length is reached.

    [use case]

    A copy of this array with an element value appended until a given target length is reached.

    len

    the target length

    elem

    the padding value

    returns

    a new array consisting of all elements of this array followed by the minimal number of occurrences of elem so that the resulting array has a length of at least len.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).padTo(len, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def padTo[B >: A, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Array[Double], B, That]): That

  492. def padTo(len: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element value appended until a given target length is reached.

    [use case]

    A copy of this array with an element value appended until a given target length is reached.

    len

    the target length

    elem

    the padding value

    returns

    a new array consisting of all elements of this array followed by the minimal number of occurrences of elem so that the resulting array has a length of at least len.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).padTo(len, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def padTo[B >: A, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Array[Char], B, That]): That

  493. def padTo(len: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element value appended until a given target length is reached.

    [use case]

    A copy of this array with an element value appended until a given target length is reached.

    len

    the target length

    elem

    the padding value

    returns

    a new array consisting of all elements of this array followed by the minimal number of occurrences of elem so that the resulting array has a length of at least len.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).padTo(len, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def padTo[B >: A, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Array[Byte], B, That]): That

  494. def padTo(len: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element value appended until a given target length is reached.

    [use case]

    A copy of this array with an element value appended until a given target length is reached.

    len

    the target length

    elem

    the padding value

    returns

    a new array consisting of all elements of this array followed by the minimal number of occurrences of elem so that the resulting array has a length of at least len.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).padTo(len, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def padTo[B >: A, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Array[Boolean], B, That]): That

  495. def padTo(len: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with an element value appended until a given target length is reached.

    [use case]

    A copy of this array with an element value appended until a given target length is reached.

    len

    the target length

    elem

    the padding value

    returns

    a new array consisting of all elements of this array followed by the minimal number of occurrences of elem so that the resulting array has a length of at least len.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).padTo(len, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def padTo[B >: A, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Array[T], B, That]): That

  496. def par: ParArray[Unit]

    Permalink

    Returns a parallel implementation of this collection.

    Returns a parallel implementation of this collection.

    For most collection types, this method creates a new parallel collection by copying all the elements. For these collection, par takes linear time. Mutable collections in this category do not produce a mutable parallel collection that has the same underlying dataset, so changes in one collection will not be reflected in the other one.

    Specific collections (e.g. ParArray or mutable.ParHashMap) override this default behaviour by creating a parallel collection which shares the same underlying dataset. For these collections, par takes constant or sublinear time.

    All parallel collections return a reference to themselves.

    returns

    a parallel implementation of this collection

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).par
    Definition Classes
    ArrayOpsCustomParallelizableParallelizable
  497. def par: ParArray[Short]

    Permalink

    Returns a parallel implementation of this collection.

    Returns a parallel implementation of this collection.

    For most collection types, this method creates a new parallel collection by copying all the elements. For these collection, par takes linear time. Mutable collections in this category do not produce a mutable parallel collection that has the same underlying dataset, so changes in one collection will not be reflected in the other one.

    Specific collections (e.g. ParArray or mutable.ParHashMap) override this default behaviour by creating a parallel collection which shares the same underlying dataset. For these collections, par takes constant or sublinear time.

    All parallel collections return a reference to themselves.

    returns

    a parallel implementation of this collection

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).par
    Definition Classes
    ArrayOpsCustomParallelizableParallelizable
  498. def par: ParArray[T]

    Permalink

    Returns a parallel implementation of this collection.

    Returns a parallel implementation of this collection.

    For most collection types, this method creates a new parallel collection by copying all the elements. For these collection, par takes linear time. Mutable collections in this category do not produce a mutable parallel collection that has the same underlying dataset, so changes in one collection will not be reflected in the other one.

    Specific collections (e.g. ParArray or mutable.ParHashMap) override this default behaviour by creating a parallel collection which shares the same underlying dataset. For these collections, par takes constant or sublinear time.

    All parallel collections return a reference to themselves.

    returns

    a parallel implementation of this collection

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).par
    Definition Classes
    ArrayOpsCustomParallelizableParallelizable
  499. def par: ParArray[Long]

    Permalink

    Returns a parallel implementation of this collection.

    Returns a parallel implementation of this collection.

    For most collection types, this method creates a new parallel collection by copying all the elements. For these collection, par takes linear time. Mutable collections in this category do not produce a mutable parallel collection that has the same underlying dataset, so changes in one collection will not be reflected in the other one.

    Specific collections (e.g. ParArray or mutable.ParHashMap) override this default behaviour by creating a parallel collection which shares the same underlying dataset. For these collections, par takes constant or sublinear time.

    All parallel collections return a reference to themselves.

    returns

    a parallel implementation of this collection

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).par
    Definition Classes
    ArrayOpsCustomParallelizableParallelizable
  500. def par: ParArray[Int]

    Permalink

    Returns a parallel implementation of this collection.

    Returns a parallel implementation of this collection.

    For most collection types, this method creates a new parallel collection by copying all the elements. For these collection, par takes linear time. Mutable collections in this category do not produce a mutable parallel collection that has the same underlying dataset, so changes in one collection will not be reflected in the other one.

    Specific collections (e.g. ParArray or mutable.ParHashMap) override this default behaviour by creating a parallel collection which shares the same underlying dataset. For these collections, par takes constant or sublinear time.

    All parallel collections return a reference to themselves.

    returns

    a parallel implementation of this collection

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).par
    Definition Classes
    ArrayOpsCustomParallelizableParallelizable
  501. def par: ParArray[Float]

    Permalink

    Returns a parallel implementation of this collection.

    Returns a parallel implementation of this collection.

    For most collection types, this method creates a new parallel collection by copying all the elements. For these collection, par takes linear time. Mutable collections in this category do not produce a mutable parallel collection that has the same underlying dataset, so changes in one collection will not be reflected in the other one.

    Specific collections (e.g. ParArray or mutable.ParHashMap) override this default behaviour by creating a parallel collection which shares the same underlying dataset. For these collections, par takes constant or sublinear time.

    All parallel collections return a reference to themselves.

    returns

    a parallel implementation of this collection

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).par
    Definition Classes
    ArrayOpsCustomParallelizableParallelizable
  502. def par: ParArray[Double]

    Permalink

    Returns a parallel implementation of this collection.

    Returns a parallel implementation of this collection.

    For most collection types, this method creates a new parallel collection by copying all the elements. For these collection, par takes linear time. Mutable collections in this category do not produce a mutable parallel collection that has the same underlying dataset, so changes in one collection will not be reflected in the other one.

    Specific collections (e.g. ParArray or mutable.ParHashMap) override this default behaviour by creating a parallel collection which shares the same underlying dataset. For these collections, par takes constant or sublinear time.

    All parallel collections return a reference to themselves.

    returns

    a parallel implementation of this collection

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).par
    Definition Classes
    ArrayOpsCustomParallelizableParallelizable
  503. def par: ParArray[Char]

    Permalink

    Returns a parallel implementation of this collection.

    Returns a parallel implementation of this collection.

    For most collection types, this method creates a new parallel collection by copying all the elements. For these collection, par takes linear time. Mutable collections in this category do not produce a mutable parallel collection that has the same underlying dataset, so changes in one collection will not be reflected in the other one.

    Specific collections (e.g. ParArray or mutable.ParHashMap) override this default behaviour by creating a parallel collection which shares the same underlying dataset. For these collections, par takes constant or sublinear time.

    All parallel collections return a reference to themselves.

    returns

    a parallel implementation of this collection

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).par
    Definition Classes
    ArrayOpsCustomParallelizableParallelizable
  504. def par: ParArray[Byte]

    Permalink

    Returns a parallel implementation of this collection.

    Returns a parallel implementation of this collection.

    For most collection types, this method creates a new parallel collection by copying all the elements. For these collection, par takes linear time. Mutable collections in this category do not produce a mutable parallel collection that has the same underlying dataset, so changes in one collection will not be reflected in the other one.

    Specific collections (e.g. ParArray or mutable.ParHashMap) override this default behaviour by creating a parallel collection which shares the same underlying dataset. For these collections, par takes constant or sublinear time.

    All parallel collections return a reference to themselves.

    returns

    a parallel implementation of this collection

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).par
    Definition Classes
    ArrayOpsCustomParallelizableParallelizable
  505. def par: ParArray[Boolean]

    Permalink

    Returns a parallel implementation of this collection.

    Returns a parallel implementation of this collection.

    For most collection types, this method creates a new parallel collection by copying all the elements. For these collection, par takes linear time. Mutable collections in this category do not produce a mutable parallel collection that has the same underlying dataset, so changes in one collection will not be reflected in the other one.

    Specific collections (e.g. ParArray or mutable.ParHashMap) override this default behaviour by creating a parallel collection which shares the same underlying dataset. For these collections, par takes constant or sublinear time.

    All parallel collections return a reference to themselves.

    returns

    a parallel implementation of this collection

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).par
    Definition Classes
    ArrayOpsCustomParallelizableParallelizable
  506. def par: ParArray[T]

    Permalink

    Returns a parallel implementation of this collection.

    Returns a parallel implementation of this collection.

    For most collection types, this method creates a new parallel collection by copying all the elements. For these collection, par takes linear time. Mutable collections in this category do not produce a mutable parallel collection that has the same underlying dataset, so changes in one collection will not be reflected in the other one.

    Specific collections (e.g. ParArray or mutable.ParHashMap) override this default behaviour by creating a parallel collection which shares the same underlying dataset. For these collections, par takes constant or sublinear time.

    All parallel collections return a reference to themselves.

    returns

    a parallel implementation of this collection

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).par
    Definition Classes
    ArrayOpsCustomParallelizableParallelizable
  507. def partition(p: (T) ⇒ Boolean): (Array[T], Array[T])

    Permalink

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    p

    the predicate on which to partition.

    returns

    a pair of mutable indexed sequences: the first mutable indexed sequence consists of all elements that satisfy the predicate p and the second mutable indexed sequence consists of all elements that don't. The relative order of the elements in the resulting mutable indexed sequences is the same as in the original mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).partition(p)
    Definition Classes
    TraversableLikeGenTraversableLike
  508. def partition(p: (T) ⇒ Boolean): (Array[T], Array[T])

    Permalink

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    Partitions this mutable indexed sequence in two mutable indexed sequences according to a predicate.

    p

    the predicate on which to partition.

    returns

    a pair of mutable indexed sequences: the first mutable indexed sequence consists of all elements that satisfy the predicate p and the second mutable indexed sequence consists of all elements that don't. The relative order of the elements in the resulting mutable indexed sequences is the same as in the original mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).partition(p)
    Definition Classes
    TraversableLikeGenTraversableLike
  509. def patch(from: Int, that: GenSeq[A], replaced: Int): Array[A]

    Permalink

    [use case] Produces a new array where a slice of elements in this array is replaced by another sequence.

    [use case]

    Produces a new array where a slice of elements in this array is replaced by another sequence.

    from

    the index of the first replaced element

    replaced

    the number of elements to drop in the original array

    returns

    a new array consisting of all elements of this array except that replaced elements starting from from are replaced by patch.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).patch(from, that, replaced)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def patch[B >: A, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Array[Unit], B, That]): That

  510. def patch(from: Int, that: GenSeq[A], replaced: Int): Array[A]

    Permalink

    [use case] Produces a new array where a slice of elements in this array is replaced by another sequence.

    [use case]

    Produces a new array where a slice of elements in this array is replaced by another sequence.

    from

    the index of the first replaced element

    replaced

    the number of elements to drop in the original array

    returns

    a new array consisting of all elements of this array except that replaced elements starting from from are replaced by patch.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).patch(from, that, replaced)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def patch[B >: A, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Array[Short], B, That]): That

  511. def patch(from: Int, that: GenSeq[A], replaced: Int): Array[A]

    Permalink

    [use case] Produces a new array where a slice of elements in this array is replaced by another sequence.

    [use case]

    Produces a new array where a slice of elements in this array is replaced by another sequence.

    from

    the index of the first replaced element

    replaced

    the number of elements to drop in the original array

    returns

    a new array consisting of all elements of this array except that replaced elements starting from from are replaced by patch.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).patch(from, that, replaced)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def patch[B >: A, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Array[T], B, That]): That

  512. def patch(from: Int, that: GenSeq[A], replaced: Int): Array[A]

    Permalink

    [use case] Produces a new array where a slice of elements in this array is replaced by another sequence.

    [use case]

    Produces a new array where a slice of elements in this array is replaced by another sequence.

    from

    the index of the first replaced element

    replaced

    the number of elements to drop in the original array

    returns

    a new array consisting of all elements of this array except that replaced elements starting from from are replaced by patch.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).patch(from, that, replaced)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def patch[B >: A, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Array[Long], B, That]): That

  513. def patch(from: Int, that: GenSeq[A], replaced: Int): Array[A]

    Permalink

    [use case] Produces a new array where a slice of elements in this array is replaced by another sequence.

    [use case]

    Produces a new array where a slice of elements in this array is replaced by another sequence.

    from

    the index of the first replaced element

    replaced

    the number of elements to drop in the original array

    returns

    a new array consisting of all elements of this array except that replaced elements starting from from are replaced by patch.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).patch(from, that, replaced)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def patch[B >: A, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Array[Int], B, That]): That

  514. def patch(from: Int, that: GenSeq[A], replaced: Int): Array[A]

    Permalink

    [use case] Produces a new array where a slice of elements in this array is replaced by another sequence.

    [use case]

    Produces a new array where a slice of elements in this array is replaced by another sequence.

    from

    the index of the first replaced element

    replaced

    the number of elements to drop in the original array

    returns

    a new array consisting of all elements of this array except that replaced elements starting from from are replaced by patch.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).patch(from, that, replaced)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def patch[B >: A, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Array[Float], B, That]): That

  515. def patch(from: Int, that: GenSeq[A], replaced: Int): Array[A]

    Permalink

    [use case] Produces a new array where a slice of elements in this array is replaced by another sequence.

    [use case]

    Produces a new array where a slice of elements in this array is replaced by another sequence.

    from

    the index of the first replaced element

    replaced

    the number of elements to drop in the original array

    returns

    a new array consisting of all elements of this array except that replaced elements starting from from are replaced by patch.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).patch(from, that, replaced)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def patch[B >: A, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Array[Double], B, That]): That

  516. def patch(from: Int, that: GenSeq[A], replaced: Int): Array[A]

    Permalink

    [use case] Produces a new array where a slice of elements in this array is replaced by another sequence.

    [use case]

    Produces a new array where a slice of elements in this array is replaced by another sequence.

    from

    the index of the first replaced element

    replaced

    the number of elements to drop in the original array

    returns

    a new array consisting of all elements of this array except that replaced elements starting from from are replaced by patch.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).patch(from, that, replaced)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def patch[B >: A, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Array[Char], B, That]): That

  517. def patch(from: Int, that: GenSeq[A], replaced: Int): Array[A]

    Permalink

    [use case] Produces a new array where a slice of elements in this array is replaced by another sequence.

    [use case]

    Produces a new array where a slice of elements in this array is replaced by another sequence.

    from

    the index of the first replaced element

    replaced

    the number of elements to drop in the original array

    returns

    a new array consisting of all elements of this array except that replaced elements starting from from are replaced by patch.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).patch(from, that, replaced)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def patch[B >: A, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Array[Byte], B, That]): That

  518. def patch(from: Int, that: GenSeq[A], replaced: Int): Array[A]

    Permalink

    [use case] Produces a new array where a slice of elements in this array is replaced by another sequence.

    [use case]

    Produces a new array where a slice of elements in this array is replaced by another sequence.

    from

    the index of the first replaced element

    replaced

    the number of elements to drop in the original array

    returns

    a new array consisting of all elements of this array except that replaced elements starting from from are replaced by patch.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).patch(from, that, replaced)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def patch[B >: A, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Array[Boolean], B, That]): That

  519. def patch(from: Int, that: GenSeq[A], replaced: Int): Array[A]

    Permalink

    [use case] Produces a new array where a slice of elements in this array is replaced by another sequence.

    [use case]

    Produces a new array where a slice of elements in this array is replaced by another sequence.

    from

    the index of the first replaced element

    replaced

    the number of elements to drop in the original array

    returns

    a new array consisting of all elements of this array except that replaced elements starting from from are replaced by patch.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).patch(from, that, replaced)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def patch[B >: A, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Array[T], B, That]): That

  520. def permutations: collection.Iterator[Array[Unit]]

    Permalink

    Iterates over distinct permutations.

    Iterates over distinct permutations.

    returns

    An Iterator which traverses the distinct permutations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).permutations
    Definition Classes
    SeqLike
    Example:
    1. "abb".permutations = Iterator(abb, bab, bba)

  521. def permutations: collection.Iterator[Array[Short]]

    Permalink

    Iterates over distinct permutations.

    Iterates over distinct permutations.

    returns

    An Iterator which traverses the distinct permutations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).permutations
    Definition Classes
    SeqLike
    Example:
    1. "abb".permutations = Iterator(abb, bab, bba)

  522. def permutations: collection.Iterator[Array[T]]

    Permalink

    Iterates over distinct permutations.

    Iterates over distinct permutations.

    returns

    An Iterator which traverses the distinct permutations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).permutations
    Definition Classes
    SeqLike
    Example:
    1. "abb".permutations = Iterator(abb, bab, bba)

  523. def permutations: collection.Iterator[Array[Long]]

    Permalink

    Iterates over distinct permutations.

    Iterates over distinct permutations.

    returns

    An Iterator which traverses the distinct permutations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).permutations
    Definition Classes
    SeqLike
    Example:
    1. "abb".permutations = Iterator(abb, bab, bba)

  524. def permutations: collection.Iterator[Array[Int]]

    Permalink

    Iterates over distinct permutations.

    Iterates over distinct permutations.

    returns

    An Iterator which traverses the distinct permutations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).permutations
    Definition Classes
    SeqLike
    Example:
    1. "abb".permutations = Iterator(abb, bab, bba)

  525. def permutations: collection.Iterator[Array[Float]]

    Permalink

    Iterates over distinct permutations.

    Iterates over distinct permutations.

    returns

    An Iterator which traverses the distinct permutations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).permutations
    Definition Classes
    SeqLike
    Example:
    1. "abb".permutations = Iterator(abb, bab, bba)

  526. def permutations: collection.Iterator[Array[Double]]

    Permalink

    Iterates over distinct permutations.

    Iterates over distinct permutations.

    returns

    An Iterator which traverses the distinct permutations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).permutations
    Definition Classes
    SeqLike
    Example:
    1. "abb".permutations = Iterator(abb, bab, bba)

  527. def permutations: collection.Iterator[Array[Char]]

    Permalink

    Iterates over distinct permutations.

    Iterates over distinct permutations.

    returns

    An Iterator which traverses the distinct permutations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).permutations
    Definition Classes
    SeqLike
    Example:
    1. "abb".permutations = Iterator(abb, bab, bba)

  528. def permutations: collection.Iterator[Array[Byte]]

    Permalink

    Iterates over distinct permutations.

    Iterates over distinct permutations.

    returns

    An Iterator which traverses the distinct permutations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).permutations
    Definition Classes
    SeqLike
    Example:
    1. "abb".permutations = Iterator(abb, bab, bba)

  529. def permutations: collection.Iterator[Array[Boolean]]

    Permalink

    Iterates over distinct permutations.

    Iterates over distinct permutations.

    returns

    An Iterator which traverses the distinct permutations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).permutations
    Definition Classes
    SeqLike
    Example:
    1. "abb".permutations = Iterator(abb, bab, bba)

  530. def permutations: collection.Iterator[Array[T]]

    Permalink

    Iterates over distinct permutations.

    Iterates over distinct permutations.

    returns

    An Iterator which traverses the distinct permutations of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).permutations
    Definition Classes
    SeqLike
    Example:
    1. "abb".permutations = Iterator(abb, bab, bba)

  531. def prefixLength(p: (T) ⇒ Boolean): Int

    Permalink

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    returns

    the length of the longest prefix of this mutable indexed sequence such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).prefixLength(p)
    Definition Classes
    GenSeqLike
  532. def prefixLength(p: (T) ⇒ Boolean): Int

    Permalink

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    Returns the length of the longest prefix whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    returns

    the length of the longest prefix of this mutable indexed sequence such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).prefixLength(p)
    Definition Classes
    GenSeqLike
  533. def product: A

    Permalink

    [use case] Multiplies up the elements of this collection.

    [use case]

    Multiplies up the elements of this collection.

    returns

    the product of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of product. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).product
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def product[B >: A](implicit num: Numeric[B]): B

  534. def product: A

    Permalink

    [use case] Multiplies up the elements of this collection.

    [use case]

    Multiplies up the elements of this collection.

    returns

    the product of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of product. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).product
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def product[B >: A](implicit num: Numeric[B]): B

  535. def product: A

    Permalink

    [use case] Multiplies up the elements of this collection.

    [use case]

    Multiplies up the elements of this collection.

    returns

    the product of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of product. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).product
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def product[B >: A](implicit num: Numeric[B]): B

  536. def product: A

    Permalink

    [use case] Multiplies up the elements of this collection.

    [use case]

    Multiplies up the elements of this collection.

    returns

    the product of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of product. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).product
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def product[B >: A](implicit num: Numeric[B]): B

  537. def product: A

    Permalink

    [use case] Multiplies up the elements of this collection.

    [use case]

    Multiplies up the elements of this collection.

    returns

    the product of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of product. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).product
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def product[B >: A](implicit num: Numeric[B]): B

  538. def product: A

    Permalink

    [use case] Multiplies up the elements of this collection.

    [use case]

    Multiplies up the elements of this collection.

    returns

    the product of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of product. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).product
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def product[B >: A](implicit num: Numeric[B]): B

  539. def product: A

    Permalink

    [use case] Multiplies up the elements of this collection.

    [use case]

    Multiplies up the elements of this collection.

    returns

    the product of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of product. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).product
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def product[B >: A](implicit num: Numeric[B]): B

  540. def product: A

    Permalink

    [use case] Multiplies up the elements of this collection.

    [use case]

    Multiplies up the elements of this collection.

    returns

    the product of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of product. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).product
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def product[B >: A](implicit num: Numeric[B]): B

  541. def product: A

    Permalink

    [use case] Multiplies up the elements of this collection.

    [use case]

    Multiplies up the elements of this collection.

    returns

    the product of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of product. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).product
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def product[B >: A](implicit num: Numeric[B]): B

  542. def product: A

    Permalink

    [use case] Multiplies up the elements of this collection.

    [use case]

    Multiplies up the elements of this collection.

    returns

    the product of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of product. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).product
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def product[B >: A](implicit num: Numeric[B]): B

  543. def product: A

    Permalink

    [use case] Multiplies up the elements of this collection.

    [use case]

    Multiplies up the elements of this collection.

    returns

    the product of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of product. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).product
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def product[B >: A](implicit num: Numeric[B]): B

  544. def repr: Array[T]

    Permalink

    The collection of type mutable indexed sequence underlying this TraversableLike object.

    The collection of type mutable indexed sequence underlying this TraversableLike object. By default this is implemented as the TraversableLike object itself, but this can be overridden.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).repr
    Definition Classes
    TraversableLikeGenTraversableLike
  545. val repr: Array[Unit]

    Permalink

    The collection of type mutable indexed sequence underlying this TraversableLike object.

    The collection of type mutable indexed sequence underlying this TraversableLike object. By default this is implemented as the TraversableLike object itself, but this can be overridden.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).repr
    Definition Classes
    ofUnitTraversableLikeGenTraversableLike
  546. val repr: Array[Short]

    Permalink

    The collection of type mutable indexed sequence underlying this TraversableLike object.

    The collection of type mutable indexed sequence underlying this TraversableLike object. By default this is implemented as the TraversableLike object itself, but this can be overridden.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).repr
    Definition Classes
    ofShortTraversableLikeGenTraversableLike
  547. val repr: Array[T]

    Permalink

    The collection of type mutable indexed sequence underlying this TraversableLike object.

    The collection of type mutable indexed sequence underlying this TraversableLike object. By default this is implemented as the TraversableLike object itself, but this can be overridden.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).repr
    Definition Classes
    ofRefTraversableLikeGenTraversableLike
  548. val repr: Array[Long]

    Permalink

    The collection of type mutable indexed sequence underlying this TraversableLike object.

    The collection of type mutable indexed sequence underlying this TraversableLike object. By default this is implemented as the TraversableLike object itself, but this can be overridden.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).repr
    Definition Classes
    ofLongTraversableLikeGenTraversableLike
  549. val repr: Array[Int]

    Permalink

    The collection of type mutable indexed sequence underlying this TraversableLike object.

    The collection of type mutable indexed sequence underlying this TraversableLike object. By default this is implemented as the TraversableLike object itself, but this can be overridden.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).repr
    Definition Classes
    ofIntTraversableLikeGenTraversableLike
  550. val repr: Array[Float]

    Permalink

    The collection of type mutable indexed sequence underlying this TraversableLike object.

    The collection of type mutable indexed sequence underlying this TraversableLike object. By default this is implemented as the TraversableLike object itself, but this can be overridden.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).repr
    Definition Classes
    ofFloatTraversableLikeGenTraversableLike
  551. val repr: Array[Double]

    Permalink

    The collection of type mutable indexed sequence underlying this TraversableLike object.

    The collection of type mutable indexed sequence underlying this TraversableLike object. By default this is implemented as the TraversableLike object itself, but this can be overridden.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).repr
    Definition Classes
    ofDoubleTraversableLikeGenTraversableLike
  552. val repr: Array[Char]

    Permalink

    The collection of type mutable indexed sequence underlying this TraversableLike object.

    The collection of type mutable indexed sequence underlying this TraversableLike object. By default this is implemented as the TraversableLike object itself, but this can be overridden.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).repr
    Definition Classes
    ofCharTraversableLikeGenTraversableLike
  553. val repr: Array[Byte]

    Permalink

    The collection of type mutable indexed sequence underlying this TraversableLike object.

    The collection of type mutable indexed sequence underlying this TraversableLike object. By default this is implemented as the TraversableLike object itself, but this can be overridden.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).repr
    Definition Classes
    ofByteTraversableLikeGenTraversableLike
  554. val repr: Array[Boolean]

    Permalink

    The collection of type mutable indexed sequence underlying this TraversableLike object.

    The collection of type mutable indexed sequence underlying this TraversableLike object. By default this is implemented as the TraversableLike object itself, but this can be overridden.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).repr
    Definition Classes
    ofBooleanTraversableLikeGenTraversableLike
  555. def reverse: Array[Unit]

    Permalink

    Returns new mutable indexed sequence with elements in reversed order.

    Returns new mutable indexed sequence with elements in reversed order.

    returns

    A new mutable indexed sequence with all elements of this mutable indexed sequence in reversed order.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).reverse
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  556. def reverse: Array[Short]

    Permalink

    Returns new mutable indexed sequence with elements in reversed order.

    Returns new mutable indexed sequence with elements in reversed order.

    returns

    A new mutable indexed sequence with all elements of this mutable indexed sequence in reversed order.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).reverse
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  557. def reverse: Array[T]

    Permalink

    Returns new mutable indexed sequence with elements in reversed order.

    Returns new mutable indexed sequence with elements in reversed order.

    returns

    A new mutable indexed sequence with all elements of this mutable indexed sequence in reversed order.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).reverse
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  558. def reverse: Array[Long]

    Permalink

    Returns new mutable indexed sequence with elements in reversed order.

    Returns new mutable indexed sequence with elements in reversed order.

    returns

    A new mutable indexed sequence with all elements of this mutable indexed sequence in reversed order.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).reverse
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  559. def reverse: Array[Int]

    Permalink

    Returns new mutable indexed sequence with elements in reversed order.

    Returns new mutable indexed sequence with elements in reversed order.

    returns

    A new mutable indexed sequence with all elements of this mutable indexed sequence in reversed order.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).reverse
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  560. def reverse: Array[Float]

    Permalink

    Returns new mutable indexed sequence with elements in reversed order.

    Returns new mutable indexed sequence with elements in reversed order.

    returns

    A new mutable indexed sequence with all elements of this mutable indexed sequence in reversed order.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).reverse
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  561. def reverse: Array[Double]

    Permalink

    Returns new mutable indexed sequence with elements in reversed order.

    Returns new mutable indexed sequence with elements in reversed order.

    returns

    A new mutable indexed sequence with all elements of this mutable indexed sequence in reversed order.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).reverse
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  562. def reverse: Array[Char]

    Permalink

    Returns new mutable indexed sequence with elements in reversed order.

    Returns new mutable indexed sequence with elements in reversed order.

    returns

    A new mutable indexed sequence with all elements of this mutable indexed sequence in reversed order.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).reverse
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  563. def reverse: Array[Byte]

    Permalink

    Returns new mutable indexed sequence with elements in reversed order.

    Returns new mutable indexed sequence with elements in reversed order.

    returns

    A new mutable indexed sequence with all elements of this mutable indexed sequence in reversed order.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).reverse
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  564. def reverse: Array[Boolean]

    Permalink

    Returns new mutable indexed sequence with elements in reversed order.

    Returns new mutable indexed sequence with elements in reversed order.

    returns

    A new mutable indexed sequence with all elements of this mutable indexed sequence in reversed order.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).reverse
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  565. def reverse: Array[T]

    Permalink

    Returns new mutable indexed sequence with elements in reversed order.

    Returns new mutable indexed sequence with elements in reversed order.

    returns

    A new mutable indexed sequence with all elements of this mutable indexed sequence in reversed order.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).reverse
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  566. def reverseIterator: collection.Iterator[Unit]

    Permalink

    An iterator yielding elements in reversed order.

    An iterator yielding elements in reversed order.

    Note: xs.reverseIterator is the same as xs.reverse.iterator but might be more efficient.

    returns

    an iterator yielding the elements of this mutable indexed sequence in reversed order

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).reverseIterator
    Definition Classes
    IndexedSeqOptimizedSeqLike
  567. def reverseIterator: collection.Iterator[Short]

    Permalink

    An iterator yielding elements in reversed order.

    An iterator yielding elements in reversed order.

    Note: xs.reverseIterator is the same as xs.reverse.iterator but might be more efficient.

    returns

    an iterator yielding the elements of this mutable indexed sequence in reversed order

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).reverseIterator
    Definition Classes
    IndexedSeqOptimizedSeqLike
  568. def reverseIterator: collection.Iterator[T]

    Permalink

    An iterator yielding elements in reversed order.

    An iterator yielding elements in reversed order.

    Note: xs.reverseIterator is the same as xs.reverse.iterator but might be more efficient.

    returns

    an iterator yielding the elements of this mutable indexed sequence in reversed order

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).reverseIterator
    Definition Classes
    IndexedSeqOptimizedSeqLike
  569. def reverseIterator: collection.Iterator[Long]

    Permalink

    An iterator yielding elements in reversed order.

    An iterator yielding elements in reversed order.

    Note: xs.reverseIterator is the same as xs.reverse.iterator but might be more efficient.

    returns

    an iterator yielding the elements of this mutable indexed sequence in reversed order

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).reverseIterator
    Definition Classes
    IndexedSeqOptimizedSeqLike
  570. def reverseIterator: collection.Iterator[Int]

    Permalink

    An iterator yielding elements in reversed order.

    An iterator yielding elements in reversed order.

    Note: xs.reverseIterator is the same as xs.reverse.iterator but might be more efficient.

    returns

    an iterator yielding the elements of this mutable indexed sequence in reversed order

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).reverseIterator
    Definition Classes
    IndexedSeqOptimizedSeqLike
  571. def reverseIterator: collection.Iterator[Float]

    Permalink

    An iterator yielding elements in reversed order.

    An iterator yielding elements in reversed order.

    Note: xs.reverseIterator is the same as xs.reverse.iterator but might be more efficient.

    returns

    an iterator yielding the elements of this mutable indexed sequence in reversed order

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).reverseIterator
    Definition Classes
    IndexedSeqOptimizedSeqLike
  572. def reverseIterator: collection.Iterator[Double]

    Permalink

    An iterator yielding elements in reversed order.

    An iterator yielding elements in reversed order.

    Note: xs.reverseIterator is the same as xs.reverse.iterator but might be more efficient.

    returns

    an iterator yielding the elements of this mutable indexed sequence in reversed order

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).reverseIterator
    Definition Classes
    IndexedSeqOptimizedSeqLike
  573. def reverseIterator: collection.Iterator[Char]

    Permalink

    An iterator yielding elements in reversed order.

    An iterator yielding elements in reversed order.

    Note: xs.reverseIterator is the same as xs.reverse.iterator but might be more efficient.

    returns

    an iterator yielding the elements of this mutable indexed sequence in reversed order

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).reverseIterator
    Definition Classes
    IndexedSeqOptimizedSeqLike
  574. def reverseIterator: collection.Iterator[Byte]

    Permalink

    An iterator yielding elements in reversed order.

    An iterator yielding elements in reversed order.

    Note: xs.reverseIterator is the same as xs.reverse.iterator but might be more efficient.

    returns

    an iterator yielding the elements of this mutable indexed sequence in reversed order

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).reverseIterator
    Definition Classes
    IndexedSeqOptimizedSeqLike
  575. def reverseIterator: collection.Iterator[Boolean]

    Permalink

    An iterator yielding elements in reversed order.

    An iterator yielding elements in reversed order.

    Note: xs.reverseIterator is the same as xs.reverse.iterator but might be more efficient.

    returns

    an iterator yielding the elements of this mutable indexed sequence in reversed order

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).reverseIterator
    Definition Classes
    IndexedSeqOptimizedSeqLike
  576. def reverseIterator: collection.Iterator[T]

    Permalink

    An iterator yielding elements in reversed order.

    An iterator yielding elements in reversed order.

    Note: xs.reverseIterator is the same as xs.reverse.iterator but might be more efficient.

    returns

    an iterator yielding the elements of this mutable indexed sequence in reversed order

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).reverseIterator
    Definition Classes
    IndexedSeqOptimizedSeqLike
  577. def sameElements(that: GenIterable[A]): Boolean

    Permalink

    [use case] Checks if the other iterable collection contains the same elements in the same order as this array.

    [use case]

    Checks if the other iterable collection contains the same elements in the same order as this array.

    that

    the collection to compare with.

    returns

    true, if both collections contain the same elements in the same order, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).sameElements(that)
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def sameElements[B >: A](that: GenIterable[B]): Boolean

  578. def sameElements(that: GenIterable[A]): Boolean

    Permalink

    [use case] Checks if the other iterable collection contains the same elements in the same order as this array.

    [use case]

    Checks if the other iterable collection contains the same elements in the same order as this array.

    that

    the collection to compare with.

    returns

    true, if both collections contain the same elements in the same order, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).sameElements(that)
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def sameElements[B >: A](that: GenIterable[B]): Boolean

  579. def sameElements(that: GenIterable[A]): Boolean

    Permalink

    [use case] Checks if the other iterable collection contains the same elements in the same order as this array.

    [use case]

    Checks if the other iterable collection contains the same elements in the same order as this array.

    that

    the collection to compare with.

    returns

    true, if both collections contain the same elements in the same order, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).sameElements(that)
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def sameElements[B >: A](that: GenIterable[B]): Boolean

  580. def sameElements(that: GenIterable[A]): Boolean

    Permalink

    [use case] Checks if the other iterable collection contains the same elements in the same order as this array.

    [use case]

    Checks if the other iterable collection contains the same elements in the same order as this array.

    that

    the collection to compare with.

    returns

    true, if both collections contain the same elements in the same order, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).sameElements(that)
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def sameElements[B >: A](that: GenIterable[B]): Boolean

  581. def sameElements(that: GenIterable[A]): Boolean

    Permalink

    [use case] Checks if the other iterable collection contains the same elements in the same order as this array.

    [use case]

    Checks if the other iterable collection contains the same elements in the same order as this array.

    that

    the collection to compare with.

    returns

    true, if both collections contain the same elements in the same order, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).sameElements(that)
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def sameElements[B >: A](that: GenIterable[B]): Boolean

  582. def sameElements(that: GenIterable[A]): Boolean

    Permalink

    [use case] Checks if the other iterable collection contains the same elements in the same order as this array.

    [use case]

    Checks if the other iterable collection contains the same elements in the same order as this array.

    that

    the collection to compare with.

    returns

    true, if both collections contain the same elements in the same order, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).sameElements(that)
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def sameElements[B >: A](that: GenIterable[B]): Boolean

  583. def sameElements(that: GenIterable[A]): Boolean

    Permalink

    [use case] Checks if the other iterable collection contains the same elements in the same order as this array.

    [use case]

    Checks if the other iterable collection contains the same elements in the same order as this array.

    that

    the collection to compare with.

    returns

    true, if both collections contain the same elements in the same order, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).sameElements(that)
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def sameElements[B >: A](that: GenIterable[B]): Boolean

  584. def sameElements(that: GenIterable[A]): Boolean

    Permalink

    [use case] Checks if the other iterable collection contains the same elements in the same order as this array.

    [use case]

    Checks if the other iterable collection contains the same elements in the same order as this array.

    that

    the collection to compare with.

    returns

    true, if both collections contain the same elements in the same order, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).sameElements(that)
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def sameElements[B >: A](that: GenIterable[B]): Boolean

  585. def sameElements(that: GenIterable[A]): Boolean

    Permalink

    [use case] Checks if the other iterable collection contains the same elements in the same order as this array.

    [use case]

    Checks if the other iterable collection contains the same elements in the same order as this array.

    that

    the collection to compare with.

    returns

    true, if both collections contain the same elements in the same order, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).sameElements(that)
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def sameElements[B >: A](that: GenIterable[B]): Boolean

  586. def sameElements(that: GenIterable[A]): Boolean

    Permalink

    [use case] Checks if the other iterable collection contains the same elements in the same order as this array.

    [use case]

    Checks if the other iterable collection contains the same elements in the same order as this array.

    that

    the collection to compare with.

    returns

    true, if both collections contain the same elements in the same order, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).sameElements(that)
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def sameElements[B >: A](that: GenIterable[B]): Boolean

  587. def sameElements(that: GenIterable[A]): Boolean

    Permalink

    [use case] Checks if the other iterable collection contains the same elements in the same order as this array.

    [use case]

    Checks if the other iterable collection contains the same elements in the same order as this array.

    that

    the collection to compare with.

    returns

    true, if both collections contain the same elements in the same order, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).sameElements(that)
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def sameElements[B >: A](that: GenIterable[B]): Boolean

  588. def scanLeft[B, That](z: B)(op: (B, T) ⇒ B)(implicit bf: CanBuildFrom[Array[T], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going left to right.

    Produces a collection containing cumulative results of applying the operator going left to right.

    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).scanLeft(z)(op)(bf)
    Definition Classes
    TraversableLikeGenTraversableLike
  589. def scanLeft[B, That](z: B)(op: (B, T) ⇒ B)(implicit bf: CanBuildFrom[Array[T], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going left to right.

    Produces a collection containing cumulative results of applying the operator going left to right.

    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).scanLeft(z)(op)(bf)
    Definition Classes
    TraversableLikeGenTraversableLike
  590. def scanRight[B, That](z: B)(op: (T, B) ⇒ B)(implicit bf: CanBuildFrom[Array[T], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going right to left.

    Produces a collection containing cumulative results of applying the operator going right to left. The head of the collection is the last cumulative result.

    Example:

    List(1, 2, 3, 4).scanRight(0)(_ + _) == List(10, 9, 7, 4, 0)
    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).scanRight(z)(op)(bf)
    Definition Classes
    TraversableLikeGenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  591. def scanRight[B, That](z: B)(op: (T, B) ⇒ B)(implicit bf: CanBuildFrom[Array[T], B, That]): That

    Permalink

    Produces a collection containing cumulative results of applying the operator going right to left.

    Produces a collection containing cumulative results of applying the operator going right to left. The head of the collection is the last cumulative result.

    Example:

    List(1, 2, 3, 4).scanRight(0)(_ + _) == List(10, 9, 7, 4, 0)
    B

    the type of the elements in the resulting collection

    That

    the actual type of the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    collection with intermediate results

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).scanRight(z)(op)(bf)
    Definition Classes
    TraversableLikeGenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  592. def segmentLength(p: (T) ⇒ Boolean, from: Int): Int

    Permalink

    Computes length of longest segment whose elements all satisfy some predicate.

    Computes length of longest segment whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    from

    the index where the search starts.

    returns

    the length of the longest segment of this mutable indexed sequence starting from index from such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).segmentLength(p, from)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  593. def segmentLength(p: (T) ⇒ Boolean, from: Int): Int

    Permalink

    Computes length of longest segment whose elements all satisfy some predicate.

    Computes length of longest segment whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    from

    the index where the search starts.

    returns

    the length of the longest segment of this mutable indexed sequence starting from index from such that every element of the segment satisfies the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).segmentLength(p, from)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  594. def seq: collection.mutable.IndexedSeq[Unit]

    Permalink

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    This method returns a reference to this collection. In parallel collections, it is redefined to return a sequential implementation of this collection. In both cases, it has O(1) complexity.

    returns

    a sequential view of the collection.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).seq
    Definition Classes
    ArrayOpsIndexedSeqLikeGenSeqLikeParallelizableTraversableOnceGenTraversableOnce
  595. def seq: collection.mutable.IndexedSeq[Short]

    Permalink

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    This method returns a reference to this collection. In parallel collections, it is redefined to return a sequential implementation of this collection. In both cases, it has O(1) complexity.

    returns

    a sequential view of the collection.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).seq
    Definition Classes
    ArrayOpsIndexedSeqLikeGenSeqLikeParallelizableTraversableOnceGenTraversableOnce
  596. def seq: collection.mutable.IndexedSeq[T]

    Permalink

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    This method returns a reference to this collection. In parallel collections, it is redefined to return a sequential implementation of this collection. In both cases, it has O(1) complexity.

    returns

    a sequential view of the collection.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).seq
    Definition Classes
    ArrayOpsIndexedSeqLikeGenSeqLikeParallelizableTraversableOnceGenTraversableOnce
  597. def seq: collection.mutable.IndexedSeq[Long]

    Permalink

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    This method returns a reference to this collection. In parallel collections, it is redefined to return a sequential implementation of this collection. In both cases, it has O(1) complexity.

    returns

    a sequential view of the collection.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).seq
    Definition Classes
    ArrayOpsIndexedSeqLikeGenSeqLikeParallelizableTraversableOnceGenTraversableOnce
  598. def seq: collection.mutable.IndexedSeq[Int]

    Permalink

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    This method returns a reference to this collection. In parallel collections, it is redefined to return a sequential implementation of this collection. In both cases, it has O(1) complexity.

    returns

    a sequential view of the collection.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).seq
    Definition Classes
    ArrayOpsIndexedSeqLikeGenSeqLikeParallelizableTraversableOnceGenTraversableOnce
  599. def seq: collection.mutable.IndexedSeq[Float]

    Permalink

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    This method returns a reference to this collection. In parallel collections, it is redefined to return a sequential implementation of this collection. In both cases, it has O(1) complexity.

    returns

    a sequential view of the collection.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).seq
    Definition Classes
    ArrayOpsIndexedSeqLikeGenSeqLikeParallelizableTraversableOnceGenTraversableOnce
  600. def seq: collection.mutable.IndexedSeq[Double]

    Permalink

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    This method returns a reference to this collection. In parallel collections, it is redefined to return a sequential implementation of this collection. In both cases, it has O(1) complexity.

    returns

    a sequential view of the collection.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).seq
    Definition Classes
    ArrayOpsIndexedSeqLikeGenSeqLikeParallelizableTraversableOnceGenTraversableOnce
  601. def seq: collection.mutable.IndexedSeq[Char]

    Permalink

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    This method returns a reference to this collection. In parallel collections, it is redefined to return a sequential implementation of this collection. In both cases, it has O(1) complexity.

    returns

    a sequential view of the collection.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).seq
    Definition Classes
    ArrayOpsIndexedSeqLikeGenSeqLikeParallelizableTraversableOnceGenTraversableOnce
  602. def seq: collection.mutable.IndexedSeq[Byte]

    Permalink

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    This method returns a reference to this collection. In parallel collections, it is redefined to return a sequential implementation of this collection. In both cases, it has O(1) complexity.

    returns

    a sequential view of the collection.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).seq
    Definition Classes
    ArrayOpsIndexedSeqLikeGenSeqLikeParallelizableTraversableOnceGenTraversableOnce
  603. def seq: collection.mutable.IndexedSeq[Boolean]

    Permalink

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    This method returns a reference to this collection. In parallel collections, it is redefined to return a sequential implementation of this collection. In both cases, it has O(1) complexity.

    returns

    a sequential view of the collection.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).seq
    Definition Classes
    ArrayOpsIndexedSeqLikeGenSeqLikeParallelizableTraversableOnceGenTraversableOnce
  604. def seq: collection.mutable.IndexedSeq[T]

    Permalink

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).

    This method returns a reference to this collection. In parallel collections, it is redefined to return a sequential implementation of this collection. In both cases, it has O(1) complexity.

    returns

    a sequential view of the collection.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).seq
    Definition Classes
    ArrayOpsIndexedSeqLikeGenSeqLikeParallelizableTraversableOnceGenTraversableOnce
  605. def size: Int

    Permalink

    The size of this mutable indexed sequence, equivalent to length.

    The size of this mutable indexed sequence, equivalent to length.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).size
    Definition Classes
    SeqLikeGenTraversableLikeTraversableOnceGenTraversableOnce
  606. def size: Int

    Permalink

    The size of this mutable indexed sequence, equivalent to length.

    The size of this mutable indexed sequence, equivalent to length.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).size
    Definition Classes
    SeqLikeGenTraversableLikeTraversableOnceGenTraversableOnce
  607. def size: Int

    Permalink

    The size of this mutable indexed sequence, equivalent to length.

    The size of this mutable indexed sequence, equivalent to length.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).size
    Definition Classes
    SeqLikeGenTraversableLikeTraversableOnceGenTraversableOnce
  608. def size: Int

    Permalink

    The size of this mutable indexed sequence, equivalent to length.

    The size of this mutable indexed sequence, equivalent to length.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).size
    Definition Classes
    SeqLikeGenTraversableLikeTraversableOnceGenTraversableOnce
  609. def size: Int

    Permalink

    The size of this mutable indexed sequence, equivalent to length.

    The size of this mutable indexed sequence, equivalent to length.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).size
    Definition Classes
    SeqLikeGenTraversableLikeTraversableOnceGenTraversableOnce
  610. def size: Int

    Permalink

    The size of this mutable indexed sequence, equivalent to length.

    The size of this mutable indexed sequence, equivalent to length.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).size
    Definition Classes
    SeqLikeGenTraversableLikeTraversableOnceGenTraversableOnce
  611. def size: Int

    Permalink

    The size of this mutable indexed sequence, equivalent to length.

    The size of this mutable indexed sequence, equivalent to length.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).size
    Definition Classes
    SeqLikeGenTraversableLikeTraversableOnceGenTraversableOnce
  612. def size: Int

    Permalink

    The size of this mutable indexed sequence, equivalent to length.

    The size of this mutable indexed sequence, equivalent to length.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).size
    Definition Classes
    SeqLikeGenTraversableLikeTraversableOnceGenTraversableOnce
  613. def size: Int

    Permalink

    The size of this mutable indexed sequence, equivalent to length.

    The size of this mutable indexed sequence, equivalent to length.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).size
    Definition Classes
    SeqLikeGenTraversableLikeTraversableOnceGenTraversableOnce
  614. def size: Int

    Permalink

    The size of this mutable indexed sequence, equivalent to length.

    The size of this mutable indexed sequence, equivalent to length.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).size
    Definition Classes
    SeqLikeGenTraversableLikeTraversableOnceGenTraversableOnce
  615. def size: Int

    Permalink

    The size of this mutable indexed sequence, equivalent to length.

    The size of this mutable indexed sequence, equivalent to length.

    returns

    the number of elements in this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).size
    Definition Classes
    SeqLikeGenTraversableLikeTraversableOnceGenTraversableOnce
  616. def slice(from: Int, until: Int): Array[Unit]

    Permalink

    Selects an interval of elements.

    Selects an interval of elements. The returned collection is made up of all elements x which satisfy the invariant:

    from <= indexOf(x) < until
    returns

    a mutable indexed sequence containing the elements greater than or equal to index from extending up to (but not including) index until of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).slice(from, until)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  617. def slice(from: Int, until: Int): Array[Short]

    Permalink

    Selects an interval of elements.

    Selects an interval of elements. The returned collection is made up of all elements x which satisfy the invariant:

    from <= indexOf(x) < until
    returns

    a mutable indexed sequence containing the elements greater than or equal to index from extending up to (but not including) index until of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).slice(from, until)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  618. def slice(from: Int, until: Int): Array[T]

    Permalink

    Selects an interval of elements.

    Selects an interval of elements. The returned collection is made up of all elements x which satisfy the invariant:

    from <= indexOf(x) < until
    returns

    a mutable indexed sequence containing the elements greater than or equal to index from extending up to (but not including) index until of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).slice(from, until)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  619. def slice(from: Int, until: Int): Array[Long]

    Permalink

    Selects an interval of elements.

    Selects an interval of elements. The returned collection is made up of all elements x which satisfy the invariant:

    from <= indexOf(x) < until
    returns

    a mutable indexed sequence containing the elements greater than or equal to index from extending up to (but not including) index until of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).slice(from, until)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  620. def slice(from: Int, until: Int): Array[Int]

    Permalink

    Selects an interval of elements.

    Selects an interval of elements. The returned collection is made up of all elements x which satisfy the invariant:

    from <= indexOf(x) < until
    returns

    a mutable indexed sequence containing the elements greater than or equal to index from extending up to (but not including) index until of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).slice(from, until)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  621. def slice(from: Int, until: Int): Array[Float]

    Permalink

    Selects an interval of elements.

    Selects an interval of elements. The returned collection is made up of all elements x which satisfy the invariant:

    from <= indexOf(x) < until
    returns

    a mutable indexed sequence containing the elements greater than or equal to index from extending up to (but not including) index until of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).slice(from, until)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  622. def slice(from: Int, until: Int): Array[Double]

    Permalink

    Selects an interval of elements.

    Selects an interval of elements. The returned collection is made up of all elements x which satisfy the invariant:

    from <= indexOf(x) < until
    returns

    a mutable indexed sequence containing the elements greater than or equal to index from extending up to (but not including) index until of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).slice(from, until)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  623. def slice(from: Int, until: Int): Array[Char]

    Permalink

    Selects an interval of elements.

    Selects an interval of elements. The returned collection is made up of all elements x which satisfy the invariant:

    from <= indexOf(x) < until
    returns

    a mutable indexed sequence containing the elements greater than or equal to index from extending up to (but not including) index until of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).slice(from, until)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  624. def slice(from: Int, until: Int): Array[Byte]

    Permalink

    Selects an interval of elements.

    Selects an interval of elements. The returned collection is made up of all elements x which satisfy the invariant:

    from <= indexOf(x) < until
    returns

    a mutable indexed sequence containing the elements greater than or equal to index from extending up to (but not including) index until of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).slice(from, until)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  625. def slice(from: Int, until: Int): Array[Boolean]

    Permalink

    Selects an interval of elements.

    Selects an interval of elements. The returned collection is made up of all elements x which satisfy the invariant:

    from <= indexOf(x) < until
    returns

    a mutable indexed sequence containing the elements greater than or equal to index from extending up to (but not including) index until of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).slice(from, until)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  626. def slice(from: Int, until: Int): Array[T]

    Permalink

    Selects an interval of elements.

    Selects an interval of elements. The returned collection is made up of all elements x which satisfy the invariant:

    from <= indexOf(x) < until
    returns

    a mutable indexed sequence containing the elements greater than or equal to index from extending up to (but not including) index until of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).slice(from, until)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  627. def sliding(size: Int, step: Int): collection.Iterator[Array[Unit]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    size

    the number of elements per group

    step

    the distance between the first elements of successive groups

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).sliding(size, step)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  628. def sliding(size: Int): collection.Iterator[Array[Unit]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    size

    the number of elements per group

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).sliding(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  629. def sliding(size: Int, step: Int): collection.Iterator[Array[Short]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    size

    the number of elements per group

    step

    the distance between the first elements of successive groups

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).sliding(size, step)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  630. def sliding(size: Int): collection.Iterator[Array[Short]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    size

    the number of elements per group

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).sliding(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  631. def sliding(size: Int, step: Int): collection.Iterator[Array[T]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    size

    the number of elements per group

    step

    the distance between the first elements of successive groups

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).sliding(size, step)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  632. def sliding(size: Int): collection.Iterator[Array[T]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    size

    the number of elements per group

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).sliding(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  633. def sliding(size: Int, step: Int): collection.Iterator[Array[Long]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    size

    the number of elements per group

    step

    the distance between the first elements of successive groups

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).sliding(size, step)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  634. def sliding(size: Int): collection.Iterator[Array[Long]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    size

    the number of elements per group

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).sliding(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  635. def sliding(size: Int, step: Int): collection.Iterator[Array[Int]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    size

    the number of elements per group

    step

    the distance between the first elements of successive groups

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).sliding(size, step)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  636. def sliding(size: Int): collection.Iterator[Array[Int]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    size

    the number of elements per group

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).sliding(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  637. def sliding(size: Int, step: Int): collection.Iterator[Array[Float]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    size

    the number of elements per group

    step

    the distance between the first elements of successive groups

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).sliding(size, step)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  638. def sliding(size: Int): collection.Iterator[Array[Float]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    size

    the number of elements per group

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).sliding(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  639. def sliding(size: Int, step: Int): collection.Iterator[Array[Double]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    size

    the number of elements per group

    step

    the distance between the first elements of successive groups

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).sliding(size, step)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  640. def sliding(size: Int): collection.Iterator[Array[Double]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    size

    the number of elements per group

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).sliding(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  641. def sliding(size: Int, step: Int): collection.Iterator[Array[Char]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    size

    the number of elements per group

    step

    the distance between the first elements of successive groups

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).sliding(size, step)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  642. def sliding(size: Int): collection.Iterator[Array[Char]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    size

    the number of elements per group

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).sliding(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  643. def sliding(size: Int, step: Int): collection.Iterator[Array[Byte]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    size

    the number of elements per group

    step

    the distance between the first elements of successive groups

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).sliding(size, step)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  644. def sliding(size: Int): collection.Iterator[Array[Byte]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    size

    the number of elements per group

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).sliding(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  645. def sliding(size: Int, step: Int): collection.Iterator[Array[Boolean]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    size

    the number of elements per group

    step

    the distance between the first elements of successive groups

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).sliding(size, step)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  646. def sliding(size: Int): collection.Iterator[Array[Boolean]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    size

    the number of elements per group

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).sliding(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  647. def sliding(size: Int, step: Int): collection.Iterator[Array[T]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    size

    the number of elements per group

    step

    the distance between the first elements of successive groups

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).sliding(size, step)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  648. def sliding(size: Int): collection.Iterator[Array[T]]

    Permalink

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.

    size

    the number of elements per group

    returns

    An iterator producing mutable indexed sequences of size size, except the last and the only element will be truncated if there are fewer elements than size.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).sliding(size)
    Definition Classes
    IterableLike
    See also

    scala.collection.Iterator, method sliding

  649. def sortBy[B](f: (T) ⇒ B)(implicit ord: math.Ordering[B]): Array[T]

    Permalink

    Sorts this Array according to the Ordering which results from transforming an implicitly given Ordering with a transformation function.

    Sorts this Array according to the Ordering which results from transforming an implicitly given Ordering with a transformation function.

    B

    the target type of the transformation f, and the type where the ordering ord is defined.

    f

    the transformation function mapping elements to some other domain B.

    ord

    the ordering assumed on domain B.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering where x < y if ord.lt(f(x), f(y)).

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).sortBy(f)(ord)
    Definition Classes
    SeqLike
    Example:
    1. val words = "The quick brown fox jumped over the lazy dog".split(' ')
      // this works because scala.Ordering will implicitly provide an Ordering[Tuple2[Int, Char]]
      words.sortBy(x => (x.length, x.head))
      res0: Array[String] = Array(The, dog, fox, the, lazy, over, brown, quick, jumped)
    See also

    scala.math.Ordering

  650. def sortBy[B](f: (T) ⇒ B)(implicit ord: math.Ordering[B]): Array[T]

    Permalink

    Sorts this Array according to the Ordering which results from transforming an implicitly given Ordering with a transformation function.

    Sorts this Array according to the Ordering which results from transforming an implicitly given Ordering with a transformation function.

    B

    the target type of the transformation f, and the type where the ordering ord is defined.

    f

    the transformation function mapping elements to some other domain B.

    ord

    the ordering assumed on domain B.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the ordering where x < y if ord.lt(f(x), f(y)).

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).sortBy(f)(ord)
    Definition Classes
    SeqLike
    Example:
    1. val words = "The quick brown fox jumped over the lazy dog".split(' ')
      // this works because scala.Ordering will implicitly provide an Ordering[Tuple2[Int, Char]]
      words.sortBy(x => (x.length, x.head))
      res0: Array[String] = Array(The, dog, fox, the, lazy, over, brown, quick, jumped)
    See also

    scala.math.Ordering

  651. def sortWith(lt: (T, T) ⇒ Boolean): Array[T]

    Permalink

    Sorts this mutable indexed sequence according to a comparison function.

    Sorts this mutable indexed sequence according to a comparison function.

    The sort is stable. That is, elements that are equal (as determined by lt) appear in the same order in the sorted sequence as in the original.

    lt

    the comparison function which tests whether its first argument precedes its second argument in the desired ordering.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the comparison function lt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).sortWith(lt)
    Definition Classes
    SeqLike
    Example:
    1. List("Steve", "Tom", "John", "Bob").sortWith(_.compareTo(_) < 0) =
      List("Bob", "John", "Steve", "Tom")
  652. def sortWith(lt: (T, T) ⇒ Boolean): Array[T]

    Permalink

    Sorts this mutable indexed sequence according to a comparison function.

    Sorts this mutable indexed sequence according to a comparison function.

    The sort is stable. That is, elements that are equal (as determined by lt) appear in the same order in the sorted sequence as in the original.

    lt

    the comparison function which tests whether its first argument precedes its second argument in the desired ordering.

    returns

    a mutable indexed sequence consisting of the elements of this mutable indexed sequence sorted according to the comparison function lt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).sortWith(lt)
    Definition Classes
    SeqLike
    Example:
    1. List("Steve", "Tom", "John", "Bob").sortWith(_.compareTo(_) < 0) =
      List("Bob", "John", "Steve", "Tom")
  653. def span(p: (T) ⇒ Boolean): (Array[T], Array[T])

    Permalink

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

    Note: c span p is equivalent to (but possibly more efficient than) (c takeWhile p, c dropWhile p), provided the evaluation of the predicate p does not cause any side-effects.

    returns

    a pair consisting of the longest prefix of this mutable indexed sequence whose elements all satisfy p, and the rest of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).span(p)
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  654. def span(p: (T) ⇒ Boolean): (Array[T], Array[T])

    Permalink

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

    Splits this mutable indexed sequence into a prefix/suffix pair according to a predicate.

    Note: c span p is equivalent to (but possibly more efficient than) (c takeWhile p, c dropWhile p), provided the evaluation of the predicate p does not cause any side-effects.

    returns

    a pair consisting of the longest prefix of this mutable indexed sequence whose elements all satisfy p, and the rest of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).span(p)
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  655. def splitAt(n: Int): (Array[Unit], Array[Unit])

    Permalink

    Splits this mutable indexed sequence into two at a given position.

    Splits this mutable indexed sequence into two at a given position. Note: c splitAt n is equivalent to (but possibly more efficient than) (c take n, c drop n).

    n

    the position at which to split.

    returns

    a pair of mutable indexed sequences consisting of the first n elements of this mutable indexed sequence, and the other elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).splitAt(n)
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  656. def splitAt(n: Int): (Array[Short], Array[Short])

    Permalink

    Splits this mutable indexed sequence into two at a given position.

    Splits this mutable indexed sequence into two at a given position. Note: c splitAt n is equivalent to (but possibly more efficient than) (c take n, c drop n).

    n

    the position at which to split.

    returns

    a pair of mutable indexed sequences consisting of the first n elements of this mutable indexed sequence, and the other elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).splitAt(n)
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  657. def splitAt(n: Int): (Array[T], Array[T])

    Permalink

    Splits this mutable indexed sequence into two at a given position.

    Splits this mutable indexed sequence into two at a given position. Note: c splitAt n is equivalent to (but possibly more efficient than) (c take n, c drop n).

    n

    the position at which to split.

    returns

    a pair of mutable indexed sequences consisting of the first n elements of this mutable indexed sequence, and the other elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).splitAt(n)
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  658. def splitAt(n: Int): (Array[Long], Array[Long])

    Permalink

    Splits this mutable indexed sequence into two at a given position.

    Splits this mutable indexed sequence into two at a given position. Note: c splitAt n is equivalent to (but possibly more efficient than) (c take n, c drop n).

    n

    the position at which to split.

    returns

    a pair of mutable indexed sequences consisting of the first n elements of this mutable indexed sequence, and the other elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).splitAt(n)
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  659. def splitAt(n: Int): (Array[Int], Array[Int])

    Permalink

    Splits this mutable indexed sequence into two at a given position.

    Splits this mutable indexed sequence into two at a given position. Note: c splitAt n is equivalent to (but possibly more efficient than) (c take n, c drop n).

    n

    the position at which to split.

    returns

    a pair of mutable indexed sequences consisting of the first n elements of this mutable indexed sequence, and the other elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).splitAt(n)
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  660. def splitAt(n: Int): (Array[Float], Array[Float])

    Permalink

    Splits this mutable indexed sequence into two at a given position.

    Splits this mutable indexed sequence into two at a given position. Note: c splitAt n is equivalent to (but possibly more efficient than) (c take n, c drop n).

    n

    the position at which to split.

    returns

    a pair of mutable indexed sequences consisting of the first n elements of this mutable indexed sequence, and the other elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).splitAt(n)
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  661. def splitAt(n: Int): (Array[Double], Array[Double])

    Permalink

    Splits this mutable indexed sequence into two at a given position.

    Splits this mutable indexed sequence into two at a given position. Note: c splitAt n is equivalent to (but possibly more efficient than) (c take n, c drop n).

    n

    the position at which to split.

    returns

    a pair of mutable indexed sequences consisting of the first n elements of this mutable indexed sequence, and the other elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).splitAt(n)
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  662. def splitAt(n: Int): (Array[Char], Array[Char])

    Permalink

    Splits this mutable indexed sequence into two at a given position.

    Splits this mutable indexed sequence into two at a given position. Note: c splitAt n is equivalent to (but possibly more efficient than) (c take n, c drop n).

    n

    the position at which to split.

    returns

    a pair of mutable indexed sequences consisting of the first n elements of this mutable indexed sequence, and the other elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).splitAt(n)
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  663. def splitAt(n: Int): (Array[Byte], Array[Byte])

    Permalink

    Splits this mutable indexed sequence into two at a given position.

    Splits this mutable indexed sequence into two at a given position. Note: c splitAt n is equivalent to (but possibly more efficient than) (c take n, c drop n).

    n

    the position at which to split.

    returns

    a pair of mutable indexed sequences consisting of the first n elements of this mutable indexed sequence, and the other elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).splitAt(n)
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  664. def splitAt(n: Int): (Array[Boolean], Array[Boolean])

    Permalink

    Splits this mutable indexed sequence into two at a given position.

    Splits this mutable indexed sequence into two at a given position. Note: c splitAt n is equivalent to (but possibly more efficient than) (c take n, c drop n).

    n

    the position at which to split.

    returns

    a pair of mutable indexed sequences consisting of the first n elements of this mutable indexed sequence, and the other elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).splitAt(n)
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  665. def splitAt(n: Int): (Array[T], Array[T])

    Permalink

    Splits this mutable indexed sequence into two at a given position.

    Splits this mutable indexed sequence into two at a given position. Note: c splitAt n is equivalent to (but possibly more efficient than) (c take n, c drop n).

    n

    the position at which to split.

    returns

    a pair of mutable indexed sequences consisting of the first n elements of this mutable indexed sequence, and the other elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).splitAt(n)
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
  666. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Note: If the both the receiver object this and the argument that are infinite sequences this method may not terminate.

    that

    the sequence to test

    offset

    the index where the sequence is searched.

    returns

    true if the sequence that is contained in this mutable indexed sequence at index offset, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).startsWith(that, offset)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  667. def startsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence starts with the given sequence.

    Tests whether this mutable indexed sequence starts with the given sequence.

    that

    the sequence to test

    returns

    true if this collection has that as a prefix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).startsWith(that)
    Definition Classes
    GenSeqLike
  668. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Note: If the both the receiver object this and the argument that are infinite sequences this method may not terminate.

    that

    the sequence to test

    offset

    the index where the sequence is searched.

    returns

    true if the sequence that is contained in this mutable indexed sequence at index offset, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).startsWith(that, offset)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  669. def startsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence starts with the given sequence.

    Tests whether this mutable indexed sequence starts with the given sequence.

    that

    the sequence to test

    returns

    true if this collection has that as a prefix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).startsWith(that)
    Definition Classes
    GenSeqLike
  670. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Note: If the both the receiver object this and the argument that are infinite sequences this method may not terminate.

    that

    the sequence to test

    offset

    the index where the sequence is searched.

    returns

    true if the sequence that is contained in this mutable indexed sequence at index offset, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).startsWith(that, offset)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  671. def startsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence starts with the given sequence.

    Tests whether this mutable indexed sequence starts with the given sequence.

    that

    the sequence to test

    returns

    true if this collection has that as a prefix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).startsWith(that)
    Definition Classes
    GenSeqLike
  672. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Note: If the both the receiver object this and the argument that are infinite sequences this method may not terminate.

    that

    the sequence to test

    offset

    the index where the sequence is searched.

    returns

    true if the sequence that is contained in this mutable indexed sequence at index offset, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).startsWith(that, offset)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  673. def startsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence starts with the given sequence.

    Tests whether this mutable indexed sequence starts with the given sequence.

    that

    the sequence to test

    returns

    true if this collection has that as a prefix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).startsWith(that)
    Definition Classes
    GenSeqLike
  674. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Note: If the both the receiver object this and the argument that are infinite sequences this method may not terminate.

    that

    the sequence to test

    offset

    the index where the sequence is searched.

    returns

    true if the sequence that is contained in this mutable indexed sequence at index offset, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).startsWith(that, offset)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  675. def startsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence starts with the given sequence.

    Tests whether this mutable indexed sequence starts with the given sequence.

    that

    the sequence to test

    returns

    true if this collection has that as a prefix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).startsWith(that)
    Definition Classes
    GenSeqLike
  676. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Note: If the both the receiver object this and the argument that are infinite sequences this method may not terminate.

    that

    the sequence to test

    offset

    the index where the sequence is searched.

    returns

    true if the sequence that is contained in this mutable indexed sequence at index offset, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).startsWith(that, offset)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  677. def startsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence starts with the given sequence.

    Tests whether this mutable indexed sequence starts with the given sequence.

    that

    the sequence to test

    returns

    true if this collection has that as a prefix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).startsWith(that)
    Definition Classes
    GenSeqLike
  678. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Note: If the both the receiver object this and the argument that are infinite sequences this method may not terminate.

    that

    the sequence to test

    offset

    the index where the sequence is searched.

    returns

    true if the sequence that is contained in this mutable indexed sequence at index offset, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).startsWith(that, offset)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  679. def startsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence starts with the given sequence.

    Tests whether this mutable indexed sequence starts with the given sequence.

    that

    the sequence to test

    returns

    true if this collection has that as a prefix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).startsWith(that)
    Definition Classes
    GenSeqLike
  680. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Note: If the both the receiver object this and the argument that are infinite sequences this method may not terminate.

    that

    the sequence to test

    offset

    the index where the sequence is searched.

    returns

    true if the sequence that is contained in this mutable indexed sequence at index offset, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).startsWith(that, offset)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  681. def startsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence starts with the given sequence.

    Tests whether this mutable indexed sequence starts with the given sequence.

    that

    the sequence to test

    returns

    true if this collection has that as a prefix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).startsWith(that)
    Definition Classes
    GenSeqLike
  682. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Note: If the both the receiver object this and the argument that are infinite sequences this method may not terminate.

    that

    the sequence to test

    offset

    the index where the sequence is searched.

    returns

    true if the sequence that is contained in this mutable indexed sequence at index offset, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).startsWith(that, offset)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  683. def startsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence starts with the given sequence.

    Tests whether this mutable indexed sequence starts with the given sequence.

    that

    the sequence to test

    returns

    true if this collection has that as a prefix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).startsWith(that)
    Definition Classes
    GenSeqLike
  684. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Note: If the both the receiver object this and the argument that are infinite sequences this method may not terminate.

    that

    the sequence to test

    offset

    the index where the sequence is searched.

    returns

    true if the sequence that is contained in this mutable indexed sequence at index offset, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).startsWith(that, offset)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  685. def startsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence starts with the given sequence.

    Tests whether this mutable indexed sequence starts with the given sequence.

    that

    the sequence to test

    returns

    true if this collection has that as a prefix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).startsWith(that)
    Definition Classes
    GenSeqLike
  686. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Permalink

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Tests whether this mutable indexed sequence contains the given sequence at a given index.

    Note: If the both the receiver object this and the argument that are infinite sequences this method may not terminate.

    that

    the sequence to test

    offset

    the index where the sequence is searched.

    returns

    true if the sequence that is contained in this mutable indexed sequence at index offset, otherwise false.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).startsWith(that, offset)
    Definition Classes
    IndexedSeqOptimizedSeqLikeGenSeqLike
  687. def startsWith[B](that: GenSeq[B]): Boolean

    Permalink

    Tests whether this mutable indexed sequence starts with the given sequence.

    Tests whether this mutable indexed sequence starts with the given sequence.

    that

    the sequence to test

    returns

    true if this collection has that as a prefix, false otherwise.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).startsWith(that)
    Definition Classes
    GenSeqLike
  688. def stringPrefix: String

    Permalink

    Defines the prefix of this object's toString representation.

    Defines the prefix of this object's toString representation.

    returns

    a string representation which starts the result of toString applied to this mutable indexed sequence. By default the string prefix is the simple name of the collection class mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).stringPrefix
    Definition Classes
    TraversableLikeGenTraversableLike
  689. def stringPrefix: String

    Permalink

    Defines the prefix of this object's toString representation.

    Defines the prefix of this object's toString representation.

    returns

    a string representation which starts the result of toString applied to this mutable indexed sequence. By default the string prefix is the simple name of the collection class mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).stringPrefix
    Definition Classes
    TraversableLikeGenTraversableLike
  690. def stringPrefix: String

    Permalink

    Defines the prefix of this object's toString representation.

    Defines the prefix of this object's toString representation.

    returns

    a string representation which starts the result of toString applied to this mutable indexed sequence. By default the string prefix is the simple name of the collection class mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).stringPrefix
    Definition Classes
    TraversableLikeGenTraversableLike
  691. def stringPrefix: String

    Permalink

    Defines the prefix of this object's toString representation.

    Defines the prefix of this object's toString representation.

    returns

    a string representation which starts the result of toString applied to this mutable indexed sequence. By default the string prefix is the simple name of the collection class mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).stringPrefix
    Definition Classes
    TraversableLikeGenTraversableLike
  692. def stringPrefix: String

    Permalink

    Defines the prefix of this object's toString representation.

    Defines the prefix of this object's toString representation.

    returns

    a string representation which starts the result of toString applied to this mutable indexed sequence. By default the string prefix is the simple name of the collection class mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).stringPrefix
    Definition Classes
    TraversableLikeGenTraversableLike
  693. def stringPrefix: String

    Permalink

    Defines the prefix of this object's toString representation.

    Defines the prefix of this object's toString representation.

    returns

    a string representation which starts the result of toString applied to this mutable indexed sequence. By default the string prefix is the simple name of the collection class mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).stringPrefix
    Definition Classes
    TraversableLikeGenTraversableLike
  694. def stringPrefix: String

    Permalink

    Defines the prefix of this object's toString representation.

    Defines the prefix of this object's toString representation.

    returns

    a string representation which starts the result of toString applied to this mutable indexed sequence. By default the string prefix is the simple name of the collection class mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).stringPrefix
    Definition Classes
    TraversableLikeGenTraversableLike
  695. def stringPrefix: String

    Permalink

    Defines the prefix of this object's toString representation.

    Defines the prefix of this object's toString representation.

    returns

    a string representation which starts the result of toString applied to this mutable indexed sequence. By default the string prefix is the simple name of the collection class mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).stringPrefix
    Definition Classes
    TraversableLikeGenTraversableLike
  696. def stringPrefix: String

    Permalink

    Defines the prefix of this object's toString representation.

    Defines the prefix of this object's toString representation.

    returns

    a string representation which starts the result of toString applied to this mutable indexed sequence. By default the string prefix is the simple name of the collection class mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).stringPrefix
    Definition Classes
    TraversableLikeGenTraversableLike
  697. def stringPrefix: String

    Permalink

    Defines the prefix of this object's toString representation.

    Defines the prefix of this object's toString representation.

    returns

    a string representation which starts the result of toString applied to this mutable indexed sequence. By default the string prefix is the simple name of the collection class mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).stringPrefix
    Definition Classes
    TraversableLikeGenTraversableLike
  698. def stringPrefix: String

    Permalink

    Defines the prefix of this object's toString representation.

    Defines the prefix of this object's toString representation.

    returns

    a string representation which starts the result of toString applied to this mutable indexed sequence. By default the string prefix is the simple name of the collection class mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).stringPrefix
    Definition Classes
    TraversableLikeGenTraversableLike
  699. def sum: A

    Permalink

    [use case] Sums up the elements of this collection.

    [use case]

    Sums up the elements of this collection.

    returns

    the sum of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of sum. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).sum
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def sum[B >: A](implicit num: Numeric[B]): B

  700. def sum: A

    Permalink

    [use case] Sums up the elements of this collection.

    [use case]

    Sums up the elements of this collection.

    returns

    the sum of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of sum. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).sum
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def sum[B >: A](implicit num: Numeric[B]): B

  701. def sum: A

    Permalink

    [use case] Sums up the elements of this collection.

    [use case]

    Sums up the elements of this collection.

    returns

    the sum of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of sum. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).sum
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def sum[B >: A](implicit num: Numeric[B]): B

  702. def sum: A

    Permalink

    [use case] Sums up the elements of this collection.

    [use case]

    Sums up the elements of this collection.

    returns

    the sum of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of sum. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).sum
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def sum[B >: A](implicit num: Numeric[B]): B

  703. def sum: A

    Permalink

    [use case] Sums up the elements of this collection.

    [use case]

    Sums up the elements of this collection.

    returns

    the sum of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of sum. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).sum
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def sum[B >: A](implicit num: Numeric[B]): B

  704. def sum: A

    Permalink

    [use case] Sums up the elements of this collection.

    [use case]

    Sums up the elements of this collection.

    returns

    the sum of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of sum. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).sum
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def sum[B >: A](implicit num: Numeric[B]): B

  705. def sum: A

    Permalink

    [use case] Sums up the elements of this collection.

    [use case]

    Sums up the elements of this collection.

    returns

    the sum of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of sum. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).sum
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def sum[B >: A](implicit num: Numeric[B]): B

  706. def sum: A

    Permalink

    [use case] Sums up the elements of this collection.

    [use case]

    Sums up the elements of this collection.

    returns

    the sum of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of sum. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).sum
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def sum[B >: A](implicit num: Numeric[B]): B

  707. def sum: A

    Permalink

    [use case] Sums up the elements of this collection.

    [use case]

    Sums up the elements of this collection.

    returns

    the sum of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of sum. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).sum
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def sum[B >: A](implicit num: Numeric[B]): B

  708. def sum: A

    Permalink

    [use case] Sums up the elements of this collection.

    [use case]

    Sums up the elements of this collection.

    returns

    the sum of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of sum. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).sum
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def sum[B >: A](implicit num: Numeric[B]): B

  709. def sum: A

    Permalink

    [use case] Sums up the elements of this collection.

    [use case]

    Sums up the elements of this collection.

    returns

    the sum of all elements in this array of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the array and as result type of sum. Examples of such types are: Long, Float, Double, BigInt.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).sum
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def sum[B >: A](implicit num: Numeric[B]): B

  710. def tail: Array[Unit]

    Permalink

    Selects all elements except the first.

    Selects all elements except the first.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).tail
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    `UnsupportedOperationException` if the mutable indexed sequence is empty.

  711. def tail: Array[Short]

    Permalink

    Selects all elements except the first.

    Selects all elements except the first.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).tail
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    `UnsupportedOperationException` if the mutable indexed sequence is empty.

  712. def tail: Array[T]

    Permalink

    Selects all elements except the first.

    Selects all elements except the first.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).tail
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    `UnsupportedOperationException` if the mutable indexed sequence is empty.

  713. def tail: Array[Long]

    Permalink

    Selects all elements except the first.

    Selects all elements except the first.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).tail
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    `UnsupportedOperationException` if the mutable indexed sequence is empty.

  714. def tail: Array[Int]

    Permalink

    Selects all elements except the first.

    Selects all elements except the first.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).tail
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    `UnsupportedOperationException` if the mutable indexed sequence is empty.

  715. def tail: Array[Float]

    Permalink

    Selects all elements except the first.

    Selects all elements except the first.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).tail
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    `UnsupportedOperationException` if the mutable indexed sequence is empty.

  716. def tail: Array[Double]

    Permalink

    Selects all elements except the first.

    Selects all elements except the first.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).tail
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    `UnsupportedOperationException` if the mutable indexed sequence is empty.

  717. def tail: Array[Char]

    Permalink

    Selects all elements except the first.

    Selects all elements except the first.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).tail
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    `UnsupportedOperationException` if the mutable indexed sequence is empty.

  718. def tail: Array[Byte]

    Permalink

    Selects all elements except the first.

    Selects all elements except the first.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).tail
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    `UnsupportedOperationException` if the mutable indexed sequence is empty.

  719. def tail: Array[Boolean]

    Permalink

    Selects all elements except the first.

    Selects all elements except the first.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).tail
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    `UnsupportedOperationException` if the mutable indexed sequence is empty.

  720. def tail: Array[T]

    Permalink

    Selects all elements except the first.

    Selects all elements except the first.

    returns

    a mutable indexed sequence consisting of all elements of this mutable indexed sequence except the first one.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).tail
    Definition Classes
    IndexedSeqOptimizedTraversableLikeGenTraversableLike
    Exceptions thrown

    `UnsupportedOperationException` if the mutable indexed sequence is empty.

  721. def tails: collection.Iterator[Array[Unit]]

    Permalink

    Iterates over the tails of this mutable indexed sequence.

    Iterates over the tails of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of tail.

    returns

    an iterator over all the tails of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).tails
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).tails = Iterator(List(1,2,3), List(2,3), List(3), Nil)

  722. def tails: collection.Iterator[Array[Short]]

    Permalink

    Iterates over the tails of this mutable indexed sequence.

    Iterates over the tails of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of tail.

    returns

    an iterator over all the tails of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).tails
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).tails = Iterator(List(1,2,3), List(2,3), List(3), Nil)

  723. def tails: collection.Iterator[Array[T]]

    Permalink

    Iterates over the tails of this mutable indexed sequence.

    Iterates over the tails of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of tail.

    returns

    an iterator over all the tails of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).tails
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).tails = Iterator(List(1,2,3), List(2,3), List(3), Nil)

  724. def tails: collection.Iterator[Array[Long]]

    Permalink

    Iterates over the tails of this mutable indexed sequence.

    Iterates over the tails of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of tail.

    returns

    an iterator over all the tails of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).tails
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).tails = Iterator(List(1,2,3), List(2,3), List(3), Nil)

  725. def tails: collection.Iterator[Array[Int]]

    Permalink

    Iterates over the tails of this mutable indexed sequence.

    Iterates over the tails of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of tail.

    returns

    an iterator over all the tails of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).tails
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).tails = Iterator(List(1,2,3), List(2,3), List(3), Nil)

  726. def tails: collection.Iterator[Array[Float]]

    Permalink

    Iterates over the tails of this mutable indexed sequence.

    Iterates over the tails of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of tail.

    returns

    an iterator over all the tails of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).tails
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).tails = Iterator(List(1,2,3), List(2,3), List(3), Nil)

  727. def tails: collection.Iterator[Array[Double]]

    Permalink

    Iterates over the tails of this mutable indexed sequence.

    Iterates over the tails of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of tail.

    returns

    an iterator over all the tails of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).tails
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).tails = Iterator(List(1,2,3), List(2,3), List(3), Nil)

  728. def tails: collection.Iterator[Array[Char]]

    Permalink

    Iterates over the tails of this mutable indexed sequence.

    Iterates over the tails of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of tail.

    returns

    an iterator over all the tails of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).tails
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).tails = Iterator(List(1,2,3), List(2,3), List(3), Nil)

  729. def tails: collection.Iterator[Array[Byte]]

    Permalink

    Iterates over the tails of this mutable indexed sequence.

    Iterates over the tails of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of tail.

    returns

    an iterator over all the tails of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).tails
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).tails = Iterator(List(1,2,3), List(2,3), List(3), Nil)

  730. def tails: collection.Iterator[Array[Boolean]]

    Permalink

    Iterates over the tails of this mutable indexed sequence.

    Iterates over the tails of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of tail.

    returns

    an iterator over all the tails of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).tails
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).tails = Iterator(List(1,2,3), List(2,3), List(3), Nil)

  731. def tails: collection.Iterator[Array[T]]

    Permalink

    Iterates over the tails of this mutable indexed sequence.

    Iterates over the tails of this mutable indexed sequence. The first value will be this mutable indexed sequence and the final one will be an empty mutable indexed sequence, with the intervening values the results of successive applications of tail.

    returns

    an iterator over all the tails of this mutable indexed sequence

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).tails
    Definition Classes
    TraversableLike
    Example:
    1. List(1,2,3).tails = Iterator(List(1,2,3), List(2,3), List(3), Nil)

  732. def take(n: Int): Array[Unit]

    Permalink

    Selects first n elements.

    Selects first n elements.

    n

    the number of elements to take from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting only of the first n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).take(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  733. def take(n: Int): Array[Short]

    Permalink

    Selects first n elements.

    Selects first n elements.

    n

    the number of elements to take from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting only of the first n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).take(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  734. def take(n: Int): Array[T]

    Permalink

    Selects first n elements.

    Selects first n elements.

    n

    the number of elements to take from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting only of the first n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).take(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  735. def take(n: Int): Array[Long]

    Permalink

    Selects first n elements.

    Selects first n elements.

    n

    the number of elements to take from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting only of the first n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).take(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  736. def take(n: Int): Array[Int]

    Permalink

    Selects first n elements.

    Selects first n elements.

    n

    the number of elements to take from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting only of the first n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).take(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  737. def take(n: Int): Array[Float]

    Permalink

    Selects first n elements.

    Selects first n elements.

    n

    the number of elements to take from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting only of the first n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).take(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  738. def take(n: Int): Array[Double]

    Permalink

    Selects first n elements.

    Selects first n elements.

    n

    the number of elements to take from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting only of the first n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).take(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  739. def take(n: Int): Array[Char]

    Permalink

    Selects first n elements.

    Selects first n elements.

    n

    the number of elements to take from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting only of the first n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).take(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  740. def take(n: Int): Array[Byte]

    Permalink

    Selects first n elements.

    Selects first n elements.

    n

    the number of elements to take from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting only of the first n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).take(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  741. def take(n: Int): Array[Boolean]

    Permalink

    Selects first n elements.

    Selects first n elements.

    n

    the number of elements to take from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting only of the first n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).take(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  742. def take(n: Int): Array[T]

    Permalink

    Selects first n elements.

    Selects first n elements.

    n

    the number of elements to take from this mutable indexed sequence.

    returns

    a mutable indexed sequence consisting only of the first n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).take(n)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  743. def takeRight(n: Int): Array[Unit]

    Permalink

    Selects last n elements.

    Selects last n elements.

    n

    the number of elements to take

    returns

    a mutable indexed sequence consisting only of the last n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).takeRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  744. def takeRight(n: Int): Array[Short]

    Permalink

    Selects last n elements.

    Selects last n elements.

    n

    the number of elements to take

    returns

    a mutable indexed sequence consisting only of the last n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).takeRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  745. def takeRight(n: Int): Array[T]

    Permalink

    Selects last n elements.

    Selects last n elements.

    n

    the number of elements to take

    returns

    a mutable indexed sequence consisting only of the last n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).takeRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  746. def takeRight(n: Int): Array[Long]

    Permalink

    Selects last n elements.

    Selects last n elements.

    n

    the number of elements to take

    returns

    a mutable indexed sequence consisting only of the last n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).takeRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  747. def takeRight(n: Int): Array[Int]

    Permalink

    Selects last n elements.

    Selects last n elements.

    n

    the number of elements to take

    returns

    a mutable indexed sequence consisting only of the last n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).takeRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  748. def takeRight(n: Int): Array[Float]

    Permalink

    Selects last n elements.

    Selects last n elements.

    n

    the number of elements to take

    returns

    a mutable indexed sequence consisting only of the last n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).takeRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  749. def takeRight(n: Int): Array[Double]

    Permalink

    Selects last n elements.

    Selects last n elements.

    n

    the number of elements to take

    returns

    a mutable indexed sequence consisting only of the last n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).takeRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  750. def takeRight(n: Int): Array[Char]

    Permalink

    Selects last n elements.

    Selects last n elements.

    n

    the number of elements to take

    returns

    a mutable indexed sequence consisting only of the last n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).takeRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  751. def takeRight(n: Int): Array[Byte]

    Permalink

    Selects last n elements.

    Selects last n elements.

    n

    the number of elements to take

    returns

    a mutable indexed sequence consisting only of the last n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).takeRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  752. def takeRight(n: Int): Array[Boolean]

    Permalink

    Selects last n elements.

    Selects last n elements.

    n

    the number of elements to take

    returns

    a mutable indexed sequence consisting only of the last n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).takeRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  753. def takeRight(n: Int): Array[T]

    Permalink

    Selects last n elements.

    Selects last n elements.

    n

    the number of elements to take

    returns

    a mutable indexed sequence consisting only of the last n elements of this mutable indexed sequence, or else the whole mutable indexed sequence, if it has less than n elements.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).takeRight(n)
    Definition Classes
    IndexedSeqOptimizedIterableLike
  754. def takeWhile(p: (T) ⇒ Boolean): Array[T]

    Permalink

    Takes longest prefix of elements that satisfy a predicate.

    Takes longest prefix of elements that satisfy a predicate.

    returns

    the longest prefix of this mutable indexed sequence whose elements all satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).takeWhile(p)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  755. def takeWhile(p: (T) ⇒ Boolean): Array[T]

    Permalink

    Takes longest prefix of elements that satisfy a predicate.

    Takes longest prefix of elements that satisfy a predicate.

    returns

    the longest prefix of this mutable indexed sequence whose elements all satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).takeWhile(p)
    Definition Classes
    IndexedSeqOptimizedIterableLikeTraversableLikeGenTraversableLike
  756. def to[Col[_]]: Col[A]

    Permalink

    [use case] Converts this array into another by copying all elements.

    [use case]

    Converts this array into another by copying all elements.

    Col

    The collection type to build.

    returns

    a new collection containing all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).to
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Unit, Col[Unit]]): Col[Unit]

  757. def to[Col[_]]: Col[A]

    Permalink

    [use case] Converts this array into another by copying all elements.

    [use case]

    Converts this array into another by copying all elements.

    Col

    The collection type to build.

    returns

    a new collection containing all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).to
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Short, Col[Short]]): Col[Short]

  758. def to[Col[_]]: Col[A]

    Permalink

    [use case] Converts this array into another by copying all elements.

    [use case]

    Converts this array into another by copying all elements.

    Col

    The collection type to build.

    returns

    a new collection containing all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).to
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, T, Col[T]]): Col[T]

  759. def to[Col[_]]: Col[A]

    Permalink

    [use case] Converts this array into another by copying all elements.

    [use case]

    Converts this array into another by copying all elements.

    Col

    The collection type to build.

    returns

    a new collection containing all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).to
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Long, Col[Long]]): Col[Long]

  760. def to[Col[_]]: Col[A]

    Permalink

    [use case] Converts this array into another by copying all elements.

    [use case]

    Converts this array into another by copying all elements.

    Col

    The collection type to build.

    returns

    a new collection containing all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).to
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Int, Col[Int]]): Col[Int]

  761. def to[Col[_]]: Col[A]

    Permalink

    [use case] Converts this array into another by copying all elements.

    [use case]

    Converts this array into another by copying all elements.

    Col

    The collection type to build.

    returns

    a new collection containing all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).to
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Float, Col[Float]]): Col[Float]

  762. def to[Col[_]]: Col[A]

    Permalink

    [use case] Converts this array into another by copying all elements.

    [use case]

    Converts this array into another by copying all elements.

    Col

    The collection type to build.

    returns

    a new collection containing all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).to
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Double, Col[Double]]): Col[Double]

  763. def to[Col[_]]: Col[A]

    Permalink

    [use case] Converts this array into another by copying all elements.

    [use case]

    Converts this array into another by copying all elements.

    Col

    The collection type to build.

    returns

    a new collection containing all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).to
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Char, Col[Char]]): Col[Char]

  764. def to[Col[_]]: Col[A]

    Permalink

    [use case] Converts this array into another by copying all elements.

    [use case]

    Converts this array into another by copying all elements.

    Col

    The collection type to build.

    returns

    a new collection containing all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).to
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Byte, Col[Byte]]): Col[Byte]

  765. def to[Col[_]]: Col[A]

    Permalink

    [use case] Converts this array into another by copying all elements.

    [use case]

    Converts this array into another by copying all elements.

    Col

    The collection type to build.

    returns

    a new collection containing all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).to
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Boolean, Col[Boolean]]): Col[Boolean]

  766. def to[Col[_]]: Col[A]

    Permalink

    [use case] Converts this array into another by copying all elements.

    [use case]

    Converts this array into another by copying all elements.

    Col

    The collection type to build.

    returns

    a new collection containing all elements of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).to
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Full Signature

    def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, T, Col[T]]): Col[T]

  767. def toArray: Array[A]

    Permalink

    [use case] Converts this array to an array.

    [use case]

    Converts this array to an array.

    returns

    an array containing all elements of this array. An ClassTag must be available for the element type of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).toArray
    Definition Classes
    ArrayOpsTraversableOnceGenTraversableOnce
    Full Signature

    def toArray[U >: T](implicit arg0: ClassTag[U]): Array[U]

  768. def toArray: Array[A]

    Permalink

    [use case] Converts this array to an array.

    [use case]

    Converts this array to an array.

    returns

    an array containing all elements of this array. An ClassTag must be available for the element type of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).toArray
    Definition Classes
    ArrayOpsTraversableOnceGenTraversableOnce
    Full Signature

    def toArray[U >: T](implicit arg0: ClassTag[U]): Array[U]

  769. def toArray: Array[A]

    Permalink

    [use case] Converts this array to an array.

    [use case]

    Converts this array to an array.

    returns

    an array containing all elements of this array. An ClassTag must be available for the element type of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).toArray
    Definition Classes
    ArrayOpsTraversableOnceGenTraversableOnce
    Full Signature

    def toArray[U >: T](implicit arg0: ClassTag[U]): Array[U]

  770. def toArray: Array[A]

    Permalink

    [use case] Converts this array to an array.

    [use case]

    Converts this array to an array.

    returns

    an array containing all elements of this array. An ClassTag must be available for the element type of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).toArray
    Definition Classes
    ArrayOpsTraversableOnceGenTraversableOnce
    Full Signature

    def toArray[U >: T](implicit arg0: ClassTag[U]): Array[U]

  771. def toArray: Array[A]

    Permalink

    [use case] Converts this array to an array.

    [use case]

    Converts this array to an array.

    returns

    an array containing all elements of this array. An ClassTag must be available for the element type of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).toArray
    Definition Classes
    ArrayOpsTraversableOnceGenTraversableOnce
    Full Signature

    def toArray[U >: T](implicit arg0: ClassTag[U]): Array[U]

  772. def toArray: Array[A]

    Permalink

    [use case] Converts this array to an array.

    [use case]

    Converts this array to an array.

    returns

    an array containing all elements of this array. An ClassTag must be available for the element type of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).toArray
    Definition Classes
    ArrayOpsTraversableOnceGenTraversableOnce
    Full Signature

    def toArray[U >: T](implicit arg0: ClassTag[U]): Array[U]

  773. def toArray: Array[A]

    Permalink

    [use case] Converts this array to an array.

    [use case]

    Converts this array to an array.

    returns

    an array containing all elements of this array. An ClassTag must be available for the element type of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).toArray
    Definition Classes
    ArrayOpsTraversableOnceGenTraversableOnce
    Full Signature

    def toArray[U >: T](implicit arg0: ClassTag[U]): Array[U]

  774. def toArray: Array[A]

    Permalink

    [use case] Converts this array to an array.

    [use case]

    Converts this array to an array.

    returns

    an array containing all elements of this array. An ClassTag must be available for the element type of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).toArray
    Definition Classes
    ArrayOpsTraversableOnceGenTraversableOnce
    Full Signature

    def toArray[U >: T](implicit arg0: ClassTag[U]): Array[U]

  775. def toArray: Array[A]

    Permalink

    [use case] Converts this array to an array.

    [use case]

    Converts this array to an array.

    returns

    an array containing all elements of this array. An ClassTag must be available for the element type of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).toArray
    Definition Classes
    ArrayOpsTraversableOnceGenTraversableOnce
    Full Signature

    def toArray[U >: T](implicit arg0: ClassTag[U]): Array[U]

  776. def toArray: Array[A]

    Permalink

    [use case] Converts this array to an array.

    [use case]

    Converts this array to an array.

    returns

    an array containing all elements of this array. An ClassTag must be available for the element type of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).toArray
    Definition Classes
    ArrayOpsTraversableOnceGenTraversableOnce
    Full Signature

    def toArray[U >: T](implicit arg0: ClassTag[U]): Array[U]

  777. def toArray: Array[A]

    Permalink

    [use case] Converts this array to an array.

    [use case]

    Converts this array to an array.

    returns

    an array containing all elements of this array. An ClassTag must be available for the element type of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).toArray
    Definition Classes
    ArrayOpsTraversableOnceGenTraversableOnce
    Full Signature

    def toArray[U >: T](implicit arg0: ClassTag[U]): Array[U]

  778. def toBuffer[A1 >: A]: Buffer[A1]

    Permalink

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    returns

    a buffer containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).toBuffer
    Definition Classes
    IndexedSeqLikeTraversableOnceGenTraversableOnce
  779. def toBuffer[A1 >: A]: Buffer[A1]

    Permalink

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    returns

    a buffer containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).toBuffer
    Definition Classes
    IndexedSeqLikeTraversableOnceGenTraversableOnce
  780. def toBuffer[A1 >: A]: Buffer[A1]

    Permalink

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    returns

    a buffer containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).toBuffer
    Definition Classes
    IndexedSeqLikeTraversableOnceGenTraversableOnce
  781. def toBuffer[A1 >: A]: Buffer[A1]

    Permalink

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    returns

    a buffer containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).toBuffer
    Definition Classes
    IndexedSeqLikeTraversableOnceGenTraversableOnce
  782. def toBuffer[A1 >: A]: Buffer[A1]

    Permalink

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    returns

    a buffer containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).toBuffer
    Definition Classes
    IndexedSeqLikeTraversableOnceGenTraversableOnce
  783. def toBuffer[A1 >: A]: Buffer[A1]

    Permalink

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    returns

    a buffer containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).toBuffer
    Definition Classes
    IndexedSeqLikeTraversableOnceGenTraversableOnce
  784. def toBuffer[A1 >: A]: Buffer[A1]

    Permalink

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    returns

    a buffer containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).toBuffer
    Definition Classes
    IndexedSeqLikeTraversableOnceGenTraversableOnce
  785. def toBuffer[A1 >: A]: Buffer[A1]

    Permalink

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    returns

    a buffer containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).toBuffer
    Definition Classes
    IndexedSeqLikeTraversableOnceGenTraversableOnce
  786. def toBuffer[A1 >: A]: Buffer[A1]

    Permalink

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    returns

    a buffer containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).toBuffer
    Definition Classes
    IndexedSeqLikeTraversableOnceGenTraversableOnce
  787. def toBuffer[A1 >: A]: Buffer[A1]

    Permalink

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    returns

    a buffer containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).toBuffer
    Definition Classes
    IndexedSeqLikeTraversableOnceGenTraversableOnce
  788. def toBuffer[A1 >: A]: Buffer[A1]

    Permalink

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    Uses the contents of this mutable indexed sequence to create a new mutable buffer.

    returns

    a buffer containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).toBuffer
    Definition Classes
    IndexedSeqLikeTraversableOnceGenTraversableOnce
  789. def toIndexedSeq: collection.immutable.IndexedSeq[Unit]

    Permalink

    Converts this mutable indexed sequence to an indexed sequence.

    Converts this mutable indexed sequence to an indexed sequence.

    returns

    an indexed sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).toIndexedSeq
    Definition Classes
    TraversableOnceGenTraversableOnce
  790. def toIndexedSeq: collection.immutable.IndexedSeq[Short]

    Permalink

    Converts this mutable indexed sequence to an indexed sequence.

    Converts this mutable indexed sequence to an indexed sequence.

    returns

    an indexed sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).toIndexedSeq
    Definition Classes
    TraversableOnceGenTraversableOnce
  791. def toIndexedSeq: collection.immutable.IndexedSeq[T]

    Permalink

    Converts this mutable indexed sequence to an indexed sequence.

    Converts this mutable indexed sequence to an indexed sequence.

    returns

    an indexed sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).toIndexedSeq
    Definition Classes
    TraversableOnceGenTraversableOnce
  792. def toIndexedSeq: collection.immutable.IndexedSeq[Long]

    Permalink

    Converts this mutable indexed sequence to an indexed sequence.

    Converts this mutable indexed sequence to an indexed sequence.

    returns

    an indexed sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).toIndexedSeq
    Definition Classes
    TraversableOnceGenTraversableOnce
  793. def toIndexedSeq: collection.immutable.IndexedSeq[Int]

    Permalink

    Converts this mutable indexed sequence to an indexed sequence.

    Converts this mutable indexed sequence to an indexed sequence.

    returns

    an indexed sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).toIndexedSeq
    Definition Classes
    TraversableOnceGenTraversableOnce
  794. def toIndexedSeq: collection.immutable.IndexedSeq[Float]

    Permalink

    Converts this mutable indexed sequence to an indexed sequence.

    Converts this mutable indexed sequence to an indexed sequence.

    returns

    an indexed sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).toIndexedSeq
    Definition Classes
    TraversableOnceGenTraversableOnce
  795. def toIndexedSeq: collection.immutable.IndexedSeq[Double]

    Permalink

    Converts this mutable indexed sequence to an indexed sequence.

    Converts this mutable indexed sequence to an indexed sequence.

    returns

    an indexed sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).toIndexedSeq
    Definition Classes
    TraversableOnceGenTraversableOnce
  796. def toIndexedSeq: collection.immutable.IndexedSeq[Char]

    Permalink

    Converts this mutable indexed sequence to an indexed sequence.

    Converts this mutable indexed sequence to an indexed sequence.

    returns

    an indexed sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).toIndexedSeq
    Definition Classes
    TraversableOnceGenTraversableOnce
  797. def toIndexedSeq: collection.immutable.IndexedSeq[Byte]

    Permalink

    Converts this mutable indexed sequence to an indexed sequence.

    Converts this mutable indexed sequence to an indexed sequence.

    returns

    an indexed sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).toIndexedSeq
    Definition Classes
    TraversableOnceGenTraversableOnce
  798. def toIndexedSeq: collection.immutable.IndexedSeq[Boolean]

    Permalink

    Converts this mutable indexed sequence to an indexed sequence.

    Converts this mutable indexed sequence to an indexed sequence.

    returns

    an indexed sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).toIndexedSeq
    Definition Classes
    TraversableOnceGenTraversableOnce
  799. def toIndexedSeq: collection.immutable.IndexedSeq[T]

    Permalink

    Converts this mutable indexed sequence to an indexed sequence.

    Converts this mutable indexed sequence to an indexed sequence.

    returns

    an indexed sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).toIndexedSeq
    Definition Classes
    TraversableOnceGenTraversableOnce
  800. def toIterable: collection.Iterable[Unit]

    Permalink

    Returns this mutable indexed sequence as an iterable collection.

    Returns this mutable indexed sequence as an iterable collection.

    A new collection will not be built; lazy collections will stay lazy.

    returns

    an Iterable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).toIterable
    Definition Classes
    IterableLikeTraversableOnceGenTraversableOnce
  801. def toIterable: collection.Iterable[Short]

    Permalink

    Returns this mutable indexed sequence as an iterable collection.

    Returns this mutable indexed sequence as an iterable collection.

    A new collection will not be built; lazy collections will stay lazy.

    returns

    an Iterable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).toIterable
    Definition Classes
    IterableLikeTraversableOnceGenTraversableOnce
  802. def toIterable: collection.Iterable[T]

    Permalink

    Returns this mutable indexed sequence as an iterable collection.

    Returns this mutable indexed sequence as an iterable collection.

    A new collection will not be built; lazy collections will stay lazy.

    returns

    an Iterable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).toIterable
    Definition Classes
    IterableLikeTraversableOnceGenTraversableOnce
  803. def toIterable: collection.Iterable[Long]

    Permalink

    Returns this mutable indexed sequence as an iterable collection.

    Returns this mutable indexed sequence as an iterable collection.

    A new collection will not be built; lazy collections will stay lazy.

    returns

    an Iterable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).toIterable
    Definition Classes
    IterableLikeTraversableOnceGenTraversableOnce
  804. def toIterable: collection.Iterable[Int]

    Permalink

    Returns this mutable indexed sequence as an iterable collection.

    Returns this mutable indexed sequence as an iterable collection.

    A new collection will not be built; lazy collections will stay lazy.

    returns

    an Iterable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).toIterable
    Definition Classes
    IterableLikeTraversableOnceGenTraversableOnce
  805. def toIterable: collection.Iterable[Float]

    Permalink

    Returns this mutable indexed sequence as an iterable collection.

    Returns this mutable indexed sequence as an iterable collection.

    A new collection will not be built; lazy collections will stay lazy.

    returns

    an Iterable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).toIterable
    Definition Classes
    IterableLikeTraversableOnceGenTraversableOnce
  806. def toIterable: collection.Iterable[Double]

    Permalink

    Returns this mutable indexed sequence as an iterable collection.

    Returns this mutable indexed sequence as an iterable collection.

    A new collection will not be built; lazy collections will stay lazy.

    returns

    an Iterable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).toIterable
    Definition Classes
    IterableLikeTraversableOnceGenTraversableOnce
  807. def toIterable: collection.Iterable[Char]

    Permalink

    Returns this mutable indexed sequence as an iterable collection.

    Returns this mutable indexed sequence as an iterable collection.

    A new collection will not be built; lazy collections will stay lazy.

    returns

    an Iterable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).toIterable
    Definition Classes
    IterableLikeTraversableOnceGenTraversableOnce
  808. def toIterable: collection.Iterable[Byte]

    Permalink

    Returns this mutable indexed sequence as an iterable collection.

    Returns this mutable indexed sequence as an iterable collection.

    A new collection will not be built; lazy collections will stay lazy.

    returns

    an Iterable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).toIterable
    Definition Classes
    IterableLikeTraversableOnceGenTraversableOnce
  809. def toIterable: collection.Iterable[Boolean]

    Permalink

    Returns this mutable indexed sequence as an iterable collection.

    Returns this mutable indexed sequence as an iterable collection.

    A new collection will not be built; lazy collections will stay lazy.

    returns

    an Iterable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).toIterable
    Definition Classes
    IterableLikeTraversableOnceGenTraversableOnce
  810. def toIterable: collection.Iterable[T]

    Permalink

    Returns this mutable indexed sequence as an iterable collection.

    Returns this mutable indexed sequence as an iterable collection.

    A new collection will not be built; lazy collections will stay lazy.

    returns

    an Iterable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).toIterable
    Definition Classes
    IterableLikeTraversableOnceGenTraversableOnce
  811. def toIterator: collection.Iterator[Unit]

    Permalink

    Returns an Iterator over the elements in this mutable indexed sequence.

    Returns an Iterator over the elements in this mutable indexed sequence. Produces the same result as iterator.

    returns

    an Iterator containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).toIterator
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  812. def toIterator: collection.Iterator[Short]

    Permalink

    Returns an Iterator over the elements in this mutable indexed sequence.

    Returns an Iterator over the elements in this mutable indexed sequence. Produces the same result as iterator.

    returns

    an Iterator containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).toIterator
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  813. def toIterator: collection.Iterator[T]

    Permalink

    Returns an Iterator over the elements in this mutable indexed sequence.

    Returns an Iterator over the elements in this mutable indexed sequence. Produces the same result as iterator.

    returns

    an Iterator containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).toIterator
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  814. def toIterator: collection.Iterator[Long]

    Permalink

    Returns an Iterator over the elements in this mutable indexed sequence.

    Returns an Iterator over the elements in this mutable indexed sequence. Produces the same result as iterator.

    returns

    an Iterator containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).toIterator
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  815. def toIterator: collection.Iterator[Int]

    Permalink

    Returns an Iterator over the elements in this mutable indexed sequence.

    Returns an Iterator over the elements in this mutable indexed sequence. Produces the same result as iterator.

    returns

    an Iterator containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).toIterator
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  816. def toIterator: collection.Iterator[Float]

    Permalink

    Returns an Iterator over the elements in this mutable indexed sequence.

    Returns an Iterator over the elements in this mutable indexed sequence. Produces the same result as iterator.

    returns

    an Iterator containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).toIterator
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  817. def toIterator: collection.Iterator[Double]

    Permalink

    Returns an Iterator over the elements in this mutable indexed sequence.

    Returns an Iterator over the elements in this mutable indexed sequence. Produces the same result as iterator.

    returns

    an Iterator containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).toIterator
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  818. def toIterator: collection.Iterator[Char]

    Permalink

    Returns an Iterator over the elements in this mutable indexed sequence.

    Returns an Iterator over the elements in this mutable indexed sequence. Produces the same result as iterator.

    returns

    an Iterator containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).toIterator
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  819. def toIterator: collection.Iterator[Byte]

    Permalink

    Returns an Iterator over the elements in this mutable indexed sequence.

    Returns an Iterator over the elements in this mutable indexed sequence. Produces the same result as iterator.

    returns

    an Iterator containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).toIterator
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  820. def toIterator: collection.Iterator[Boolean]

    Permalink

    Returns an Iterator over the elements in this mutable indexed sequence.

    Returns an Iterator over the elements in this mutable indexed sequence. Produces the same result as iterator.

    returns

    an Iterator containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).toIterator
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  821. def toIterator: collection.Iterator[T]

    Permalink

    Returns an Iterator over the elements in this mutable indexed sequence.

    Returns an Iterator over the elements in this mutable indexed sequence. Produces the same result as iterator.

    returns

    an Iterator containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).toIterator
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  822. def toList: List[Unit]

    Permalink

    Converts this mutable indexed sequence to a list.

    Converts this mutable indexed sequence to a list.

    returns

    a list containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).toList
    Definition Classes
    TraversableOnceGenTraversableOnce
  823. def toList: List[Short]

    Permalink

    Converts this mutable indexed sequence to a list.

    Converts this mutable indexed sequence to a list.

    returns

    a list containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).toList
    Definition Classes
    TraversableOnceGenTraversableOnce
  824. def toList: List[T]

    Permalink

    Converts this mutable indexed sequence to a list.

    Converts this mutable indexed sequence to a list.

    returns

    a list containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).toList
    Definition Classes
    TraversableOnceGenTraversableOnce
  825. def toList: List[Long]

    Permalink

    Converts this mutable indexed sequence to a list.

    Converts this mutable indexed sequence to a list.

    returns

    a list containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).toList
    Definition Classes
    TraversableOnceGenTraversableOnce
  826. def toList: List[Int]

    Permalink

    Converts this mutable indexed sequence to a list.

    Converts this mutable indexed sequence to a list.

    returns

    a list containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).toList
    Definition Classes
    TraversableOnceGenTraversableOnce
  827. def toList: List[Float]

    Permalink

    Converts this mutable indexed sequence to a list.

    Converts this mutable indexed sequence to a list.

    returns

    a list containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).toList
    Definition Classes
    TraversableOnceGenTraversableOnce
  828. def toList: List[Double]

    Permalink

    Converts this mutable indexed sequence to a list.

    Converts this mutable indexed sequence to a list.

    returns

    a list containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).toList
    Definition Classes
    TraversableOnceGenTraversableOnce
  829. def toList: List[Char]

    Permalink

    Converts this mutable indexed sequence to a list.

    Converts this mutable indexed sequence to a list.

    returns

    a list containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).toList
    Definition Classes
    TraversableOnceGenTraversableOnce
  830. def toList: List[Byte]

    Permalink

    Converts this mutable indexed sequence to a list.

    Converts this mutable indexed sequence to a list.

    returns

    a list containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).toList
    Definition Classes
    TraversableOnceGenTraversableOnce
  831. def toList: List[Boolean]

    Permalink

    Converts this mutable indexed sequence to a list.

    Converts this mutable indexed sequence to a list.

    returns

    a list containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).toList
    Definition Classes
    TraversableOnceGenTraversableOnce
  832. def toList: List[T]

    Permalink

    Converts this mutable indexed sequence to a list.

    Converts this mutable indexed sequence to a list.

    returns

    a list containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).toList
    Definition Classes
    TraversableOnceGenTraversableOnce
  833. def toMap[T, U]: Map[T, U]

    Permalink

    [use case] Converts this array to a map.

    [use case]

    Converts this array to a map. This method is unavailable unless the elements are members of Tuple2, each ((T, U)) becoming a key-value pair in the map. Duplicate keys will be overwritten by later keys: if this is an unordered collection, which key is in the resulting map is undefined.

    returns

    a map of type immutable.Map[T, U] containing all key/value pairs of type (T, U) of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).toMap
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def toMap[T, U](implicit ev: <:<[Unit, (T, U)]): Map[T, U]

  834. def toMap[T, U]: Map[T, U]

    Permalink

    [use case] Converts this array to a map.

    [use case]

    Converts this array to a map. This method is unavailable unless the elements are members of Tuple2, each ((T, U)) becoming a key-value pair in the map. Duplicate keys will be overwritten by later keys: if this is an unordered collection, which key is in the resulting map is undefined.

    returns

    a map of type immutable.Map[T, U] containing all key/value pairs of type (T, U) of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).toMap
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def toMap[T, U](implicit ev: <:<[Short, (T, U)]): Map[T, U]

  835. def toMap[T, U]: Map[T, U]

    Permalink

    [use case] Converts this array to a map.

    [use case]

    Converts this array to a map. This method is unavailable unless the elements are members of Tuple2, each ((T, U)) becoming a key-value pair in the map. Duplicate keys will be overwritten by later keys: if this is an unordered collection, which key is in the resulting map is undefined.

    returns

    a map of type immutable.Map[T, U] containing all key/value pairs of type (T, U) of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).toMap
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def toMap[T, U](implicit ev: <:<[T, (T, U)]): Map[T, U]

  836. def toMap[T, U]: Map[T, U]

    Permalink

    [use case] Converts this array to a map.

    [use case]

    Converts this array to a map. This method is unavailable unless the elements are members of Tuple2, each ((T, U)) becoming a key-value pair in the map. Duplicate keys will be overwritten by later keys: if this is an unordered collection, which key is in the resulting map is undefined.

    returns

    a map of type immutable.Map[T, U] containing all key/value pairs of type (T, U) of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).toMap
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def toMap[T, U](implicit ev: <:<[Long, (T, U)]): Map[T, U]

  837. def toMap[T, U]: Map[T, U]

    Permalink

    [use case] Converts this array to a map.

    [use case]

    Converts this array to a map. This method is unavailable unless the elements are members of Tuple2, each ((T, U)) becoming a key-value pair in the map. Duplicate keys will be overwritten by later keys: if this is an unordered collection, which key is in the resulting map is undefined.

    returns

    a map of type immutable.Map[T, U] containing all key/value pairs of type (T, U) of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).toMap
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def toMap[T, U](implicit ev: <:<[Int, (T, U)]): Map[T, U]

  838. def toMap[T, U]: Map[T, U]

    Permalink

    [use case] Converts this array to a map.

    [use case]

    Converts this array to a map. This method is unavailable unless the elements are members of Tuple2, each ((T, U)) becoming a key-value pair in the map. Duplicate keys will be overwritten by later keys: if this is an unordered collection, which key is in the resulting map is undefined.

    returns

    a map of type immutable.Map[T, U] containing all key/value pairs of type (T, U) of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).toMap
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def toMap[T, U](implicit ev: <:<[Float, (T, U)]): Map[T, U]

  839. def toMap[T, U]: Map[T, U]

    Permalink

    [use case] Converts this array to a map.

    [use case]

    Converts this array to a map. This method is unavailable unless the elements are members of Tuple2, each ((T, U)) becoming a key-value pair in the map. Duplicate keys will be overwritten by later keys: if this is an unordered collection, which key is in the resulting map is undefined.

    returns

    a map of type immutable.Map[T, U] containing all key/value pairs of type (T, U) of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).toMap
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def toMap[T, U](implicit ev: <:<[Double, (T, U)]): Map[T, U]

  840. def toMap[T, U]: Map[T, U]

    Permalink

    [use case] Converts this array to a map.

    [use case]

    Converts this array to a map. This method is unavailable unless the elements are members of Tuple2, each ((T, U)) becoming a key-value pair in the map. Duplicate keys will be overwritten by later keys: if this is an unordered collection, which key is in the resulting map is undefined.

    returns

    a map of type immutable.Map[T, U] containing all key/value pairs of type (T, U) of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).toMap
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def toMap[T, U](implicit ev: <:<[Char, (T, U)]): Map[T, U]

  841. def toMap[T, U]: Map[T, U]

    Permalink

    [use case] Converts this array to a map.

    [use case]

    Converts this array to a map. This method is unavailable unless the elements are members of Tuple2, each ((T, U)) becoming a key-value pair in the map. Duplicate keys will be overwritten by later keys: if this is an unordered collection, which key is in the resulting map is undefined.

    returns

    a map of type immutable.Map[T, U] containing all key/value pairs of type (T, U) of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).toMap
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def toMap[T, U](implicit ev: <:<[Byte, (T, U)]): Map[T, U]

  842. def toMap[T, U]: Map[T, U]

    Permalink

    [use case] Converts this array to a map.

    [use case]

    Converts this array to a map. This method is unavailable unless the elements are members of Tuple2, each ((T, U)) becoming a key-value pair in the map. Duplicate keys will be overwritten by later keys: if this is an unordered collection, which key is in the resulting map is undefined.

    returns

    a map of type immutable.Map[T, U] containing all key/value pairs of type (T, U) of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).toMap
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def toMap[T, U](implicit ev: <:<[Boolean, (T, U)]): Map[T, U]

  843. def toMap[T, U]: Map[T, U]

    Permalink

    [use case] Converts this array to a map.

    [use case]

    Converts this array to a map. This method is unavailable unless the elements are members of Tuple2, each ((T, U)) becoming a key-value pair in the map. Duplicate keys will be overwritten by later keys: if this is an unordered collection, which key is in the resulting map is undefined.

    returns

    a map of type immutable.Map[T, U] containing all key/value pairs of type (T, U) of this array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).toMap
    Definition Classes
    TraversableOnceGenTraversableOnce
    Full Signature

    def toMap[T, U](implicit ev: <:<[T, (T, U)]): Map[T, U]

  844. def toSeq: collection.Seq[Unit]

    Permalink

    Converts this mutable indexed sequence to a sequence.

    Converts this mutable indexed sequence to a sequence.

    A new collection will not be built; in particular, lazy sequences will stay lazy.

    returns

    a sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).toSeq
    Definition Classes
    SeqLikeGenSeqLikeTraversableOnceGenTraversableOnce
  845. def toSeq: collection.Seq[Short]

    Permalink

    Converts this mutable indexed sequence to a sequence.

    Converts this mutable indexed sequence to a sequence.

    A new collection will not be built; in particular, lazy sequences will stay lazy.

    returns

    a sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).toSeq
    Definition Classes
    SeqLikeGenSeqLikeTraversableOnceGenTraversableOnce
  846. def toSeq: collection.Seq[T]

    Permalink

    Converts this mutable indexed sequence to a sequence.

    Converts this mutable indexed sequence to a sequence.

    A new collection will not be built; in particular, lazy sequences will stay lazy.

    returns

    a sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).toSeq
    Definition Classes
    SeqLikeGenSeqLikeTraversableOnceGenTraversableOnce
  847. def toSeq: collection.Seq[Long]

    Permalink

    Converts this mutable indexed sequence to a sequence.

    Converts this mutable indexed sequence to a sequence.

    A new collection will not be built; in particular, lazy sequences will stay lazy.

    returns

    a sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).toSeq
    Definition Classes
    SeqLikeGenSeqLikeTraversableOnceGenTraversableOnce
  848. def toSeq: collection.Seq[Int]

    Permalink

    Converts this mutable indexed sequence to a sequence.

    Converts this mutable indexed sequence to a sequence.

    A new collection will not be built; in particular, lazy sequences will stay lazy.

    returns

    a sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).toSeq
    Definition Classes
    SeqLikeGenSeqLikeTraversableOnceGenTraversableOnce
  849. def toSeq: collection.Seq[Float]

    Permalink

    Converts this mutable indexed sequence to a sequence.

    Converts this mutable indexed sequence to a sequence.

    A new collection will not be built; in particular, lazy sequences will stay lazy.

    returns

    a sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).toSeq
    Definition Classes
    SeqLikeGenSeqLikeTraversableOnceGenTraversableOnce
  850. def toSeq: collection.Seq[Double]

    Permalink

    Converts this mutable indexed sequence to a sequence.

    Converts this mutable indexed sequence to a sequence.

    A new collection will not be built; in particular, lazy sequences will stay lazy.

    returns

    a sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).toSeq
    Definition Classes
    SeqLikeGenSeqLikeTraversableOnceGenTraversableOnce
  851. def toSeq: collection.Seq[Char]

    Permalink

    Converts this mutable indexed sequence to a sequence.

    Converts this mutable indexed sequence to a sequence.

    A new collection will not be built; in particular, lazy sequences will stay lazy.

    returns

    a sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).toSeq
    Definition Classes
    SeqLikeGenSeqLikeTraversableOnceGenTraversableOnce
  852. def toSeq: collection.Seq[Byte]

    Permalink

    Converts this mutable indexed sequence to a sequence.

    Converts this mutable indexed sequence to a sequence.

    A new collection will not be built; in particular, lazy sequences will stay lazy.

    returns

    a sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).toSeq
    Definition Classes
    SeqLikeGenSeqLikeTraversableOnceGenTraversableOnce
  853. def toSeq: collection.Seq[Boolean]

    Permalink

    Converts this mutable indexed sequence to a sequence.

    Converts this mutable indexed sequence to a sequence.

    A new collection will not be built; in particular, lazy sequences will stay lazy.

    returns

    a sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).toSeq
    Definition Classes
    SeqLikeGenSeqLikeTraversableOnceGenTraversableOnce
  854. def toSeq: collection.Seq[T]

    Permalink

    Converts this mutable indexed sequence to a sequence.

    Converts this mutable indexed sequence to a sequence.

    A new collection will not be built; in particular, lazy sequences will stay lazy.

    returns

    a sequence containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).toSeq
    Definition Classes
    SeqLikeGenSeqLikeTraversableOnceGenTraversableOnce
  855. def toSet[B >: A]: Set[B]

    Permalink

    Converts this mutable indexed sequence to a set.

    Converts this mutable indexed sequence to a set.

    returns

    a set containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).toSet
    Definition Classes
    TraversableOnceGenTraversableOnce
  856. def toSet[B >: A]: Set[B]

    Permalink

    Converts this mutable indexed sequence to a set.

    Converts this mutable indexed sequence to a set.

    returns

    a set containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).toSet
    Definition Classes
    TraversableOnceGenTraversableOnce
  857. def toSet[B >: A]: Set[B]

    Permalink

    Converts this mutable indexed sequence to a set.

    Converts this mutable indexed sequence to a set.

    returns

    a set containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).toSet
    Definition Classes
    TraversableOnceGenTraversableOnce
  858. def toSet[B >: A]: Set[B]

    Permalink

    Converts this mutable indexed sequence to a set.

    Converts this mutable indexed sequence to a set.

    returns

    a set containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).toSet
    Definition Classes
    TraversableOnceGenTraversableOnce
  859. def toSet[B >: A]: Set[B]

    Permalink

    Converts this mutable indexed sequence to a set.

    Converts this mutable indexed sequence to a set.

    returns

    a set containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).toSet
    Definition Classes
    TraversableOnceGenTraversableOnce
  860. def toSet[B >: A]: Set[B]

    Permalink

    Converts this mutable indexed sequence to a set.

    Converts this mutable indexed sequence to a set.

    returns

    a set containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).toSet
    Definition Classes
    TraversableOnceGenTraversableOnce
  861. def toSet[B >: A]: Set[B]

    Permalink

    Converts this mutable indexed sequence to a set.

    Converts this mutable indexed sequence to a set.

    returns

    a set containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).toSet
    Definition Classes
    TraversableOnceGenTraversableOnce
  862. def toSet[B >: A]: Set[B]

    Permalink

    Converts this mutable indexed sequence to a set.

    Converts this mutable indexed sequence to a set.

    returns

    a set containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).toSet
    Definition Classes
    TraversableOnceGenTraversableOnce
  863. def toSet[B >: A]: Set[B]

    Permalink

    Converts this mutable indexed sequence to a set.

    Converts this mutable indexed sequence to a set.

    returns

    a set containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).toSet
    Definition Classes
    TraversableOnceGenTraversableOnce
  864. def toSet[B >: A]: Set[B]

    Permalink

    Converts this mutable indexed sequence to a set.

    Converts this mutable indexed sequence to a set.

    returns

    a set containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).toSet
    Definition Classes
    TraversableOnceGenTraversableOnce
  865. def toSet[B >: A]: Set[B]

    Permalink

    Converts this mutable indexed sequence to a set.

    Converts this mutable indexed sequence to a set.

    returns

    a set containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).toSet
    Definition Classes
    TraversableOnceGenTraversableOnce
  866. def toStream: collection.immutable.Stream[Unit]

    Permalink

    Converts this mutable indexed sequence to a stream.

    Converts this mutable indexed sequence to a stream.

    returns

    a stream containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).toStream
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
  867. def toStream: collection.immutable.Stream[Short]

    Permalink

    Converts this mutable indexed sequence to a stream.

    Converts this mutable indexed sequence to a stream.

    returns

    a stream containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).toStream
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
  868. def toStream: collection.immutable.Stream[T]

    Permalink

    Converts this mutable indexed sequence to a stream.

    Converts this mutable indexed sequence to a stream.

    returns

    a stream containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).toStream
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
  869. def toStream: collection.immutable.Stream[Long]

    Permalink

    Converts this mutable indexed sequence to a stream.

    Converts this mutable indexed sequence to a stream.

    returns

    a stream containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).toStream
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
  870. def toStream: collection.immutable.Stream[Int]

    Permalink

    Converts this mutable indexed sequence to a stream.

    Converts this mutable indexed sequence to a stream.

    returns

    a stream containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).toStream
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
  871. def toStream: collection.immutable.Stream[Float]

    Permalink

    Converts this mutable indexed sequence to a stream.

    Converts this mutable indexed sequence to a stream.

    returns

    a stream containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).toStream
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
  872. def toStream: collection.immutable.Stream[Double]

    Permalink

    Converts this mutable indexed sequence to a stream.

    Converts this mutable indexed sequence to a stream.

    returns

    a stream containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).toStream
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
  873. def toStream: collection.immutable.Stream[Char]

    Permalink

    Converts this mutable indexed sequence to a stream.

    Converts this mutable indexed sequence to a stream.

    returns

    a stream containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).toStream
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
  874. def toStream: collection.immutable.Stream[Byte]

    Permalink

    Converts this mutable indexed sequence to a stream.

    Converts this mutable indexed sequence to a stream.

    returns

    a stream containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).toStream
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
  875. def toStream: collection.immutable.Stream[Boolean]

    Permalink

    Converts this mutable indexed sequence to a stream.

    Converts this mutable indexed sequence to a stream.

    returns

    a stream containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).toStream
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
  876. def toStream: collection.immutable.Stream[T]

    Permalink

    Converts this mutable indexed sequence to a stream.

    Converts this mutable indexed sequence to a stream.

    returns

    a stream containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).toStream
    Definition Classes
    IterableLikeTraversableLikeGenTraversableOnce
  877. def toString(): String

    Permalink

    Converts this mutable indexed sequence to a string.

    Converts this mutable indexed sequence to a string.

    returns

    a string representation of this collection. By default this string consists of the stringPrefix of this mutable indexed sequence, followed by all elements separated by commas and enclosed in parentheses.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    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: ofUnit).toString()
    Definition Classes
    SeqLikeTraversableLikeAny
  878. def toString(): String

    Permalink

    Converts this mutable indexed sequence to a string.

    Converts this mutable indexed sequence to a string.

    returns

    a string representation of this collection. By default this string consists of the stringPrefix of this mutable indexed sequence, followed by all elements separated by commas and enclosed in parentheses.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    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: ofShort).toString()
    Definition Classes
    SeqLikeTraversableLikeAny
  879. def toString(): String

    Permalink

    Converts this mutable indexed sequence to a string.

    Converts this mutable indexed sequence to a string.

    returns

    a string representation of this collection. By default this string consists of the stringPrefix of this mutable indexed sequence, followed by all elements separated by commas and enclosed in parentheses.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    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: ofRef[T]).toString()
    Definition Classes
    SeqLikeTraversableLikeAny
  880. def toString(): String

    Permalink

    Converts this mutable indexed sequence to a string.

    Converts this mutable indexed sequence to a string.

    returns

    a string representation of this collection. By default this string consists of the stringPrefix of this mutable indexed sequence, followed by all elements separated by commas and enclosed in parentheses.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    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: ofLong).toString()
    Definition Classes
    SeqLikeTraversableLikeAny
  881. def toString(): String

    Permalink

    Converts this mutable indexed sequence to a string.

    Converts this mutable indexed sequence to a string.

    returns

    a string representation of this collection. By default this string consists of the stringPrefix of this mutable indexed sequence, followed by all elements separated by commas and enclosed in parentheses.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    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: ofInt).toString()
    Definition Classes
    SeqLikeTraversableLikeAny
  882. def toString(): String

    Permalink

    Converts this mutable indexed sequence to a string.

    Converts this mutable indexed sequence to a string.

    returns

    a string representation of this collection. By default this string consists of the stringPrefix of this mutable indexed sequence, followed by all elements separated by commas and enclosed in parentheses.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    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: ofFloat).toString()
    Definition Classes
    SeqLikeTraversableLikeAny
  883. def toString(): String

    Permalink

    Converts this mutable indexed sequence to a string.

    Converts this mutable indexed sequence to a string.

    returns

    a string representation of this collection. By default this string consists of the stringPrefix of this mutable indexed sequence, followed by all elements separated by commas and enclosed in parentheses.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    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: ofDouble).toString()
    Definition Classes
    SeqLikeTraversableLikeAny
  884. def toString(): String

    Permalink

    Converts this mutable indexed sequence to a string.

    Converts this mutable indexed sequence to a string.

    returns

    a string representation of this collection. By default this string consists of the stringPrefix of this mutable indexed sequence, followed by all elements separated by commas and enclosed in parentheses.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= 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:
    (array: ofChar).toString()
    Definition Classes
    SeqLikeTraversableLikeAny
  885. def toString(): String

    Permalink

    Converts this mutable indexed sequence to a string.

    Converts this mutable indexed sequence to a string.

    returns

    a string representation of this collection. By default this string consists of the stringPrefix of this mutable indexed sequence, followed by all elements separated by commas and enclosed in parentheses.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    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: ofByte).toString()
    Definition Classes
    SeqLikeTraversableLikeAny
  886. def toString(): String

    Permalink

    Converts this mutable indexed sequence to a string.

    Converts this mutable indexed sequence to a string.

    returns

    a string representation of this collection. By default this string consists of the stringPrefix of this mutable indexed sequence, followed by all elements separated by commas and enclosed in parentheses.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    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: ofBoolean).toString()
    Definition Classes
    SeqLikeTraversableLikeAny
  887. def toString(): String

    Permalink

    Converts this mutable indexed sequence to a string.

    Converts this mutable indexed sequence to a string.

    returns

    a string representation of this collection. By default this string consists of the stringPrefix of this mutable indexed sequence, followed by all elements separated by commas and enclosed in parentheses.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    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[T]).toString()
    Definition Classes
    SeqLikeTraversableLikeAny
  888. def toString(): String

    Permalink

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayCharSequence performed by method ArrayCharSequence in scala.Predef. This conversion will take place only if T is Char (T =:= 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:
    (array: ArrayCharSequence).toString()
    Definition Classes
    ArrayCharSequence → CharSequence → AnyRef → Any
  889. def toTraversable: collection.Traversable[Unit]

    Permalink

    Converts this mutable indexed sequence to an unspecified Traversable.

    Converts this mutable indexed sequence to an unspecified Traversable. Will return the same collection if this instance is already Traversable.

    returns

    a Traversable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).toTraversable
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  890. def toTraversable: collection.Traversable[Short]

    Permalink

    Converts this mutable indexed sequence to an unspecified Traversable.

    Converts this mutable indexed sequence to an unspecified Traversable. Will return the same collection if this instance is already Traversable.

    returns

    a Traversable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).toTraversable
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  891. def toTraversable: collection.Traversable[T]

    Permalink

    Converts this mutable indexed sequence to an unspecified Traversable.

    Converts this mutable indexed sequence to an unspecified Traversable. Will return the same collection if this instance is already Traversable.

    returns

    a Traversable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).toTraversable
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  892. def toTraversable: collection.Traversable[Long]

    Permalink

    Converts this mutable indexed sequence to an unspecified Traversable.

    Converts this mutable indexed sequence to an unspecified Traversable. Will return the same collection if this instance is already Traversable.

    returns

    a Traversable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).toTraversable
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  893. def toTraversable: collection.Traversable[Int]

    Permalink

    Converts this mutable indexed sequence to an unspecified Traversable.

    Converts this mutable indexed sequence to an unspecified Traversable. Will return the same collection if this instance is already Traversable.

    returns

    a Traversable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).toTraversable
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  894. def toTraversable: collection.Traversable[Float]

    Permalink

    Converts this mutable indexed sequence to an unspecified Traversable.

    Converts this mutable indexed sequence to an unspecified Traversable. Will return the same collection if this instance is already Traversable.

    returns

    a Traversable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).toTraversable
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  895. def toTraversable: collection.Traversable[Double]

    Permalink

    Converts this mutable indexed sequence to an unspecified Traversable.

    Converts this mutable indexed sequence to an unspecified Traversable. Will return the same collection if this instance is already Traversable.

    returns

    a Traversable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).toTraversable
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  896. def toTraversable: collection.Traversable[Char]

    Permalink

    Converts this mutable indexed sequence to an unspecified Traversable.

    Converts this mutable indexed sequence to an unspecified Traversable. Will return the same collection if this instance is already Traversable.

    returns

    a Traversable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).toTraversable
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  897. def toTraversable: collection.Traversable[Byte]

    Permalink

    Converts this mutable indexed sequence to an unspecified Traversable.

    Converts this mutable indexed sequence to an unspecified Traversable. Will return the same collection if this instance is already Traversable.

    returns

    a Traversable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).toTraversable
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  898. def toTraversable: collection.Traversable[Boolean]

    Permalink

    Converts this mutable indexed sequence to an unspecified Traversable.

    Converts this mutable indexed sequence to an unspecified Traversable. Will return the same collection if this instance is already Traversable.

    returns

    a Traversable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).toTraversable
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  899. def toTraversable: collection.Traversable[T]

    Permalink

    Converts this mutable indexed sequence to an unspecified Traversable.

    Converts this mutable indexed sequence to an unspecified Traversable. Will return the same collection if this instance is already Traversable.

    returns

    a Traversable containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).toTraversable
    Definition Classes
    TraversableLikeTraversableOnceGenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  900. def toVector: Vector[Unit]

    Permalink

    Converts this mutable indexed sequence to a Vector.

    Converts this mutable indexed sequence to a Vector.

    returns

    a vector containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).toVector
    Definition Classes
    TraversableOnceGenTraversableOnce
  901. def toVector: Vector[Short]

    Permalink

    Converts this mutable indexed sequence to a Vector.

    Converts this mutable indexed sequence to a Vector.

    returns

    a vector containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).toVector
    Definition Classes
    TraversableOnceGenTraversableOnce
  902. def toVector: Vector[T]

    Permalink

    Converts this mutable indexed sequence to a Vector.

    Converts this mutable indexed sequence to a Vector.

    returns

    a vector containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).toVector
    Definition Classes
    TraversableOnceGenTraversableOnce
  903. def toVector: Vector[Long]

    Permalink

    Converts this mutable indexed sequence to a Vector.

    Converts this mutable indexed sequence to a Vector.

    returns

    a vector containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).toVector
    Definition Classes
    TraversableOnceGenTraversableOnce
  904. def toVector: Vector[Int]

    Permalink

    Converts this mutable indexed sequence to a Vector.

    Converts this mutable indexed sequence to a Vector.

    returns

    a vector containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).toVector
    Definition Classes
    TraversableOnceGenTraversableOnce
  905. def toVector: Vector[Float]

    Permalink

    Converts this mutable indexed sequence to a Vector.

    Converts this mutable indexed sequence to a Vector.

    returns

    a vector containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).toVector
    Definition Classes
    TraversableOnceGenTraversableOnce
  906. def toVector: Vector[Double]

    Permalink

    Converts this mutable indexed sequence to a Vector.

    Converts this mutable indexed sequence to a Vector.

    returns

    a vector containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).toVector
    Definition Classes
    TraversableOnceGenTraversableOnce
  907. def toVector: Vector[Char]

    Permalink

    Converts this mutable indexed sequence to a Vector.

    Converts this mutable indexed sequence to a Vector.

    returns

    a vector containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).toVector
    Definition Classes
    TraversableOnceGenTraversableOnce
  908. def toVector: Vector[Byte]

    Permalink

    Converts this mutable indexed sequence to a Vector.

    Converts this mutable indexed sequence to a Vector.

    returns

    a vector containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).toVector
    Definition Classes
    TraversableOnceGenTraversableOnce
  909. def toVector: Vector[Boolean]

    Permalink

    Converts this mutable indexed sequence to a Vector.

    Converts this mutable indexed sequence to a Vector.

    returns

    a vector containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).toVector
    Definition Classes
    TraversableOnceGenTraversableOnce
  910. def toVector: Vector[T]

    Permalink

    Converts this mutable indexed sequence to a Vector.

    Converts this mutable indexed sequence to a Vector.

    returns

    a vector containing all elements of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).toVector
    Definition Classes
    TraversableOnceGenTraversableOnce
  911. def transpose[U](implicit asArray: (T) ⇒ Array[U]): Array[Array[U]]

    Permalink

    Transposes a two dimensional array.

    Transposes a two dimensional array.

    U

    Type of row elements.

    asArray

    A function that converts elements of this array to rows - arrays of type U.

    returns

    An array obtained by replacing elements of this arrays with rows the represent.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).transpose(asArray)
    Definition Classes
    ArrayOps
  912. def transpose[U](implicit asArray: (T) ⇒ Array[U]): Array[Array[U]]

    Permalink

    Transposes a two dimensional array.

    Transposes a two dimensional array.

    U

    Type of row elements.

    asArray

    A function that converts elements of this array to rows - arrays of type U.

    returns

    An array obtained by replacing elements of this arrays with rows the represent.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).transpose(asArray)
    Definition Classes
    ArrayOps
  913. def union(that: collection.Seq[T]): Array[T]

    Permalink

    [use case] Produces a new sequence which contains all elements of this array and also all elements of a given sequence.

    [use case]

    Produces a new sequence which contains all elements of this array and also all elements of a given sequence. xs union ys is equivalent to xs ++ ys.

    Another way to express this is that xs union ys computes the order-preserving multi-set union of xs and ys. union is hence a counter-part of diff and intersect which also work on multi-sets.

    that

    the sequence to add.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).union(that)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def union[B >: A, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Array[T], B, That]): That

  914. def union(that: collection.Seq[T]): Array[T]

    Permalink

    [use case] Produces a new sequence which contains all elements of this array and also all elements of a given sequence.

    [use case]

    Produces a new sequence which contains all elements of this array and also all elements of a given sequence. xs union ys is equivalent to xs ++ ys.

    Another way to express this is that xs union ys computes the order-preserving multi-set union of xs and ys. union is hence a counter-part of diff and intersect which also work on multi-sets.

    that

    the sequence to add.

    returns

    a new array which contains all elements of this array followed by all elements of that.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).union(that)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def union[B >: A, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Array[T], B, That]): That

  915. def unzip[T1, T2](implicit asPair: (T) ⇒ (T1, T2), ct1: ClassTag[T1], ct2: ClassTag[T2]): (Array[T1], Array[T2])

    Permalink

    Converts an array of pairs into an array of first elements and an array of second elements.

    Converts an array of pairs into an array of first elements and an array of second elements.

    T1

    the type of the first half of the element pairs

    T2

    the type of the second half of the element pairs

    asPair

    an implicit conversion which asserts that the element type of this Array is a pair.

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    returns

    a pair of Arrays, containing, respectively, the first and second half of each element pair of this Array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).unzip(asPair, ct1, ct2)
    Definition Classes
    ArrayOps
  916. def unzip[T1, T2](implicit asPair: (T) ⇒ (T1, T2), ct1: ClassTag[T1], ct2: ClassTag[T2]): (Array[T1], Array[T2])

    Permalink

    Converts an array of pairs into an array of first elements and an array of second elements.

    Converts an array of pairs into an array of first elements and an array of second elements.

    T1

    the type of the first half of the element pairs

    T2

    the type of the second half of the element pairs

    asPair

    an implicit conversion which asserts that the element type of this Array is a pair.

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    returns

    a pair of Arrays, containing, respectively, the first and second half of each element pair of this Array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).unzip(asPair, ct1, ct2)
    Definition Classes
    ArrayOps
  917. def unzip3[T1, T2, T3](implicit asTriple: (T) ⇒ (T1, T2, T3), ct1: ClassTag[T1], ct2: ClassTag[T2], ct3: ClassTag[T3]): (Array[T1], Array[T2], Array[T3])

    Permalink

    Converts an array of triples into three arrays, one containing the elements from each position of the triple.

    Converts an array of triples into three arrays, one containing the elements from each position of the triple.

    T1

    the type of the first of three elements in the triple

    T2

    the type of the second of three elements in the triple

    T3

    the type of the third of three elements in the triple

    asTriple

    an implicit conversion which asserts that the element type of this Array is a triple.

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    ct3

    a class tag for T3 type parameter that is required to create an instance of Array[T3]

    returns

    a triple of Arrays, containing, respectively, the first, second, and third elements from each element triple of this Array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).unzip3(asTriple, ct1, ct2, ct3)
    Definition Classes
    ArrayOps
  918. def unzip3[T1, T2, T3](implicit asTriple: (T) ⇒ (T1, T2, T3), ct1: ClassTag[T1], ct2: ClassTag[T2], ct3: ClassTag[T3]): (Array[T1], Array[T2], Array[T3])

    Permalink

    Converts an array of triples into three arrays, one containing the elements from each position of the triple.

    Converts an array of triples into three arrays, one containing the elements from each position of the triple.

    T1

    the type of the first of three elements in the triple

    T2

    the type of the second of three elements in the triple

    T3

    the type of the third of three elements in the triple

    asTriple

    an implicit conversion which asserts that the element type of this Array is a triple.

    ct1

    a class tag for T1 type parameter that is required to create an instance of Array[T1]

    ct2

    a class tag for T2 type parameter that is required to create an instance of Array[T2]

    ct3

    a class tag for T3 type parameter that is required to create an instance of Array[T3]

    returns

    a triple of Arrays, containing, respectively, the first, second, and third elements from each element triple of this Array.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).unzip3(asTriple, ct1, ct2, ct3)
    Definition Classes
    ArrayOps
  919. def update(index: Int, elem: Unit): Unit

    Permalink

    Replaces element at given index with a new value.

    Replaces element at given index with a new value.

    elem

    the new value.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    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: ofUnit).update(index, elem)
    Definition Classes
    ofUnitIndexedSeqLike
    Exceptions thrown

    IndexOutOfBoundsException if the index is not valid.

  920. def update(index: Int, elem: Short): Unit

    Permalink

    Replaces element at given index with a new value.

    Replaces element at given index with a new value.

    elem

    the new value.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    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: ofShort).update(index, elem)
    Definition Classes
    ofShortIndexedSeqLike
    Exceptions thrown

    IndexOutOfBoundsException if the index is not valid.

  921. def update(index: Int, elem: T): Unit

    Permalink

    Replaces element at given index with a new value.

    Replaces element at given index with a new value.

    elem

    the new value.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    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: ofRef[T]).update(index, elem)
    Definition Classes
    ofRefIndexedSeqLike
    Exceptions thrown

    IndexOutOfBoundsException if the index is not valid.

  922. def update(index: Int, elem: Long): Unit

    Permalink

    Replaces element at given index with a new value.

    Replaces element at given index with a new value.

    elem

    the new value.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    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: ofLong).update(index, elem)
    Definition Classes
    ofLongIndexedSeqLike
    Exceptions thrown

    IndexOutOfBoundsException if the index is not valid.

  923. def update(index: Int, elem: Int): Unit

    Permalink

    Replaces element at given index with a new value.

    Replaces element at given index with a new value.

    elem

    the new value.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    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: ofInt).update(index, elem)
    Definition Classes
    ofIntIndexedSeqLike
    Exceptions thrown

    IndexOutOfBoundsException if the index is not valid.

  924. def update(index: Int, elem: Float): Unit

    Permalink

    Replaces element at given index with a new value.

    Replaces element at given index with a new value.

    elem

    the new value.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    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: ofFloat).update(index, elem)
    Definition Classes
    ofFloatIndexedSeqLike
    Exceptions thrown

    IndexOutOfBoundsException if the index is not valid.

  925. def update(index: Int, elem: Double): Unit

    Permalink

    Replaces element at given index with a new value.

    Replaces element at given index with a new value.

    elem

    the new value.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    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: ofDouble).update(index, elem)
    Definition Classes
    ofDoubleIndexedSeqLike
    Exceptions thrown

    IndexOutOfBoundsException if the index is not valid.

  926. def update(index: Int, elem: Char): Unit

    Permalink

    Replaces element at given index with a new value.

    Replaces element at given index with a new value.

    elem

    the new value.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= 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:
    (array: ofChar).update(index, elem)
    Definition Classes
    ofCharIndexedSeqLike
    Exceptions thrown

    IndexOutOfBoundsException if the index is not valid.

  927. def update(index: Int, elem: Byte): Unit

    Permalink

    Replaces element at given index with a new value.

    Replaces element at given index with a new value.

    elem

    the new value.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    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: ofByte).update(index, elem)
    Definition Classes
    ofByteIndexedSeqLike
    Exceptions thrown

    IndexOutOfBoundsException if the index is not valid.

  928. def update(index: Int, elem: Boolean): Unit

    Permalink

    Replaces element at given index with a new value.

    Replaces element at given index with a new value.

    elem

    the new value.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    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: ofBoolean).update(index, elem)
    Definition Classes
    ofBooleanIndexedSeqLike
    Exceptions thrown

    IndexOutOfBoundsException if the index is not valid.

  929. def update(idx: Int, elem: T): Unit

    Permalink

    Replaces element at given index with a new value.

    Replaces element at given index with a new value.

    idx

    the index of the element to replace.

    elem

    the new value.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    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[T]).update(idx, elem)
    Definition Classes
    IndexedSeqLike
    Exceptions thrown

    IndexOutOfBoundsException if the index is not valid.

  930. def updated(index: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with one single replaced element.

    [use case]

    A copy of this array with one single replaced element.

    index

    the position of the replacement

    elem

    the replacing element

    returns

    a copy of this array with the element at position index replaced by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).updated(index, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def updated[B >: A, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Array[Unit], B, That]): That

  931. def updated(index: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with one single replaced element.

    [use case]

    A copy of this array with one single replaced element.

    index

    the position of the replacement

    elem

    the replacing element

    returns

    a copy of this array with the element at position index replaced by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).updated(index, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def updated[B >: A, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Array[Short], B, That]): That

  932. def updated(index: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with one single replaced element.

    [use case]

    A copy of this array with one single replaced element.

    index

    the position of the replacement

    elem

    the replacing element

    returns

    a copy of this array with the element at position index replaced by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).updated(index, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def updated[B >: A, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Array[T], B, That]): That

  933. def updated(index: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with one single replaced element.

    [use case]

    A copy of this array with one single replaced element.

    index

    the position of the replacement

    elem

    the replacing element

    returns

    a copy of this array with the element at position index replaced by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).updated(index, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def updated[B >: A, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Array[Long], B, That]): That

  934. def updated(index: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with one single replaced element.

    [use case]

    A copy of this array with one single replaced element.

    index

    the position of the replacement

    elem

    the replacing element

    returns

    a copy of this array with the element at position index replaced by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).updated(index, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def updated[B >: A, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Array[Int], B, That]): That

  935. def updated(index: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with one single replaced element.

    [use case]

    A copy of this array with one single replaced element.

    index

    the position of the replacement

    elem

    the replacing element

    returns

    a copy of this array with the element at position index replaced by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).updated(index, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def updated[B >: A, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Array[Float], B, That]): That

  936. def updated(index: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with one single replaced element.

    [use case]

    A copy of this array with one single replaced element.

    index

    the position of the replacement

    elem

    the replacing element

    returns

    a copy of this array with the element at position index replaced by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).updated(index, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def updated[B >: A, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Array[Double], B, That]): That

  937. def updated(index: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with one single replaced element.

    [use case]

    A copy of this array with one single replaced element.

    index

    the position of the replacement

    elem

    the replacing element

    returns

    a copy of this array with the element at position index replaced by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).updated(index, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def updated[B >: A, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Array[Char], B, That]): That

  938. def updated(index: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with one single replaced element.

    [use case]

    A copy of this array with one single replaced element.

    index

    the position of the replacement

    elem

    the replacing element

    returns

    a copy of this array with the element at position index replaced by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).updated(index, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def updated[B >: A, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Array[Byte], B, That]): That

  939. def updated(index: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with one single replaced element.

    [use case]

    A copy of this array with one single replaced element.

    index

    the position of the replacement

    elem

    the replacing element

    returns

    a copy of this array with the element at position index replaced by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).updated(index, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def updated[B >: A, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Array[Boolean], B, That]): That

  940. def updated(index: Int, elem: A): Array[A]

    Permalink

    [use case] A copy of this array with one single replaced element.

    [use case]

    A copy of this array with one single replaced element.

    index

    the position of the replacement

    elem

    the replacing element

    returns

    a copy of this array with the element at position index replaced by elem.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).updated(index, elem)
    Definition Classes
    SeqLikeGenSeqLike
    Full Signature

    def updated[B >: A, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Array[T], B, That]): That

  941. def view(from: Int, until: Int): IndexedSeqView[Unit, Array[Unit]]

    Permalink

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    from

    The index of the first element of the slice

    until

    The index of the element following the slice

    returns

    a non-strict view of a slice of this mutable indexed sequence, starting at index from and extending up to (but not including) index until.@note The difference between view and slice is that view produces a view of the current sequence, whereas slice produces a new sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).view(from, until)
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
    Note

    view(from, to) is equivalent to view.slice(from, to)

  942. def view: IndexedSeqView[Unit, Array[Unit]]

    Permalink

    Creates a view of this iterable @see Iterable.View

    Creates a view of this iterable @see Iterable.View

    returns

    a non-strict view of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).view
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
  943. def view(from: Int, until: Int): IndexedSeqView[Short, Array[Short]]

    Permalink

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    from

    The index of the first element of the slice

    until

    The index of the element following the slice

    returns

    a non-strict view of a slice of this mutable indexed sequence, starting at index from and extending up to (but not including) index until.@note The difference between view and slice is that view produces a view of the current sequence, whereas slice produces a new sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).view(from, until)
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
    Note

    view(from, to) is equivalent to view.slice(from, to)

  944. def view: IndexedSeqView[Short, Array[Short]]

    Permalink

    Creates a view of this iterable @see Iterable.View

    Creates a view of this iterable @see Iterable.View

    returns

    a non-strict view of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).view
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
  945. def view(from: Int, until: Int): IndexedSeqView[T, Array[T]]

    Permalink

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    from

    The index of the first element of the slice

    until

    The index of the element following the slice

    returns

    a non-strict view of a slice of this mutable indexed sequence, starting at index from and extending up to (but not including) index until.@note The difference between view and slice is that view produces a view of the current sequence, whereas slice produces a new sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).view(from, until)
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
    Note

    view(from, to) is equivalent to view.slice(from, to)

  946. def view: IndexedSeqView[T, Array[T]]

    Permalink

    Creates a view of this iterable @see Iterable.View

    Creates a view of this iterable @see Iterable.View

    returns

    a non-strict view of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).view
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
  947. def view(from: Int, until: Int): IndexedSeqView[Long, Array[Long]]

    Permalink

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    from

    The index of the first element of the slice

    until

    The index of the element following the slice

    returns

    a non-strict view of a slice of this mutable indexed sequence, starting at index from and extending up to (but not including) index until.@note The difference between view and slice is that view produces a view of the current sequence, whereas slice produces a new sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).view(from, until)
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
    Note

    view(from, to) is equivalent to view.slice(from, to)

  948. def view: IndexedSeqView[Long, Array[Long]]

    Permalink

    Creates a view of this iterable @see Iterable.View

    Creates a view of this iterable @see Iterable.View

    returns

    a non-strict view of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).view
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
  949. def view(from: Int, until: Int): IndexedSeqView[Int, Array[Int]]

    Permalink

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    from

    The index of the first element of the slice

    until

    The index of the element following the slice

    returns

    a non-strict view of a slice of this mutable indexed sequence, starting at index from and extending up to (but not including) index until.@note The difference between view and slice is that view produces a view of the current sequence, whereas slice produces a new sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).view(from, until)
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
    Note

    view(from, to) is equivalent to view.slice(from, to)

  950. def view: IndexedSeqView[Int, Array[Int]]

    Permalink

    Creates a view of this iterable @see Iterable.View

    Creates a view of this iterable @see Iterable.View

    returns

    a non-strict view of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).view
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
  951. def view(from: Int, until: Int): IndexedSeqView[Float, Array[Float]]

    Permalink

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    from

    The index of the first element of the slice

    until

    The index of the element following the slice

    returns

    a non-strict view of a slice of this mutable indexed sequence, starting at index from and extending up to (but not including) index until.@note The difference between view and slice is that view produces a view of the current sequence, whereas slice produces a new sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).view(from, until)
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
    Note

    view(from, to) is equivalent to view.slice(from, to)

  952. def view: IndexedSeqView[Float, Array[Float]]

    Permalink

    Creates a view of this iterable @see Iterable.View

    Creates a view of this iterable @see Iterable.View

    returns

    a non-strict view of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).view
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
  953. def view(from: Int, until: Int): IndexedSeqView[Double, Array[Double]]

    Permalink

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    from

    The index of the first element of the slice

    until

    The index of the element following the slice

    returns

    a non-strict view of a slice of this mutable indexed sequence, starting at index from and extending up to (but not including) index until.@note The difference between view and slice is that view produces a view of the current sequence, whereas slice produces a new sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).view(from, until)
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
    Note

    view(from, to) is equivalent to view.slice(from, to)

  954. def view: IndexedSeqView[Double, Array[Double]]

    Permalink

    Creates a view of this iterable @see Iterable.View

    Creates a view of this iterable @see Iterable.View

    returns

    a non-strict view of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).view
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
  955. def view(from: Int, until: Int): IndexedSeqView[Char, Array[Char]]

    Permalink

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    from

    The index of the first element of the slice

    until

    The index of the element following the slice

    returns

    a non-strict view of a slice of this mutable indexed sequence, starting at index from and extending up to (but not including) index until.@note The difference between view and slice is that view produces a view of the current sequence, whereas slice produces a new sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).view(from, until)
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
    Note

    view(from, to) is equivalent to view.slice(from, to)

  956. def view: IndexedSeqView[Char, Array[Char]]

    Permalink

    Creates a view of this iterable @see Iterable.View

    Creates a view of this iterable @see Iterable.View

    returns

    a non-strict view of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).view
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
  957. def view(from: Int, until: Int): IndexedSeqView[Byte, Array[Byte]]

    Permalink

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    from

    The index of the first element of the slice

    until

    The index of the element following the slice

    returns

    a non-strict view of a slice of this mutable indexed sequence, starting at index from and extending up to (but not including) index until.@note The difference between view and slice is that view produces a view of the current sequence, whereas slice produces a new sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).view(from, until)
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
    Note

    view(from, to) is equivalent to view.slice(from, to)

  958. def view: IndexedSeqView[Byte, Array[Byte]]

    Permalink

    Creates a view of this iterable @see Iterable.View

    Creates a view of this iterable @see Iterable.View

    returns

    a non-strict view of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).view
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
  959. def view(from: Int, until: Int): IndexedSeqView[Boolean, Array[Boolean]]

    Permalink

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    from

    The index of the first element of the slice

    until

    The index of the element following the slice

    returns

    a non-strict view of a slice of this mutable indexed sequence, starting at index from and extending up to (but not including) index until.@note The difference between view and slice is that view produces a view of the current sequence, whereas slice produces a new sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).view(from, until)
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
    Note

    view(from, to) is equivalent to view.slice(from, to)

  960. def view: IndexedSeqView[Boolean, Array[Boolean]]

    Permalink

    Creates a view of this iterable @see Iterable.View

    Creates a view of this iterable @see Iterable.View

    returns

    a non-strict view of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).view
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
  961. def view(from: Int, until: Int): IndexedSeqView[T, Array[T]]

    Permalink

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    A sub-sequence view starting at index from and extending up to (but not including) index until.

    from

    The index of the first element of the slice

    until

    The index of the element following the slice

    returns

    a non-strict view of a slice of this mutable indexed sequence, starting at index from and extending up to (but not including) index until.@note The difference between view and slice is that view produces a view of the current sequence, whereas slice produces a new sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).view(from, until)
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
    Note

    view(from, to) is equivalent to view.slice(from, to)

  962. def view: IndexedSeqView[T, Array[T]]

    Permalink

    Creates a view of this iterable @see Iterable.View

    Creates a view of this iterable @see Iterable.View

    returns

    a non-strict view of this mutable indexed sequence.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).view
    Definition Classes
    IndexedSeqLikeSeqLikeIterableLikeTraversableLike
  963. def withFilter(p: (T) ⇒ Boolean): FilterMonadic[T, Array[T]]

    Permalink

    Creates a non-strict filter of this mutable indexed sequence.

    Creates a non-strict filter of this mutable indexed sequence.

    Note: the difference between c filter p and c withFilter p is that the former creates a new collection, whereas the latter only restricts the domain of subsequent map, flatMap, foreach, and withFilter operations.

    p

    the predicate used to test elements.

    returns

    an object of class WithFilter, which supports map, flatMap, foreach, and withFilter operations. All these operations apply to those elements of this mutable indexed sequence which satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).withFilter(p)
    Definition Classes
    TraversableLikeFilterMonadic
  964. def withFilter(p: (T) ⇒ Boolean): FilterMonadic[T, Array[T]]

    Permalink

    Creates a non-strict filter of this mutable indexed sequence.

    Creates a non-strict filter of this mutable indexed sequence.

    Note: the difference between c filter p and c withFilter p is that the former creates a new collection, whereas the latter only restricts the domain of subsequent map, flatMap, foreach, and withFilter operations.

    p

    the predicate used to test elements.

    returns

    an object of class WithFilter, which supports map, flatMap, foreach, and withFilter operations. All these operations apply to those elements of this mutable indexed sequence which satisfy the predicate p.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).withFilter(p)
    Definition Classes
    TraversableLikeFilterMonadic
  965. def zipWithIndex: Array[(A, Int)]

    Permalink

    [use case] Zips this array with its indices.

    [use case]

    Zips this array with its indices.

    returns

    A new array containing pairs consisting of all elements of this array paired with their index. Indices start at 0.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofUnit performed by method _unitArrayOps in scala.Predef. This conversion will take place only if T is Unit (T =:= Unit).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofUnit).zipWithIndex
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[Array[Unit], (A1, Int), That]): That

    Example:
    1. List("a", "b", "c").zipWithIndex = List(("a", 0), ("b", 1), ("c", 2))

  966. def zipWithIndex: Array[(A, Int)]

    Permalink

    [use case] Zips this array with its indices.

    [use case]

    Zips this array with its indices.

    returns

    A new array containing pairs consisting of all elements of this array paired with their index. Indices start at 0.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofShort performed by method _shortArrayOps in scala.Predef. This conversion will take place only if T is Short (T =:= Short).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofShort).zipWithIndex
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[Array[Short], (A1, Int), That]): That

    Example:
    1. List("a", "b", "c").zipWithIndex = List(("a", 0), ("b", 1), ("c", 2))

  967. def zipWithIndex: Array[(A, Int)]

    Permalink

    [use case] Zips this array with its indices.

    [use case]

    Zips this array with its indices.

    returns

    A new array containing pairs consisting of all elements of this array paired with their index. Indices start at 0.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofRef[T] performed by method _refArrayOps in scala.Predef. This conversion will take place only if T is a subclass of AnyRef (T <: AnyRef).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofRef[T]).zipWithIndex
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[Array[T], (A1, Int), That]): That

    Example:
    1. List("a", "b", "c").zipWithIndex = List(("a", 0), ("b", 1), ("c", 2))

  968. def zipWithIndex: Array[(A, Int)]

    Permalink

    [use case] Zips this array with its indices.

    [use case]

    Zips this array with its indices.

    returns

    A new array containing pairs consisting of all elements of this array paired with their index. Indices start at 0.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofLong performed by method _longArrayOps in scala.Predef. This conversion will take place only if T is Long (T =:= Long).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofLong).zipWithIndex
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[Array[Long], (A1, Int), That]): That

    Example:
    1. List("a", "b", "c").zipWithIndex = List(("a", 0), ("b", 1), ("c", 2))

  969. def zipWithIndex: Array[(A, Int)]

    Permalink

    [use case] Zips this array with its indices.

    [use case]

    Zips this array with its indices.

    returns

    A new array containing pairs consisting of all elements of this array paired with their index. Indices start at 0.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofInt performed by method _intArrayOps in scala.Predef. This conversion will take place only if T is Int (T =:= Int).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofInt).zipWithIndex
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[Array[Int], (A1, Int), That]): That

    Example:
    1. List("a", "b", "c").zipWithIndex = List(("a", 0), ("b", 1), ("c", 2))

  970. def zipWithIndex: Array[(A, Int)]

    Permalink

    [use case] Zips this array with its indices.

    [use case]

    Zips this array with its indices.

    returns

    A new array containing pairs consisting of all elements of this array paired with their index. Indices start at 0.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofFloat performed by method _floatArrayOps in scala.Predef. This conversion will take place only if T is Float (T =:= Float).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofFloat).zipWithIndex
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[Array[Float], (A1, Int), That]): That

    Example:
    1. List("a", "b", "c").zipWithIndex = List(("a", 0), ("b", 1), ("c", 2))

  971. def zipWithIndex: Array[(A, Int)]

    Permalink

    [use case] Zips this array with its indices.

    [use case]

    Zips this array with its indices.

    returns

    A new array containing pairs consisting of all elements of this array paired with their index. Indices start at 0.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofDouble performed by method _doubleArrayOps in scala.Predef. This conversion will take place only if T is Double (T =:= Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofDouble).zipWithIndex
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[Array[Double], (A1, Int), That]): That

    Example:
    1. List("a", "b", "c").zipWithIndex = List(("a", 0), ("b", 1), ("c", 2))

  972. def zipWithIndex: Array[(A, Int)]

    Permalink

    [use case] Zips this array with its indices.

    [use case]

    Zips this array with its indices.

    returns

    A new array containing pairs consisting of all elements of this array paired with their index. Indices start at 0.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofChar performed by method _charArrayOps in scala.Predef. This conversion will take place only if T is Char (T =:= Char).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofChar).zipWithIndex
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[Array[Char], (A1, Int), That]): That

    Example:
    1. List("a", "b", "c").zipWithIndex = List(("a", 0), ("b", 1), ("c", 2))

  973. def zipWithIndex: Array[(A, Int)]

    Permalink

    [use case] Zips this array with its indices.

    [use case]

    Zips this array with its indices.

    returns

    A new array containing pairs consisting of all elements of this array paired with their index. Indices start at 0.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofByte performed by method _byteArrayOps in scala.Predef. This conversion will take place only if T is Byte (T =:= Byte).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofByte).zipWithIndex
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[Array[Byte], (A1, Int), That]): That

    Example:
    1. List("a", "b", "c").zipWithIndex = List(("a", 0), ("b", 1), ("c", 2))

  974. def zipWithIndex: Array[(A, Int)]

    Permalink

    [use case] Zips this array with its indices.

    [use case]

    Zips this array with its indices.

    returns

    A new array containing pairs consisting of all elements of this array paired with their index. Indices start at 0.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ofBoolean performed by method _booleanArrayOps in scala.Predef. This conversion will take place only if T is Boolean (T =:= Boolean).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ofBoolean).zipWithIndex
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[Array[Boolean], (A1, Int), That]): That

    Example:
    1. List("a", "b", "c").zipWithIndex = List(("a", 0), ("b", 1), ("c", 2))

  975. def zipWithIndex: Array[(A, Int)]

    Permalink

    [use case] Zips this array with its indices.

    [use case]

    Zips this array with its indices.

    returns

    A new array containing pairs consisting of all elements of this array paired with their index. Indices start at 0.

    Implicit information
    This member is added by an implicit conversion from Array[T] to ArrayOps[T] performed by method genericArrayOps in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (array: ArrayOps[T]).zipWithIndex
    Definition Classes
    IndexedSeqOptimizedIterableLikeGenIterableLike
    Full Signature

    def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[Array[T], (A1, Int), That]): That

    Example:
    1. List("a", "b", "c").zipWithIndex = List(("a", 0), ("b", 1), ("c", 2))

Inherited from java.lang.Cloneable

Inherited from java.io.Serializable

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion _unitArrayOps from Array[T] to ofUnit

Inherited by implicit conversion _shortArrayOps from Array[T] to ofShort

Inherited by implicit conversion _refArrayOps from Array[T] to ofRef[T]

Inherited by implicit conversion _longArrayOps from Array[T] to ofLong

Inherited by implicit conversion _intArrayOps from Array[T] to ofInt

Inherited by implicit conversion _floatArrayOps from Array[T] to ofFloat

Inherited by implicit conversion _doubleArrayOps from Array[T] to ofDouble

Inherited by implicit conversion _charArrayOps from Array[T] to ofChar

Inherited by implicit conversion _byteArrayOps from Array[T] to ofByte

Inherited by implicit conversion _booleanArrayOps from Array[T] to ofBoolean

Inherited by implicit conversion genericArrayOps from Array[T] to ArrayOps[T]

Inherited by implicit conversion ArrayCharSequence from Array[T] to ArrayCharSequence

Inherited by implicit conversion any2stringadd from Array[T] to any2stringadd[Array[T]]

Inherited by implicit conversion StringFormat from Array[T] to StringFormat[Array[T]]

Inherited by implicit conversion Ensuring from Array[T] to Ensuring[Array[T]]

Inherited by implicit conversion ArrowAssoc from Array[T] to ArrowAssoc[Array[T]]

Ungrouped