final class NonEmptyArray[T] extends AnyVal
A non-empty array: an ordered, mutable, non-empty collection of elements with IndexedSeq performance characteristics.
The purpose of NonEmptyArray is to allow you to express in a type that an Array is non-empty, thereby eliminating the
need for (and potential exception from) a run-time check for non-emptiness. For a non-empty immutable sequence with IndexedSeq
performance, see Every.
 Constructing NonEmptyArrays 
You can construct a NonEmptyArray by passing one or more elements to the NonEmptyArray.apply factory method:
scala> NonEmptyArray(1, 2, 3) res0: org.scalactic.anyvals.NonEmptyArray[Int] = NonEmptyArray(1, 2, 3)
 Working with NonEmptyArrays 
NonEmptyArray does not extend Scala's Seq or Traversable traits because these require that
implementations may be empty. For example, if you invoke tail on a Seq that contains just one element,
you'll get an empty Seq:
scala> Array(1).tail res6: Array[Int] = Array()
On the other hand, many useful methods exist on Seq that when invoked on a non-empty Seq are guaranteed
to not result in an empty Seq. For convenience, NonEmptyArray defines a method corresponding to every such Seq
method. Here are some examples:
NonEmptyArray(1, 2, 3).map(_ + 1) // Result: NonEmptyArray(2, 3, 4) NonEmptyArray(1).map(_ + 1) // Result: NonEmptyArray(2) NonEmptyArray(1, 2, 3).containsSlice(NonEmptyArray(2, 3)) // Result: true NonEmptyArray(1, 2, 3).containsSlice(NonEmptyArray(3, 4)) // Result: false NonEmptyArray(-1, -2, 3, 4, 5).minBy(_.abs) // Result: -1
NonEmptyArray does not currently define any methods corresponding to Seq methods that could result in
an empty Seq. However, an implicit converison from NonEmptyArray to Array
is defined in the NonEmptyArray companion object that will be applied if you attempt to call one of the missing methods. As a
result, you can invoke filter on an NonEmptyArray, even though filter could result
in an empty sequence—but the result type will be Array instead of NonEmptyArray:
NonEmptyArray(1, 2, 3).filter(_ < 10) // Result: Array(1, 2, 3) NonEmptyArray(1, 2, 3).filter(_ > 10) // Result: Array()
You can use NonEmptyArrays in for expressions. The result will be an NonEmptyArray unless
you use a filter (an if clause). Because filters are desugared to invocations of filter, the
result type will switch to a Array at that point. Here are some examples:
scala> import org.scalactic.anyvals._
import org.scalactic.anyvals._
scala> for (i <- NonEmptyArray(1, 2, 3)) yield i + 1
res0: org.scalactic.anyvals.NonEmptyArray[Int] = NonEmptyArray(2, 3, 4)
scala> for (i <- NonEmptyArray(1, 2, 3) if i < 10) yield i + 1
res1: Array[Int] = Array(2, 3, 4)
scala> for {
     |   i <- NonEmptyArray(1, 2, 3)
     |   j <- NonEmptyArray('a', 'b', 'c')
     | } yield (i, j)
res3: org.scalactic.anyvals.NonEmptyArray[(Int, Char)] =
        NonEmptyArray((1,a), (1,b), (1,c), (2,a), (2,b), (2,c), (3,a), (3,b), (3,c))
scala> for {
     |   i <- NonEmptyArray(1, 2, 3) if i < 10
     |   j <- NonEmptyArray('a', 'b', 'c')
     | } yield (i, j)
res6: Array[(Int, Char)] =
        Array((1,a), (1,b), (1,c), (2,a), (2,b), (2,c), (3,a), (3,b), (3,c))
- T
- the type of elements contained in this - NonEmptyArray
- Source
- NonEmptyArray.scala
- Alphabetic
- By Inheritance
- NonEmptyArray
- AnyVal
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
-   final  def !=(arg0: Any): Boolean- Definition Classes
- Any
 
-   final  def ##: Int- Definition Classes
- Any
 
-    def ++[U >: T](other: IterableOnce[U])(implicit classTag: ClassTag[U]): NonEmptyArray[U]Returns a new NonEmptyArraycontaining the elements of thisNonEmptyArrayfollowed by the elements of the passedGenTraversableOnce.Returns a new NonEmptyArraycontaining the elements of thisNonEmptyArrayfollowed by the elements of the passedGenTraversableOnce. The element type of the resultingNonEmptyArrayis the most specific superclass encompassing the element types of thisNonEmptyArrayand the passedGenTraversableOnce.- U
- the element type of the returned - NonEmptyArray
- other
- the - GenTraversableOnceto append
- returns
- a new - NonEmptyArraythat contains all the elements of this- NonEmptyArrayfollowed by all elements of- other.
 
-    def ++[U >: T](other: Every[U])(implicit classTag: ClassTag[U]): NonEmptyArray[U]Returns a new NonEmptyArraycontaining the elements of thisNonEmptyArrayfollowed by the elements of the passedEvery.Returns a new NonEmptyArraycontaining the elements of thisNonEmptyArrayfollowed by the elements of the passedEvery. The element type of the resultingNonEmptyArrayis the most specific superclass encompassing the element types of thisNonEmptyArrayand the passedEvery.- U
- the element type of the returned - NonEmptyArray
- other
- the - Everyto append
- returns
- a new - NonEmptyArraythat contains all the elements of this- NonEmptyArrayfollowed by all elements of- other.
 
-    def ++[U >: T](other: NonEmptyArray[U])(implicit classTag: ClassTag[U]): NonEmptyArray[U]Returns a new NonEmptyArraycontaining the elements of thisNonEmptyArrayfollowed by the elements of the passedNonEmptyArray.Returns a new NonEmptyArraycontaining the elements of thisNonEmptyArrayfollowed by the elements of the passedNonEmptyArray. The element type of the resultingNonEmptyArrayis the most specific superclass encompassing the element types of this and the passedNonEmptyArray.- U
- the element type of the returned - NonEmptyArray
- other
- the - NonEmptyArrayto append
- returns
- a new - NonEmptyListthat contains all the elements of this- NonEmptyListfollowed by all elements of- other.
 
-   final  def +:[U >: T](element: U)(implicit classTag: ClassTag[U]): NonEmptyArray[U]Returns a new NonEmptyArraywith the given element prepended.Returns a new NonEmptyArraywith the given element prepended.Note that :-ending operators are right associative. A mnemonic for +:vs.:+is: the COLon goes on the COLlection side.- element
- the element to prepend to this - NonEmptyArray
- returns
- a new - NonEmptyArrayconsisting of- elementfollowed by all elements of this- NonEmptyArray.
 
-    def :+[U >: T](element: U)(implicit classTag: ClassTag[U]): NonEmptyArray[U]Returns a new NonEmptyArraywith the given element appended.Returns a new NonEmptyArraywith the given element appended.Note a mnemonic for +:vs.:+is: the COLon goes on the COLlection side.- element
- the element to append to this - NonEmptyArray
- returns
- a new - NonEmptyArrayconsisting of all elements of this- NonEmptyArrayfollowed by- element.
 
-   final  def ==(arg0: Any): Boolean- Definition Classes
- Any
 
-   final  def addString(sb: StringBuilder, start: String, sep: String, end: String): StringBuilderAppends all elements of this NonEmptyArrayto a string builder using start, end, and separator strings.Appends all elements of this NonEmptyArrayto a string builder using start, end, and separator strings. The written text will consist of a concatenation of the stringstart; the result of invokingtoStringon all elements of thisNonEmptyArray, separated by the stringsep; and the stringend- sb
- the string builder to which elements will be appended 
- start
- the ending string 
- sep
- the separator string 
- returns
- the string builder, - sb, to which elements were appended.
 
-   final  def addString(sb: StringBuilder, sep: String): StringBuilderAppends all elements of this NonEmptyArrayto a string builder using a separator string.Appends all elements of this NonEmptyArrayto a string builder using a separator string. The written text will consist of a concatenation of the result of invokingtoStringon of every element of thisNonEmptyArray, separated by the stringsep.- sb
- the string builder to which elements will be appended 
- sep
- the separator string 
- returns
- the string builder, - sb, to which elements were appended.
 
-   final  def addString(sb: StringBuilder): StringBuilderAppends all elements of this NonEmptyArrayto a string builder.Appends all elements of this NonEmptyArrayto a string builder. The written text will consist of a concatenation of the result of invokingtoStringon of every element of thisNonEmptyArray, without any separator string.- sb
- the string builder to which elements will be appended 
- returns
- the string builder, - sb, to which elements were appended.
 
-   final  def apply(idx: Int): TSelects an element by its index in the NonEmptyArray.Selects an element by its index in the NonEmptyArray.- returns
- the element of this - NonEmptyArrayat index- idx, where 0 indicates the first element.
 
-   final  def asInstanceOf[T0]: T0- Definition Classes
- Any
 
-   final  def collectFirst[U](pf: PartialFunction[T, U])(implicit classTagOfU: ClassTag[U]): Option[U]Finds the first element of this NonEmptyArrayfor which the given partial function is defined, if any, and applies the partial function to it.Finds the first element of this NonEmptyArrayfor which the given partial function is defined, if any, and applies the partial function to it.- pf
- the partial function 
- returns
- an - Optioncontaining- pfapplied to the first element for which it is defined, or- Noneif the partial function was not defined for any element.
 
-   final  def contains(elem: T): BooleanIndicates whether this NonEmptyArraycontains a given value as an element.Indicates whether this NonEmptyArraycontains a given value as an element.- elem
- the element to look for 
- returns
- true if this - NonEmptyArrayhas an element that is equal (as determined by- ==)to- elem, false otherwise.
 
-   final  def containsSlice[B](that: NonEmptyArray[B]): BooleanIndicates whether this NonEmptyArraycontains a givenNonEmptyArrayas a slice.Indicates whether this NonEmptyArraycontains a givenNonEmptyArrayas a slice.- that
- the - NonEmptyArrayslice to look for
- returns
- true if this - NonEmptyArraycontains a slice with the same elements as- that, otherwise- false.
 
-   final  def containsSlice[B](that: Every[B]): BooleanIndicates whether this NonEmptyArraycontains a givenEveryas a slice.Indicates whether this NonEmptyArraycontains a givenEveryas a slice.- that
- the - Everyslice to look for
- returns
- true if this - NonEmptyArraycontains a slice with the same elements as- that, otherwise- false.
 
-   final  def containsSlice[B](that: GenSeq[B]): BooleanIndicates whether this NonEmptyArraycontains a givenGenSeqas a slice.Indicates whether this NonEmptyArraycontains a givenGenSeqas a slice.- that
- the - GenSeqslice to look for
- returns
- true if this - NonEmptyArraycontains a slice with the same elements as- that, otherwise- false.
 
-   final  def copyToArray[U >: T](arr: Array[U], start: Int, len: Int): UnitCopies values of this NonEmptyArrayto an array.Copies values of this NonEmptyArrayto an array. Fills the given arrayarrwith at mostlenelements of thisNonEmptyArray, beginning at indexstart. Copying will stop once either the end of the currentNonEmptyArrayis reached, the end of the array is reached, orlenelements have been copied.- arr
- the array to fill 
- start
- the starting index 
- len
- the maximum number of elements to copy 
 
-   final  def copyToArray[U >: T](arr: Array[U], start: Int): UnitCopies values of this NonEmptyArrayto an array.Copies values of this NonEmptyArrayto an array. Fills the given arrayarrwith values of thisNonEmptyArray, beginning at indexstart. Copying will stop once either the end of the currentNonEmptyArrayis reached, or the end of the array is reached.- arr
- the array to fill 
- start
- the starting index 
 
-   final  def copyToArray[U >: T](arr: Array[U]): UnitCopies values of this NonEmptyArrayto an array.Copies values of this NonEmptyArrayto an array. Fills the given arrayarrwith values of thisNonEmptyArray. Copying will stop once either the end of the currentNonEmptyArrayis reached, or the end of the array is reached.- arr
- the array to fill 
 
-   final  def copyToBuffer[U >: T](buf: Buffer[U]): UnitCopies all elements of this NonEmptyArrayto a buffer.Copies all elements of this NonEmptyArrayto a buffer.- buf
- the buffer to which elements are copied 
 
-   final  def corresponds[B](that: NonEmptyArray[B])(p: (T, B) => Boolean): BooleanIndicates whether every element of this NonEmptyArrayrelates to the corresponding element of a givenNonEmptyArrayby satisfying a given predicate.Indicates whether every element of this NonEmptyArrayrelates to the corresponding element of a givenNonEmptyArrayby satisfying a given predicate.- B
- the type of the elements of - that
- that
- the - NonEmptyArrayto compare for correspondence
- p
- the predicate, which relates elements from this and the passed - NonEmptyArray
- returns
- true if this and the passed - NonEmptyArrayhave the same length and- p(x, y)is- truefor all corresponding elements- xof this- NonEmptyArrayand- yof that, otherwise- false.
 
-   final  def corresponds[B](that: Every[B])(p: (T, B) => Boolean): BooleanIndicates whether every element of this NonEmptyArrayrelates to the corresponding element of a givenEveryby satisfying a given predicate.Indicates whether every element of this NonEmptyArrayrelates to the corresponding element of a givenEveryby satisfying a given predicate.- B
- the type of the elements of - that
- that
- the - Everyto compare for correspondence
- p
- the predicate, which relates elements from this - NonEmptyArrayand the passed- Every
- returns
- true if this - NonEmptyArrayand the passed- Everyhave the same length and- p(x, y)is- truefor all corresponding elements- xof this- NonEmptyArrayand- yof that, otherwise- false.
 
-   final  def corresponds[B](that: GenSeq[B])(p: (T, B) => Boolean): BooleanIndicates whether every element of this NonEmptyArrayrelates to the corresponding element of a givenGenSeqby satisfying a given predicate.Indicates whether every element of this NonEmptyArrayrelates to the corresponding element of a givenGenSeqby satisfying a given predicate.- B
- the type of the elements of - that
- that
- the - GenSeqto compare for correspondence
- p
- the predicate, which relates elements from this - NonEmptyArrayand the passed- GenSeq
- returns
- true if this - NonEmptyArrayand the passed- GenSeqhave the same length and- p(x, y)is- truefor all corresponding elements- xof this- NonEmptyArrayand- yof that, otherwise- false.
 
-   final  def count(p: (T) => Boolean): IntCounts the number of elements in this NonEmptyArraythat satisfy a predicate.Counts the number of elements in this NonEmptyArraythat satisfy a predicate.- p
- the predicate used to test elements. 
- returns
- the number of elements satisfying the predicate - p.
 
-   final  def distinct: NonEmptyArray[T]Builds a new NonEmptyArrayfrom thisNonEmptyArraywithout any duplicate elements.Builds a new NonEmptyArrayfrom thisNonEmptyArraywithout any duplicate elements.- returns
- A new - NonEmptyArraythat contains the first occurrence of every element of this- NonEmptyArray.
 
-   final  def endsWith[B](that: NonEmptyArray[B]): BooleanIndicates whether this NonEmptyArrayends with the givenNonEmptyArray.Indicates whether this NonEmptyArrayends with the givenNonEmptyArray.- that
- the - NonEmptyArrayto test
- returns
- trueif this- NonEmptyArrayhas- thatas a suffix,- falseotherwise.
 
-   final  def endsWith[B](that: Every[B]): BooleanIndicates whether this NonEmptyArrayends with the givenEvery.Indicates whether this NonEmptyArrayends with the givenEvery.- that
- the - Everyto test
- returns
- trueif this- NonEmptyArrayhas- thatas a suffix,- falseotherwise.
 
-   final  def endsWith[B](that: GenSeq[B]): BooleanIndicates whether this NonEmptyArrayends with the givenGenSeq.Indicates whether this NonEmptyArrayends with the givenGenSeq.- that
- the sequence to test 
- returns
- trueif this- NonEmptyArrayhas- thatas a suffix,- falseotherwise.
 
-   final  def exists(p: (T) => Boolean): BooleanIndicates whether a predicate holds for at least one of the elements of this NonEmptyArray.Indicates whether a predicate holds for at least one of the elements of this NonEmptyArray.- returns
- trueif the given predicate- pholds for some of the elements of this- NonEmptyArray, otherwise- false.
 
-   final  def find(p: (T) => Boolean): Option[T]Finds the first element of this NonEmptyArraythat satisfies the given predicate, if any.Finds the first element of this NonEmptyArraythat satisfies the given predicate, if any.- p
- the predicate used to test elements 
- returns
- an - Somecontaining the first element in this- NonEmptyArraythat satisfies- p, or- Noneif none exists.
 
-   final  def flatMap[U](f: (T) => NonEmptyArray[U])(implicit classTag: ClassTag[U]): NonEmptyArray[U]Builds a new NonEmptyArrayby applying a function to all elements of thisNonEmptyArrayand using the elements of the resultingNonEmptyArrays.Builds a new NonEmptyArrayby applying a function to all elements of thisNonEmptyArrayand using the elements of the resultingNonEmptyArrays.- U
- the element type of the returned - NonEmptyArray
- f
- the function to apply to each element. 
- returns
- a new - NonEmptyArraycontaining elements obtained by applying the given function- fto each element of this- NonEmptyArrayand concatenating the elements of resulting- NonEmptyArrays.
 
-   final  def flatten[B](implicit ev: <:<[T, NonEmptyArray[B]], classTag: ClassTag[B]): NonEmptyArray[B]Converts this NonEmptyArrayofNonEmptyArrays into aNonEmptyArrayformed by the elements of the nestedNonEmptyArrays.Converts this NonEmptyArrayofNonEmptyArrays into aNonEmptyArrayformed by the elements of the nestedNonEmptyArrays.Note: You cannot use this flattenmethod on aNonEmptyArraythat contains aGenTraversableOnces, because if all the nestedGenTraversableOnces were empty, you'd end up with an emptyNonEmptyArray.- returns
- a new - NonEmptyArrayresulting from concatenating all nested- NonEmptyArrays.
 
-   final  def fold[U >: T](z: U)(op: (U, U) => U): UFolds the elements of this NonEmptyArrayusing the specified associative binary operator.Folds the elements of this NonEmptyArrayusing the specified associative binary operator.The order in which operations are performed on elements is unspecified and may be nondeterministic. - U
- a type parameter for the binary operator, a supertype of T. 
- 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., - Nilfor list concatenation, 0 for addition, or 1 for multiplication.)
- op
- a binary operator that must be associative 
- returns
- the result of applying fold operator - opbetween all the elements and- z
 
-   final  def foldLeft[B](z: B)(op: (B, T) => B): BApplies a binary operator to a start value and all elements of this NonEmptyArray, going left to right.Applies a binary operator to a start value and all elements of this NonEmptyArray, 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 - opbetween consecutive elements of this- NonEmptyArray, 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- NonEmptyArray.
 
-   final  def foldRight[B](z: B)(op: (T, B) => B): BApplies a binary operator to all elements of this NonEmptyArrayand a start value, going right to left.Applies a binary operator to all elements of this NonEmptyArrayand a start value, going right to left.- B
- the result of the binary operator 
- z
- the start value 
- op
- the binary operator 
- returns
- the result of inserting - opbetween consecutive elements of this- NonEmptyArray, 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- NonEmptyArray.
 
-   final  def forall(p: (T) => Boolean): BooleanIndicates whether a predicate holds for all elements of this NonEmptyArray.Indicates whether a predicate holds for all elements of this NonEmptyArray.- p
- the predicate used to test elements. 
- returns
- trueif the given predicate- pholds for all elements of this- NonEmptyArray, otherwise- false.
 
-   final  def foreach(f: (T) => Unit): UnitApplies a function fto all elements of thisNonEmptyArray.Applies a function fto all elements of thisNonEmptyArray.- f
- the function that is applied for its side-effect to every element. The result of function - fis discarded.
 
-    def getClass(): Class[_ <: AnyVal]- Definition Classes
- AnyVal → Any
 
-   final  def groupBy[K](f: (T) => K)(implicit classTag: ClassTag[T]): Map[K, NonEmptyArray[T]]Partitions this NonEmptyArrayinto a map ofNonEmptyArrays according to some discriminator function.Partitions this NonEmptyArrayinto a map ofNonEmptyArrays according to some discriminator function.- K
- the type of keys returned by the discriminator function. 
- f
- the discriminator function. 
- returns
- A map from keys to - NonEmptyArrays such that the following invariant holds:- (nonEmptyArray.toArray partition f)(k) = xs filter (x => f(x) == k) That is, every key- kis bound to a- NonEmptyArrayof those elements- xfor which- f(x)equals- k.
 
-   final  def grouped(size: Int)(implicit classTag: ClassTag[T]): Iterator[NonEmptyArray[T]]Partitions elements into fixed size NonEmptyArrays.Partitions elements into fixed size NonEmptyArrays.- size
- the number of elements per group 
- returns
- An iterator producing - NonEmptyArrays of size- size, except the last will be truncated if the elements don't divide evenly.
 
-   final  def hasDefiniteSize: BooleanReturns trueto indicate thisNonEmptyArrayhas a definite size, since allNonEmptyArrays are strict collections.
-   final  def head: TSelects the first element of this NonEmptyArray.Selects the first element of this NonEmptyArray.- returns
- the first element of this - NonEmptyArray.
 
-   final  def headOption: Option[T]Selects the first element of this NonEmptyArrayand returns it wrapped in aSome.Selects the first element of this NonEmptyArrayand returns it wrapped in aSome.- returns
- the first element of this - NonEmptyArray, wrapped in a- Some.
 
-   final  def indexOf(elem: T, from: Int): IntFinds index of first occurrence of some value in this NonEmptyArrayafter or at some start index.Finds index of first occurrence of some value in this NonEmptyArrayafter or at some start index.- elem
- the element value to search for. 
- from
- the start index 
- returns
- the index - >=- fromof the first element of this- NonEmptyArraythat is equal (as determined by- ==) to- elem, or- -1, if none exists.
 
-   final  def indexOf(elem: T): IntFinds index of first occurrence of some value in this NonEmptyArray.Finds index of first occurrence of some value in this NonEmptyArray.- elem
- the element value to search for. 
- returns
- the index of the first element of this - NonEmptyArraythat is equal (as determined by- ==) to- elem, or- -1, if none exists.
 
-   final  def indexOfSlice[U >: T](that: NonEmptyArray[U], from: Int): IntFinds first index after or at a start index where this NonEmptyArraycontains a givenNonEmptyArrayas a slice.Finds first index after or at a start index where this NonEmptyArraycontains a givenNonEmptyArrayas a slice.- that
- the - NonEmptyArraydefining the slice to look for
- from
- the start index 
- returns
- the first index - >=- fromsuch that the elements of this- NonEmptyArraystarting at this index match the elements of- NonEmptyArray- that, or- -1of no such subsequence exists.
 
-   final  def indexOfSlice[U >: T](that: Every[U], from: Int): IntFinds first index after or at a start index where this NonEmptyArraycontains a givenEveryas a slice.Finds first index after or at a start index where this NonEmptyArraycontains a givenEveryas a slice.- that
- the - Everydefining the slice to look for
- from
- the start index 
- returns
- the first index - >=- fromsuch that the elements of this- NonEmptyArraystarting at this index match the elements of- Every- that, or- -1of no such subsequence exists.
 
-   final  def indexOfSlice[U >: T](that: NonEmptyArray[U]): IntFinds first index where this NonEmptyArraycontains a givenNonEmptyArrayas a slice.Finds first index where this NonEmptyArraycontains a givenNonEmptyArrayas a slice.- that
- the - NonEmptyArraydefining the slice to look for
- returns
- the first index such that the elements of this - NonEmptyArraystarting at this index match the elements of- NonEmptyArray- that, or- -1of no such subsequence exists.
 
-   final  def indexOfSlice[U >: T](that: Every[U]): IntFinds first index where this NonEmptyArraycontains a givenEveryas a slice.Finds first index where this NonEmptyArraycontains a givenEveryas a slice.- that
- the - Everydefining the slice to look for
- returns
- the first index such that the elements of this - NonEmptyArraystarting at this index match the elements of- Every- that, or- -1of no such subsequence exists.
 
-   final  def indexOfSlice[U >: T](that: GenSeq[U], from: Int): IntFinds first index after or at a start index where this NonEmptyArraycontains a givenGenSeqas a slice.Finds first index after or at a start index where this NonEmptyArraycontains a givenGenSeqas a slice.- that
- the - GenSeqdefining the slice to look for
- from
- the start index 
- returns
- the first index - >=- fromat which the elements of this- NonEmptyArraystarting at that index match the elements of- GenSeq- that, or- -1of no such subsequence exists.
 
-   final  def indexOfSlice[U >: T](that: GenSeq[U]): IntFinds first index where this NonEmptyArraycontains a givenGenSeqas a slice.Finds first index where this NonEmptyArraycontains a givenGenSeqas a slice.- that
- the - GenSeqdefining the slice to look for
- returns
- the first index at which the elements of this - NonEmptyArraystarting at that index match the elements of- GenSeq- that, or- -1of no such subsequence exists.
 
-   final  def indexWhere(p: (T) => Boolean, from: Int): IntFinds 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 - >=- fromof the first element of this- NonEmptyArraythat satisfies the predicate- p, or- -1, if none exists.
 
-   final  def indexWhere(p: (T) => Boolean): IntFinds index of the first element satisfying some predicate. Finds index of the first element satisfying some predicate. - p
- the predicate used to test elements. 
- returns
- the index of the first element of this - NonEmptyArraythat satisfies the predicate- p, or- -1, if none exists.
 
-   final  def indices: RangeProduces the range of all indices of this NonEmptyArray.Produces the range of all indices of this NonEmptyArray.- returns
- a - Rangevalue from- 0to one less than the length of this- NonEmptyArray.
 
-   final  def isDefinedAt(idx: Int): BooleanTests whether this NonEmptyArraycontains given index.Tests whether this NonEmptyArraycontains given index.- idx
- the index to test 
- returns
- true if this - NonEmptyArraycontains an element at position- idx,- falseotherwise.
 
-   final  def isEmpty: BooleanReturns falseto indicate thisNonEmptyArray, like allNonEmptyArrays, is non-empty.Returns falseto indicate thisNonEmptyArray, like allNonEmptyArrays, is non-empty.- returns
- false 
 
-   final  def isInstanceOf[T0]: Boolean- Definition Classes
- Any
 
-   final  def isTraversableAgain: BooleanReturns trueto indicate thisNonEmptyArray, like allNonEmptyArrays, can be traversed repeatedly.Returns trueto indicate thisNonEmptyArray, like allNonEmptyArrays, can be traversed repeatedly.- returns
- true 
 
-   final  def iterator: Iterator[T]Creates and returns a new iterator over all elements contained in this NonEmptyArray.Creates and returns a new iterator over all elements contained in this NonEmptyArray.- returns
- the new iterator 
 
-   final  def last: TSelects the last element of this NonEmptyArray.Selects the last element of this NonEmptyArray.- returns
- the last element of this - NonEmptyArray.
 
-   final  def lastIndexOf(elem: T, end: Int): IntFinds the index of the last occurrence of some value in this NonEmptyArraybefore or at a givenendindex.Finds the index of the last occurrence of some value in this NonEmptyArraybefore or at a givenendindex.- elem
- the element value to search for. 
- end
- the end index. 
- returns
- the index - >=- endof the last element of this- NonEmptyArraythat is equal (as determined by- ==) to- elem, or- -1, if none exists.
 
-   final  def lastIndexOf(elem: T): IntFinds the index of the last occurrence of some value in this NonEmptyArray.Finds the index of the last occurrence of some value in this NonEmptyArray.- elem
- the element value to search for. 
- returns
- the index of the last element of this - NonEmptyArraythat is equal (as determined by- ==) to- elem, or- -1, if none exists.
 
-   final  def lastIndexOfSlice[U >: T](that: NonEmptyArray[U], end: Int): IntFinds the last index before or at a given end index where this NonEmptyArraycontains a givenNonEmptyArrayas a slice.Finds the last index before or at a given end index where this NonEmptyArraycontains a givenNonEmptyArrayas a slice.- that
- the - NonEmptyArraydefining the slice to look for
- end
- the end index 
- returns
- the last index - >=- endat which the elements of this- NonEmptyArraystarting at that index match the elements of- NonEmptyArray- that, or- -1of no such subsequence exists.
 
-   final  def lastIndexOfSlice[U >: T](that: Every[U], end: Int): IntFinds the last index before or at a given end index where this NonEmptyArraycontains a givenEveryas a slice.Finds the last index before or at a given end index where this NonEmptyArraycontains a givenEveryas a slice.- that
- the - Everydefining the slice to look for
- end
- the end index 
- returns
- the last index - >=- endat which the elements of this- NonEmptyArraystarting at that index match the elements of- Every- that, or- -1of no such subsequence exists.
 
-   final  def lastIndexOfSlice[U >: T](that: NonEmptyArray[U]): IntFinds the last index where this NonEmptyArraycontains a givenNonEmptyArrayas a slice.Finds the last index where this NonEmptyArraycontains a givenNonEmptyArrayas a slice.- that
- the - NonEmptyArraydefining the slice to look for
- returns
- the last index at which the elements of this - NonEmptyArraystarting at that index match the elements of- NonEmptyArray- that, or- -1of no such subsequence exists.
 
-   final  def lastIndexOfSlice[U >: T](that: Every[U]): IntFinds the last index where this NonEmptyArraycontains a givenEveryas a slice.Finds the last index where this NonEmptyArraycontains a givenEveryas a slice.- that
- the - Everydefining the slice to look for
- returns
- the last index at which the elements of this - NonEmptyArraystarting at that index match the elements of- Every- that, or- -1of no such subsequence exists.
 
-   final  def lastIndexOfSlice[U >: T](that: GenSeq[U], end: Int): IntFinds the last index before or at a given end index where this NonEmptyArraycontains a givenGenSeqas a slice.Finds the last index before or at a given end index where this NonEmptyArraycontains a givenGenSeqas a slice.- that
- the - GenSeqdefining the slice to look for
- end
- the end index 
- returns
- the last index - >=- endat which the elements of this- NonEmptyArraystarting at that index match the elements of- GenSeq- that, or- -1of no such subsequence exists.
 
-   final  def lastIndexOfSlice[U >: T](that: GenSeq[U]): IntFinds the last index where this NonEmptyArraycontains a givenGenSeqas a slice.Finds the last index where this NonEmptyArraycontains a givenGenSeqas a slice.- that
- the - GenSeqdefining the slice to look for
- returns
- the last index at which the elements of this - NonEmptyArraystarting at that index match the elements of- GenSeq- that, or- -1of no such subsequence exists.
 
-   final  def lastIndexWhere(p: (T) => Boolean, end: Int): IntFinds 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. 
- end
- the end index 
- returns
- the index - >=- endof the last element of this- NonEmptyArraythat satisfies the predicate- p, or- -1, if none exists.
 
-   final  def lastIndexWhere(p: (T) => Boolean): IntFinds 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 - NonEmptyArraythat satisfies the predicate- p, or- -1, if none exists.
 
-   final  def lastOption: Option[T]Returns the last element of this NonEmptyArray, wrapped in aSome.Returns the last element of this NonEmptyArray, wrapped in aSome.- returns
- the last element, wrapped in a - Some.
 
-   final  def length: IntThe length of this NonEmptyArray.The length of this NonEmptyArray.Note: lengthandsizeyield the same result, which will be>= 1.- returns
- the number of elements in this - NonEmptyArray.
 
-   final  def lengthCompare(len: Int): IntCompares the length of this NonEmptyArrayto a test value.Compares the length of this NonEmptyArrayto a test value.- len
- the test value that gets compared with the length. 
- returns
- a value - xwhere- x < 0 if this.length < len x == 0 if this.length == len x > 0 if this.length > len 
 
-   final  def map[U](f: (T) => U)(implicit classTag: ClassTag[U]): NonEmptyArray[U]Builds a new NonEmptyArrayby applying a function to all elements of thisNonEmptyArray.Builds a new NonEmptyArrayby applying a function to all elements of thisNonEmptyArray.- U
- the element type of the returned - NonEmptyArray.
- f
- the function to apply to each element. 
- returns
- a new - NonEmptyArrayresulting from applying the given function- fto each element of this- NonEmptyArrayand collecting the results.
 
-   final  def max[U >: T](implicit cmp: Ordering[U]): TFinds the largest element. Finds the largest element. - returns
- the largest element of this - NonEmptyArray.
 
-   final  def maxBy[U](f: (T) => U)(implicit cmp: Ordering[U]): TFinds the largest result after applying the given function to every element. Finds the largest result after applying the given function to every element. - returns
- the largest result of applying the given function to every element of this - NonEmptyArray.
 
-   final  def min[U >: T](implicit cmp: Ordering[U]): TFinds the smallest element. Finds the smallest element. - returns
- the smallest element of this - NonEmptyArray.
 
-   final  def minBy[U](f: (T) => U)(implicit cmp: Ordering[U]): TFinds the smallest result after applying the given function to every element. Finds the smallest result after applying the given function to every element. - returns
- the smallest result of applying the given function to every element of this - NonEmptyArray.
 
-   final  def mkString(start: String, sep: String, end: String): StringDisplays all elements of this NonEmptyArrayin a string using start, end, and separator strings.Displays all elements of this NonEmptyArrayin 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 - NonEmptyArray. The resulting string begins with the string- startand ends with the string- end. Inside, In the resulting string, the result of invoking- toStringon all elements of this- NonEmptyArrayare separated by the string- sep.
 
-   final  def mkString(sep: String): StringDisplays all elements of this NonEmptyArrayin a string using a separator string.Displays all elements of this NonEmptyArrayin a string using a separator string.- sep
- the separator string 
- returns
- a string representation of this - NonEmptyArray. In the resulting string, the result of invoking- toStringon all elements of this- NonEmptyArrayare separated by the string- sep.
 
-   final  def mkString: StringDisplays all elements of this NonEmptyArrayin a string.Displays all elements of this NonEmptyArrayin a string.- returns
- a string representation of this - NonEmptyArray. In the resulting string, the result of invoking- toStringon all elements of this- NonEmptyArrayfollow each other without any separator string.
 
-   final  def nonEmpty: BooleanReturns trueto indicate thisNonEmptyArray, like allNonEmptyArrays, is non-empty.Returns trueto indicate thisNonEmptyArray, like allNonEmptyArrays, is non-empty.- returns
- true 
 
-   final  def padTo[U >: T](len: Int, elem: U)(implicit classTag: ClassTag[U]): NonEmptyArray[U]A copy of this NonEmptyArraywith an element value appended until a given target length is reached.A copy of this NonEmptyArraywith an element value appended until a given target length is reached.- len
- the target length 
- elem
- he padding value 
- returns
- a new - NonEmptyArrayconsisting of all elements of this- NonEmptyArrayfollowed by the minimal number of occurrences of- elemso that the resulting- NonEmptyArrayhas a length of at least- len.
 
-   final  def patch[U >: T](from: Int, that: NonEmptyArray[U], replaced: Int)(implicit classTag: ClassTag[U]): NonEmptyArray[U]Produces a new NonEmptyArraywhere a slice of elements in thisNonEmptyArrayis replaced by anotherNonEmptyArrayProduces a new NonEmptyArraywhere a slice of elements in thisNonEmptyArrayis replaced by anotherNonEmptyArray- from
- the index of the first replaced element 
- that
- the - NonEmptyArraywhose elements should replace a slice in this- NonEmptyArray
- replaced
- the number of elements to drop in the original - NonEmptyArray
 
-   final  def permutations(implicit classTag: ClassTag[T]): Iterator[NonEmptyArray[T]]Iterates over distinct permutations. Iterates over distinct permutations. Here's an example: NonEmptyArray('a', 'b', 'b').permutations.toArray = Array(NonEmptyArray(a, b, b), NonEmptyArray(b, a, b), NonEmptyArray(b, b, a)) - returns
- an iterator that traverses the distinct permutations of this - NonEmptyArray.
 
-   final  def prefixLength(p: (T) => Boolean): IntReturns 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 - NonEmptyArraysuch that every element of the segment satisfies the predicate- p.
 
-   final  def product[U >: T](implicit num: Numeric[U]): UThe result of multiplying all the elements of this NonEmptyArray.The result of multiplying all the elements of this NonEmptyArray.This method can be invoked for any NonEmptyArray[T]for which an implicitNumeric[T]exists.- returns
- the product of all elements 
 
-   final  def reduce[U >: T](op: (U, U) => U): UReduces the elements of this NonEmptyArrayusing the specified associative binary operator.Reduces the elements of this NonEmptyArrayusing the specified associative binary operator.The order in which operations are performed on elements is unspecified and may be nondeterministic. - U
- a type parameter for the binary operator, a supertype of T. 
- op
- a binary operator that must be associative. 
- returns
- the result of applying reduce operator - opbetween all the elements of this- NonEmptyArray.
 
-   final  def reduceLeft[U >: T](op: (U, T) => U): UApplies a binary operator to all elements of this NonEmptyArray, going left to right.Applies a binary operator to all elements of this NonEmptyArray, going left to right.- U
- the result type of the binary operator. 
- op
- the binary operator. 
- returns
- the result of inserting - opbetween consecutive elements of this- NonEmptyArray, going left to right:- op(...op(op(x_1, x_2), x_3), ..., x_n) where x1, ..., xn are the elements of this- NonEmptyArray.
 
-   final  def reduceLeftOption[U >: T](op: (U, T) => U): Option[U]Applies a binary operator to all elements of this NonEmptyArray, going left to right, returning the result in aSome.Applies a binary operator to all elements of this NonEmptyArray, going left to right, returning the result in aSome.- U
- the result type of the binary operator. 
- op
- the binary operator. 
- returns
- a - Somecontaining the result of- reduceLeft(op)
 
-  final def reduceOption[U >: T](op: (U, U) => U): Option[U]
-   final  def reduceRight[U >: T](op: (T, U) => U): UApplies a binary operator to all elements of this NonEmptyArray, going right to left.Applies a binary operator to all elements of this NonEmptyArray, going right to left.- U
- the result of the binary operator 
- op
- the binary operator 
- returns
- the result of inserting - opbetween consecutive elements of this- NonEmptyArray, going right to left:- op(x_1, op(x_2, ... op(x_{n-1}, x_n)...))where x1, ..., xn are the elements of this- NonEmptyArray.
 
-   final  def reduceRightOption[U >: T](op: (T, U) => U): Option[U]Applies a binary operator to all elements of this NonEmptyArray, going right to left, returning the result in aSome.Applies a binary operator to all elements of this NonEmptyArray, going right to left, returning the result in aSome.- U
- the result of the binary operator 
- op
- the binary operator 
- returns
- a - Somecontaining the result of- reduceRight(op)
 
-   final  def reverse: NonEmptyArray[T]Returns new NonEmptyArraywith elements in reverse order.Returns new NonEmptyArraywith elements in reverse order.- returns
- a new - NonEmptyArraywith all elements of this- NonEmptyArrayin reversed order.
 
-   final  def reverseIterator: Iterator[T]An iterator yielding elements in reverse order. An iterator yielding elements in reverse order. Note: nonEmptyArray.reverseIteratoris the same asnonEmptyArray.reverse.iterator, but might be more efficient.- returns
- an iterator yielding the elements of this - NonEmptyArrayin reversed order
 
-   final  def reverseMap[U](f: (T) => U)(implicit classTag: ClassTag[U]): NonEmptyArray[U]Builds a new NonEmptyArrayby applying a function to all elements of thisNonEmptyArrayand collecting the results in reverse order.Builds a new NonEmptyArrayby applying a function to all elements of thisNonEmptyArrayand collecting the results in reverse order.Note: nonEmptyArray.reverseMap(f)is the same asnonEmptyArray.reverse.map(f), but might be more efficient.- U
- the element type of the returned - NonEmptyArray.
- f
- the function to apply to each element. 
- returns
- a new - NonEmptyArrayresulting from applying the given function- fto each element of this- NonEmptyArrayand collecting the results in reverse order.
 
-   final  def sameElements[U >: T](that: NonEmptyArray[U]): BooleanChecks if the given NonEmptyArraycontains the same elements in the same order as thisNonEmptyArray.Checks if the given NonEmptyArraycontains the same elements in the same order as thisNonEmptyArray.- that
- the - NonEmptyArraywith which to compare
- returns
- true, if both this and the given- NonEmptyArraycontain the same elements in the same order,- falseotherwise.
 
-   final  def sameElements[U >: T](that: Every[U]): BooleanChecks if the given Everycontains the same elements in the same order as thisNonEmptyArray.Checks if the given Everycontains the same elements in the same order as thisNonEmptyArray.- that
- the - Everywith which to compare
- returns
- true, if both this and the given- Everycontain the same elements in the same order,- falseotherwise.
 
-   final  def sameElements[U >: T](that: GenIterable[U]): BooleanChecks if the given GenIterablecontains the same elements in the same order as thisNonEmptyArray.Checks if the given GenIterablecontains the same elements in the same order as thisNonEmptyArray.- that
- the - GenIterablewith which to compare
- returns
- true, if both this- NonEmptyArrayand the given- GenIterablecontain the same elements in the same order,- falseotherwise.
 
-   final  def scan[U >: T](z: U)(op: (U, U) => U)(implicit classTag: ClassTag[U]): NonEmptyArray[U]Computes a prefix scan of the elements of this NonEmptyArray.Computes a prefix scan of the elements of this NonEmptyArray.Note: The neutral element z may be applied more than once. Here are some examples: NonEmptyArray(1, 2, 3).scan(0)(_ + _) == NonEmptyArray(0, 1, 3, 6) NonEmptyArray(1, 2, 3).scan("z")(_ + _.toString) == NonEmptyArray("z", "z1", "z12", "z123") - U
- a type parameter for the binary operator, a supertype of T, and the type of the resulting - NonEmptyArray.
- z
- a neutral element for the scan operation; may be added to the result an arbitrary number of times, and must not change the result (e.g., - Nilfor list concatenation, 0 for addition, or 1 for multiplication.)
- op
- a binary operator that must be associative 
- returns
- a new - NonEmptyArraycontaining the prefix scan of the elements in this- NonEmptyArray
 
-   final  def scanLeft[B](z: B)(op: (B, T) => B)(implicit classTag: ClassTag[B]): NonEmptyArray[B]Produces a NonEmptyArraycontaining cumulative results of applying the operator going left to right.Produces a NonEmptyArraycontaining cumulative results of applying the operator going left to right.Here are some examples: NonEmptyArray(1, 2, 3).scanLeft(0)(_ + _) == NonEmptyArray(0, 1, 3, 6) NonEmptyArray(1, 2, 3).scanLeft("z")(_ + _) == NonEmptyArray("z", "z1", "z12", "z123") - B
- the result type of the binary operator and type of the resulting - NonEmptyArray
- z
- the start value. 
- op
- the binary operator. 
- returns
- a new - NonEmptyArraycontaining the intermediate results of inserting- opbetween consecutive elements of this- NonEmptyArray, going left to right, with the start value,- z, on the left.
 
-   final  def scanRight[B](z: B)(op: (T, B) => B)(implicit classTag: ClassTag[B]): NonEmptyArray[B]Produces a NonEmptyArraycontaining cumulative results of applying the operator going right to left.Produces a NonEmptyArraycontaining cumulative results of applying the operator going right to left.Here are some examples: NonEmptyArray(1, 2, 3).scanRight(0)(_ + _) == NonEmptyArray(6, 5, 3, 0) NonEmptyArray(1, 2, 3).scanRight("z")(_ + _) == NonEmptyArray("123z", "23z", "3z", "z") - B
- the result of the binary operator and type of the resulting - NonEmptyArray
- z
- the start value 
- op
- the binary operator 
- returns
- a new - NonEmptyArraycontaining the intermediate results of inserting- opbetween consecutive elements of this- NonEmptyArray, going right to left, with the start value,- z, on the right.
 
-   final  def segmentLength(p: (T) => Boolean, from: Int): IntComputes 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. 
 
-   final  def size: IntThe size of this NonEmptyArray.The size of this NonEmptyArray.Note: lengthandsizeyield the same result, which will be>= 1.- returns
- the number of elements in this - NonEmptyArray.
 
-   final  def sliding(size: Int, step: Int)(implicit classTag: ClassTag[T]): Iterator[NonEmptyArray[T]]Groups elements in fixed size blocks by passing a “sliding window” over them (as opposed to partitioning them, as is done in grouped.), moving the sliding window by a given stepeach time.Groups elements in fixed size blocks by passing a “sliding window” over them (as opposed to partitioning them, as is done in grouped.), moving the sliding window by a given stepeach time.- size
- the number of elements per group 
- step
- the distance between the first elements of successive groups 
- returns
- an iterator producing - NonEmptyArrays of size- size, except the last and the only element will be truncated if there are fewer elements than- size.
 
-   final  def sliding(size: Int)(implicit classTag: ClassTag[T]): Iterator[NonEmptyArray[T]]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 
- returns
- an iterator producing - NonEmptyArrays of size- size, except the last and the only element will be truncated if there are fewer elements than- size.
 
-   final  def sortBy[U](f: (T) => U)(implicit ord: Ordering[U]): NonEmptyArray[T]Sorts this NonEmptyArrayaccording to theOrderingof the result of applying the given function to every element.Sorts this NonEmptyArrayaccording to theOrderingof the result of applying the given function to every element.- U
- the target type of the transformation - f, and the type where the- Ordering- ordis defined.
- f
- the transformation function mapping elements to some other domain - U.
- ord
- the ordering assumed on domain - U.
- returns
- a - NonEmptyArrayconsisting of the elements of this- NonEmptyArraysorted according to the- Orderingwhere- x < y if ord.lt(f(x), f(y)).
 
-   final  def sortWith(lt: (T, T) => Boolean): NonEmptyArray[T]Sorts this NonEmptyArrayaccording to a comparison function.Sorts this NonEmptyArrayaccording 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 sortedNonEmptyArrayas in the original.- returns
- a - NonEmptyArrayconsisting of the elements of this- NonEmptyArraysorted according to the comparison function- lt.
 
-   final  def sorted[U >: T](implicit ord: Ordering[U], classTag: ClassTag[U]): NonEmptyArray[U]Sorts this NonEmptyArrayaccording to anOrdering.Sorts this NonEmptyArrayaccording to anOrdering.The sort is stable. That is, elements that are equal (as determined by lt) appear in the same order in the sortedNonEmptyArrayas in the original.- ord
- the - Orderingto be used to compare elements.
- returns
- a - NonEmptyArrayconsisting of the elements of this- NonEmptyArraysorted according to the comparison function- lt.
 
-   final  def startsWith[B](that: NonEmptyArray[B], offset: Int): BooleanIndicates whether this NonEmptyArraystarts with the givenNonEmptyArrayat the given index.Indicates whether this NonEmptyArraystarts with the givenNonEmptyArrayat the given index.- that
- the - NonEmptyArrayslice to look for in this- NonEmptyArray
- offset
- the index at which this - NonEmptyArrayis searched.
- returns
- trueif this- NonEmptyArrayhas- thatas a slice at the index- offset,- falseotherwise.
 
-   final  def startsWith[B](that: Every[B], offset: Int): BooleanIndicates whether this NonEmptyArraystarts with the givenEveryat the given index.Indicates whether this NonEmptyArraystarts with the givenEveryat the given index.- that
- the - Everyslice to look for in this- NonEmptyArray
- offset
- the index at which this - NonEmptyArrayis searched.
- returns
- trueif this- NonEmptyArrayhas- thatas a slice at the index- offset,- falseotherwise.
 
-   final  def startsWith[B](that: NonEmptyArray[B]): BooleanIndicates whether this NonEmptyArraystarts with the givenNonEmptyArray.Indicates whether this NonEmptyArraystarts with the givenNonEmptyArray.- that
- the - NonEmptyArrayto test
- returns
- trueif this collection has- thatas a prefix,- falseotherwise.
 
-   final  def startsWith[B](that: Every[B]): BooleanIndicates whether this NonEmptyArraystarts with the givenEvery.Indicates whether this NonEmptyArraystarts with the givenEvery.- that
- the - Everyto test
- returns
- trueif this collection has- thatas a prefix,- falseotherwise.
 
-   final  def startsWith[B](that: GenSeq[B], offset: Int): BooleanIndicates whether this NonEmptyArraystarts with the givenGenSeqat the given index.Indicates whether this NonEmptyArraystarts with the givenGenSeqat the given index.- that
- the - GenSeqslice to look for in this- NonEmptyArray
- offset
- the index at which this - NonEmptyArrayis searched.
- returns
- trueif this- NonEmptyArrayhas- thatas a slice at the index- offset,- falseotherwise.
 
-   final  def startsWith[B](that: GenSeq[B]): BooleanIndicates whether this NonEmptyArraystarts with the givenGenSeq.Indicates whether this NonEmptyArraystarts with the givenGenSeq.- that
- the - GenSeqslice to look for in this- NonEmptyArray
- returns
- trueif this- NonEmptyArrayhas- thatas a prefix,- falseotherwise.
 
-    def stringPrefix: StringReturns "NonEmptyArray", the prefix of this object'stoStringrepresentation.Returns "NonEmptyArray", the prefix of this object'stoStringrepresentation.- returns
- the string - "NonEmptyArray"
 
-   final  def sum[U >: T](implicit num: Numeric[U]): UThe result of summing all the elements of this NonEmptyArray.The result of summing all the elements of this NonEmptyArray.This method can be invoked for any NonEmptyArray[T]for which an implicitNumeric[T]exists.- returns
- the sum of all elements 
 
-  val toArray: Array[T]
-   final  def toBuffer[U >: T]: Buffer[U]Converts this NonEmptyArrayto a mutable buffer.Converts this NonEmptyArrayto a mutable buffer.- returns
- a buffer containing all elements of this - NonEmptyArray.
 
-   final  def toIndexedSeq: IndexedSeq[T]Converts this NonEmptyArrayto an immutableIndexedSeq.Converts this NonEmptyArrayto an immutableIndexedSeq.- returns
- an immutable - IndexedSeqcontaining all elements of this- NonEmptyArray.
 
-   final  def toIterable: Iterable[T]Converts this NonEmptyArrayto an iterable collection.Converts this NonEmptyArrayto an iterable collection.- returns
- an - Iterablecontaining all elements of this- NonEmptyArray.
 
-   final  def toIterator: Iterator[T]Returns an Iteratorover the elements in thisNonEmptyArray.Returns an Iteratorover the elements in thisNonEmptyArray.- returns
- an - Iteratorcontaining all elements of this- NonEmptyArray.
 
-   final  def toList[U >: T]: List[U]Converts this NonEmptyArrayto a list.Converts this NonEmptyArrayto a list.- returns
- a list containing all elements of this - NonEmptyArray. A- ClassTagmust be available for the element type of this- NonEmptyArray.
 
-   final  def toMap[K, V](implicit ev: <:<[T, (K, V)]): Map[K, V]Converts this NonEmptyArrayto a map.Converts this NonEmptyArrayto a map.This method is unavailable unless the elements are members of Tuple2, each((K, V))becoming a key-value pair in the map. Duplicate keys will be overwritten by later keys.- returns
- a map of type - immutable.Map[K, V]containing all key/value pairs of type- (K, V)of this- NonEmptyArray.
 
-   final  def toSeq: Seq[T]Converts this NonEmptyArrayto an immutableIndexedSeq.Converts this NonEmptyArrayto an immutableIndexedSeq.- returns
- an immutable - IndexedSeqcontaining all elements of this- NonEmptyArray.
 
-   final  def toSet[U >: T]: Set[U]Converts this NonEmptyArrayto a set.Converts this NonEmptyArrayto a set.- returns
- a set containing all elements of this - NonEmptyArray.
 
-   final  def toStream: Stream[T]Converts this NonEmptyArrayto a stream.Converts this NonEmptyArrayto a stream.- returns
- a stream containing all elements of this - NonEmptyArray.
 
-    def toString(): StringReturns a string representation of this NonEmptyArray.Returns a string representation of this NonEmptyArray.- returns
- the string - "NonEmptyArray"followed by the result of invoking- toStringon this- NonEmptyArray's elements, surrounded by parentheses.
 - Definition Classes
- NonEmptyArray → Any
 
-   final  def toVector: Vector[T]Converts this NonEmptyArrayto aVector.Converts this NonEmptyArrayto aVector.- returns
- a - Vectorcontaining all elements of this- NonEmptyArray.
 
-  final def transpose[U](implicit ev: <:<[T, NonEmptyArray[U]], classTag: ClassTag[U]): NonEmptyArray[NonEmptyArray[U]]
-   final  def unzip[L, R](implicit asPair: (T) => (L, R), classTagL: ClassTag[L], classTagR: ClassTag[R]): (NonEmptyArray[L], NonEmptyArray[R])Converts this NonEmptyArrayof pairs into twoNonEmptyArrays of the first and second half of each pair.Converts this NonEmptyArrayof pairs into twoNonEmptyArrays of the first and second half of each pair.- L
- the type of the first half of the element pairs 
- R
- the type of the second half of the element pairs 
- asPair
- an implicit conversion that asserts that the element type of this - NonEmptyArrayis a pair.
- returns
- a pair of - NonEmptyArrays, containing the first and second half, respectively, of each element pair of this- NonEmptyArray.
 
-   final  def unzip3[L, M, R](implicit asTriple: (T) => (L, M, R), classTagL: ClassTag[L], classTagM: ClassTag[M], classTagR: ClassTag[R]): (NonEmptyArray[L], NonEmptyArray[M], NonEmptyArray[R])Converts this NonEmptyArrayof triples into threeNonEmptyArrays of the first, second, and and third element of each triple.Converts this NonEmptyArrayof triples into threeNonEmptyArrays of the first, second, and and third element of each triple.- L
- the type of the first member of the element triples 
- R
- the type of the third member of the element triples 
- asTriple
- an implicit conversion that asserts that the element type of this - NonEmptyArrayis a triple.
- returns
- a triple of - NonEmptyArrays, containing the first, second, and third member, respectively, of each element triple of this- NonEmptyArray.
 
-   final  def updated[U >: T](idx: Int, elem: U)(implicit classTag: ClassTag[U]): NonEmptyArray[U]A copy of this NonEmptyArraywith one single replaced element.A copy of this NonEmptyArraywith one single replaced element.- idx
- the position of the replacement 
- elem
- the replacing element 
- returns
- a copy of this - NonEmptyArraywith the element at position- idxreplaced by- elem.
 - Exceptions thrown
- IndexOutOfBoundsExceptionif the passed index is greater than or equal to the length of this- NonEmptyArray
 
-   final  def zipAll[O, U >: T](other: Iterable[O], thisElem: U, otherElem: O): NonEmptyArray[(U, O)]Returns a NonEmptyArrayformed from thisNonEmptyArrayand an iterable collection by combining corresponding elements in pairs.Returns a NonEmptyArrayformed from thisNonEmptyArrayand an iterable collection by combining corresponding elements in pairs. If one of the two collections is shorter than the other, placeholder elements will be used to extend the shorter collection to the length of the longer.- other
- the - Iterableproviding the second half of each result pair
- thisElem
- the element to be used to fill up the result if this - NonEmptyArrayis shorter than- that- Iterable.
- returns
- a new - NonEmptyArraycontaining pairs consisting of corresponding elements of this- NonEmptyArrayand- that. The length of the returned collection is the maximum of the lengths of this- NonEmptyArrayand- that. If this- NonEmptyArrayis shorter than- that,- thisElemvalues are used to pad the result. If- thatis shorter than this- NonEmptyArray,- thatElemvalues are used to pad the result.
 
-   final  def zipWithIndex: NonEmptyArray[(T, Int)]Zips this NonEmptyArraywith its indices.Zips this NonEmptyArraywith its indices.- returns
- A new - NonEmptyArraycontaining pairs consisting of all elements of this- NonEmptyArraypaired with their index. Indices start at 0.