final class NonEmptyList[+T] extends AnyVal
A non-empty list: an ordered, immutable, non-empty collection of elements with LinearSeq performance characteristics.
The purpose of NonEmptyList is to allow you to express in a type that a List is non-empty, thereby eliminating the
need for (and potential exception from) a run-time check for non-emptiness. For a non-empty sequence with IndexedSeq
performance, see Every.
 Constructing NonEmptyLists 
You can construct a NonEmptyList by passing one or more elements to the NonEmptyList.apply factory method:
scala> NonEmptyList(1, 2, 3) res0: org.scalactic.anyvals.NonEmptyList[Int] = NonEmptyList(1, 2, 3)
Alternatively you can cons elements onto the End singleton object, similar to making a List starting with Nil:
scala> 1 :: 2 :: 3 :: Nil res0: List[Int] = List(1, 2, 3)
scala> 1 :: 2 :: 3 :: End res1: org.scalactic.NonEmptyList[Int] = NonEmptyList(1, 2, 3)
Note that although Nil is a List[Nothing], End is
not a NonEmptyList[Nothing], because no empty NonEmptyList exists. (A non-empty list is a series
of connected links; if you have no links, you have no non-empty list.)
scala> val nil: List[Nothing] = Nil nil: List[Nothing] = List()
scala> val nada: NonEmptyList[Nothing] = End <console>:16: error: type mismatch; found : org.scalactic.anyvals.End.type required: org.scalactic.anyvals.NonEmptyList[Nothing] val nada: NonEmptyList[Nothing] = End ^
 Working with NonEmptyLists 
NonEmptyList 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> List(1).tail res6: List[Int] = List()
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, NonEmptyList defines a method corresponding to every such Seq
method. Here are some examples:
NonEmptyList(1, 2, 3).map(_ + 1) // Result: NonEmptyList(2, 3, 4) NonEmptyList(1).map(_ + 1) // Result: NonEmptyList(2) NonEmptyList(1, 2, 3).containsSlice(NonEmptyList(2, 3)) // Result: true NonEmptyList(1, 2, 3).containsSlice(NonEmptyList(3, 4)) // Result: false NonEmptyList(-1, -2, 3, 4, 5).minBy(_.abs) // Result: -1
NonEmptyList does not currently define any methods corresponding to Seq methods that could result in
an empty Seq. However, an implicit converison from NonEmptyList to List
is defined in the NonEmptyList 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 NonEmptyList, even though filter could result
in an empty sequence—but the result type will be List instead of NonEmptyList:
NonEmptyList(1, 2, 3).filter(_ < 10) // Result: List(1, 2, 3) NonEmptyList(1, 2, 3).filter(_ > 10) // Result: List()
You can use NonEmptyLists in for expressions. The result will be an NonEmptyList unless
you use a filter (an if clause). Because filters are desugared to invocations of filter, the
result type will switch to a List at that point. Here are some examples:
scala> import org.scalactic.anyvals._
import org.scalactic.anyvals._
scala> for (i <- NonEmptyList(1, 2, 3)) yield i + 1
res0: org.scalactic.anyvals.NonEmptyList[Int] = NonEmptyList(2, 3, 4)
scala> for (i <- NonEmptyList(1, 2, 3) if i < 10) yield i + 1
res1: List[Int] = List(2, 3, 4)
scala> for {
     |   i <- NonEmptyList(1, 2, 3)
     |   j <- NonEmptyList('a', 'b', 'c')
     | } yield (i, j)
res3: org.scalactic.anyvals.NonEmptyList[(Int, Char)] =
        NonEmptyList((1,a), (1,b), (1,c), (2,a), (2,b), (2,c), (3,a), (3,b), (3,c))
scala> for {
     |   i <- NonEmptyList(1, 2, 3) if i < 10
     |   j <- NonEmptyList('a', 'b', 'c')
     | } yield (i, j)
res6: List[(Int, Char)] =
        List((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 - NonEmptyList
- Source
- NonEmptyList.scala
- Alphabetic
- By Inheritance
- NonEmptyList
- 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]): NonEmptyList[U]Returns a new NonEmptyListcontaining the elements of thisNonEmptyListfollowed by the elements of the passedGenTraversableOnce.Returns a new NonEmptyListcontaining the elements of thisNonEmptyListfollowed by the elements of the passedGenTraversableOnce. The element type of the resultingNonEmptyListis the most specific superclass encompassing the element types of thisNonEmptyListand the passedGenTraversableOnce.- U
- the element type of the returned - NonEmptyList
- other
- the - GenTraversableOnceto append
- returns
- a new - NonEmptyListthat contains all the elements of this- NonEmptyListfollowed by all elements of- other.
 
-    def ++[U >: T](other: Every[U]): NonEmptyList[U]Returns a new NonEmptyListcontaining the elements of thisNonEmptyListfollowed by the elements of the passedEvery.Returns a new NonEmptyListcontaining the elements of thisNonEmptyListfollowed by the elements of the passedEvery. The element type of the resultingNonEmptyListis the most specific superclass encompassing the element types of thisNonEmptyListand the passedEvery.- U
- the element type of the returned - NonEmptyList
- other
- the - Everyto append
- returns
- a new - NonEmptyListthat contains all the elements of this- NonEmptyListfollowed by all elements of- other.
 
-    def ++[U >: T](other: NonEmptyList[U]): NonEmptyList[U]Returns a new NonEmptyListcontaining the elements of thisNonEmptyListfollowed by the elements of the passedNonEmptyList.Returns a new NonEmptyListcontaining the elements of thisNonEmptyListfollowed by the elements of the passedNonEmptyList. The element type of the resultingNonEmptyListis the most specific superclass encompassing the element types of this and the passedNonEmptyList.- U
- the element type of the returned - NonEmptyList
- other
- the - NonEmptyListto append
- returns
- a new - NonEmptyListthat contains all the elements of this- NonEmptyListfollowed by all elements of- other.
 
-   final  def +:[U >: T](element: U): NonEmptyList[U]Returns a new NonEmptyListwith the given element prepended.Returns a new NonEmptyListwith 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 - NonEmptyList
- returns
- a new - NonEmptyListconsisting of- elementfollowed by all elements of this- NonEmptyList.
 
-    def :+[U >: T](element: U): NonEmptyList[U]Returns a new NonEmptyListwith the given element appended.Returns a new NonEmptyListwith the given element appended.Note a mnemonic for +:vs.:+is: the COLon goes on the COLlection side.- element
- the element to append to this - NonEmptyList
- returns
- a new - NonEmptyListconsisting of all elements of this- NonEmptyListfollowed by- element.
 
-   final  def ::[U >: T](element: U): NonEmptyList[U]Adds an element to the beginning of this NonEmptyList.Adds an element to the beginning of this NonEmptyList.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 - NonEmptyList
- returns
- a - NonEmptyListthat contains- elementas first element and that continues with this- NonEmptyList.
 
-    def :::[U >: T](other: GenTraversableOnce[U]): NonEmptyList[U]Returns a new NonEmptyListcontaining the elements of thisNonEmptyListfollowed by the elements of the passedGenTraversableOnce.Returns a new NonEmptyListcontaining the elements of thisNonEmptyListfollowed by the elements of the passedGenTraversableOnce. The element type of the resultingNonEmptyListis the most specific superclass encompassing the element types of thisNonEmptyListand the passedGenTraversableOnce.- U
- the element type of the returned - NonEmptyList
- other
- the - GenTraversableOnceto append
- returns
- a new - NonEmptyListthat contains all the elements of this- NonEmptyListfollowed by all elements of- other.
 
-    def :::[U >: T](other: Every[U]): NonEmptyList[U]Returns a new NonEmptyListcontaining the elements of thisNonEmptyListfollowed by the elements of the passedEvery.Returns a new NonEmptyListcontaining the elements of thisNonEmptyListfollowed by the elements of the passedEvery. The element type of the resultingNonEmptyListis the most specific superclass encompassing the element types of this and the passedEvery.- U
- the element type of the returned - NonEmptyList
- other
- the - Everyto append
- returns
- a new - NonEmptyListthat contains all the elements of this- NonEmptyListfollowed by all elements of- other.
 
-    def :::[U >: T](other: NonEmptyList[U]): NonEmptyList[U]Returns a new NonEmptyListcontaining the elements of thisNonEmptyListfollowed by the elements of the passedNonEmptyList.Returns a new NonEmptyListcontaining the elements of thisNonEmptyListfollowed by the elements of the passedNonEmptyList. The element type of the resultingNonEmptyListis the most specific superclass encompassing the element types of this and the passedNonEmptyList.- U
- the element type of the returned - NonEmptyList
- other
- the - NonEmptyListto append
- returns
- a new - NonEmptyListthat contains all the elements of this- NonEmptyListfollowed by all elements of- other.
 
-   final  def ==(arg0: Any): Boolean- Definition Classes
- Any
 
-   final  def addString(sb: StringBuilder, start: String, sep: String, end: String): StringBuilderAppends all elements of this NonEmptyListto a string builder using start, end, and separator strings.Appends all elements of this NonEmptyListto 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 thisNonEmptyList, 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 NonEmptyListto a string builder using a separator string.Appends all elements of this NonEmptyListto a string builder using a separator string. The written text will consist of a concatenation of the result of invokingtoStringon of every element of thisNonEmptyList, 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 NonEmptyListto a string builder.Appends all elements of this NonEmptyListto a string builder. The written text will consist of a concatenation of the result of invokingtoStringon of every element of thisNonEmptyList, 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 NonEmptyList.Selects an element by its index in the NonEmptyList.- returns
- the element of this - NonEmptyListat index- idx, where 0 indicates the first element.
 
-   final  def asInstanceOf[T0]: T0- Definition Classes
- Any
 
-   final  def collectFirst[U](pf: PartialFunction[T, U]): Option[U]Finds the first element of this NonEmptyListfor which the given partial function is defined, if any, and applies the partial function to it.Finds the first element of this NonEmptyListfor 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: Any): BooleanIndicates whether this NonEmptyListcontains a given value as an element.Indicates whether this NonEmptyListcontains a given value as an element.- elem
- the element to look for 
- returns
- true if this - NonEmptyListhas an element that is equal (as determined by- ==)to- elem, false otherwise.
 
-   final  def containsSlice[B](that: NonEmptyList[B]): BooleanIndicates whether this NonEmptyListcontains a givenNonEmptyListas a slice.Indicates whether this NonEmptyListcontains a givenNonEmptyListas a slice.- that
- the - NonEmptyListslice to look for
- returns
- true if this - NonEmptyListcontains a slice with the same elements as- that, otherwise- false.
 
-   final  def containsSlice[B](that: Every[B]): BooleanIndicates whether this NonEmptyListcontains a givenEveryas a slice.Indicates whether this NonEmptyListcontains a givenEveryas a slice.- that
- the - Everyslice to look for
- returns
- true if this - NonEmptyListcontains a slice with the same elements as- that, otherwise- false.
 
-   final  def containsSlice[B](that: GenSeq[B]): BooleanIndicates whether this NonEmptyListcontains a givenGenSeqas a slice.Indicates whether this NonEmptyListcontains a givenGenSeqas a slice.- that
- the - GenSeqslice to look for
- returns
- true if this - NonEmptyListcontains 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 NonEmptyListto an array.Copies values of this NonEmptyListto an array. Fills the given arrayarrwith at mostlenelements of thisNonEmptyList, beginning at indexstart. Copying will stop once either the end of the currentNonEmptyListis 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 NonEmptyListto an array.Copies values of this NonEmptyListto an array. Fills the given arrayarrwith values of thisNonEmptyList, beginning at indexstart. Copying will stop once either the end of the currentNonEmptyListis 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 NonEmptyListto an array.Copies values of this NonEmptyListto an array. Fills the given arrayarrwith values of thisNonEmptyList. Copying will stop once either the end of the currentNonEmptyListis 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 NonEmptyListto a buffer.Copies all elements of this NonEmptyListto a buffer.- buf
- the buffer to which elements are copied 
 
-   final  def corresponds[B](that: NonEmptyList[B])(p: (T, B) => Boolean): BooleanIndicates whether every element of this NonEmptyListrelates to the corresponding element of a givenNonEmptyListby satisfying a given predicate.Indicates whether every element of this NonEmptyListrelates to the corresponding element of a givenNonEmptyListby satisfying a given predicate.- B
- the type of the elements of - that
- that
- the - NonEmptyListto compare for correspondence
- p
- the predicate, which relates elements from this and the passed - NonEmptyList
- returns
- true if this and the passed - NonEmptyListhave the same length and- p(x, y)is- truefor all corresponding elements- xof this- NonEmptyListand- yof that, otherwise- false.
 
-   final  def corresponds[B](that: Every[B])(p: (T, B) => Boolean): BooleanIndicates whether every element of this NonEmptyListrelates to the corresponding element of a givenEveryby satisfying a given predicate.Indicates whether every element of this NonEmptyListrelates 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 - NonEmptyListand the passed- Every
- returns
- true if this - NonEmptyListand the passed- Everyhave the same length and- p(x, y)is- truefor all corresponding elements- xof this- NonEmptyListand- yof that, otherwise- false.
 
-   final  def corresponds[B](that: GenSeq[B])(p: (T, B) => Boolean): BooleanIndicates whether every element of this NonEmptyListrelates to the corresponding element of a givenGenSeqby satisfying a given predicate.Indicates whether every element of this NonEmptyListrelates 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 - NonEmptyListand the passed- GenSeq
- returns
- true if this - NonEmptyListand the passed- GenSeqhave the same length and- p(x, y)is- truefor all corresponding elements- xof this- NonEmptyListand- yof that, otherwise- false.
 
-   final  def count(p: (T) => Boolean): IntCounts the number of elements in this NonEmptyListthat satisfy a predicate.Counts the number of elements in this NonEmptyListthat satisfy a predicate.- p
- the predicate used to test elements. 
- returns
- the number of elements satisfying the predicate - p.
 
-   final  def distinct: NonEmptyList[T]Builds a new NonEmptyListfrom thisNonEmptyListwithout any duplicate elements.Builds a new NonEmptyListfrom thisNonEmptyListwithout any duplicate elements.- returns
- A new - NonEmptyListthat contains the first occurrence of every element of this- NonEmptyList.
 
-   final  def endsWith[B](that: NonEmptyList[B]): BooleanIndicates whether this NonEmptyListends with the givenNonEmptyList.Indicates whether this NonEmptyListends with the givenNonEmptyList.- that
- the - NonEmptyListto test
- returns
- trueif this- NonEmptyListhas- thatas a suffix,- falseotherwise.
 
-   final  def endsWith[B](that: Every[B]): BooleanIndicates whether this NonEmptyListends with the givenEvery.Indicates whether this NonEmptyListends with the givenEvery.- that
- the - Everyto test
- returns
- trueif this- NonEmptyListhas- thatas a suffix,- falseotherwise.
 
-   final  def endsWith[B](that: GenSeq[B]): BooleanIndicates whether this NonEmptyListends with the givenGenSeq.Indicates whether this NonEmptyListends with the givenGenSeq.- that
- the sequence to test 
- returns
- trueif this- NonEmptyListhas- thatas a suffix,- falseotherwise.
 
-   final  def exists(p: (T) => Boolean): BooleanIndicates whether a predicate holds for at least one of the elements of this NonEmptyList.Indicates whether a predicate holds for at least one of the elements of this NonEmptyList.- returns
- trueif the given predicate- pholds for some of the elements of this- NonEmptyList, otherwise- false.
 
-   final  def find(p: (T) => Boolean): Option[T]Finds the first element of this NonEmptyListthat satisfies the given predicate, if any.Finds the first element of this NonEmptyListthat satisfies the given predicate, if any.- p
- the predicate used to test elements 
- returns
- an - Somecontaining the first element in this- NonEmptyListthat satisfies- p, or- Noneif none exists.
 
-   final  def flatMap[U](f: (T) => NonEmptyList[U]): NonEmptyList[U]Builds a new NonEmptyListby applying a function to all elements of thisNonEmptyListand using the elements of the resultingNonEmptyLists.Builds a new NonEmptyListby applying a function to all elements of thisNonEmptyListand using the elements of the resultingNonEmptyLists.- U
- the element type of the returned - NonEmptyList
- f
- the function to apply to each element. 
- returns
- a new - NonEmptyListcontaining elements obtained by applying the given function- fto each element of this- NonEmptyListand concatenating the elements of resulting- NonEmptyLists.
 
-   final  def flatten[B](implicit ev: <:<[T, NonEmptyList[B]]): NonEmptyList[B]Converts this NonEmptyListofNonEmptyLists into aNonEmptyListformed by the elements of the nestedNonEmptyLists.Converts this NonEmptyListofNonEmptyLists into aNonEmptyListformed by the elements of the nestedNonEmptyLists.Note: You cannot use this flattenmethod on aNonEmptyListthat contains aGenTraversableOnces, because if all the nestedGenTraversableOnces were empty, you'd end up with an emptyNonEmptyList.- returns
- a new - NonEmptyListresulting from concatenating all nested- NonEmptyLists.
 
-   final  def fold[U >: T](z: U)(op: (U, U) => U): UFolds the elements of this NonEmptyListusing the specified associative binary operator.Folds the elements of this NonEmptyListusing 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 NonEmptyList, going left to right.Applies a binary operator to a start value and all elements of this NonEmptyList, 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- NonEmptyList, 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- NonEmptyList.
 
-   final  def foldRight[B](z: B)(op: (T, B) => B): BApplies a binary operator to all elements of this NonEmptyListand a start value, going right to left.Applies a binary operator to all elements of this NonEmptyListand 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- NonEmptyList, 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- NonEmptyList.
 
-   final  def forall(p: (T) => Boolean): BooleanIndicates whether a predicate holds for all elements of this NonEmptyList.Indicates whether a predicate holds for all elements of this NonEmptyList.- p
- the predicate used to test elements. 
- returns
- trueif the given predicate- pholds for all elements of this- NonEmptyList, otherwise- false.
 
-   final  def foreach(f: (T) => Unit): UnitApplies a function fto all elements of thisNonEmptyList.Applies a function fto all elements of thisNonEmptyList.- 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): Map[K, NonEmptyList[T]]Partitions this NonEmptyListinto a map ofNonEmptyLists according to some discriminator function.Partitions this NonEmptyListinto a map ofNonEmptyLists 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 - NonEmptyLists such that the following invariant holds:- (nonEmptyList.toList partition f)(k) = xs filter (x => f(x) == k) That is, every key- kis bound to a- NonEmptyListof those elements- xfor which- f(x)equals- k.
 
-   final  def grouped(size: Int): Iterator[NonEmptyList[T]]Partitions elements into fixed size NonEmptyLists.Partitions elements into fixed size NonEmptyLists.- size
- the number of elements per group 
- returns
- An iterator producing - NonEmptyLists of size- size, except the last will be truncated if the elements don't divide evenly.
 
-   final  def hasDefiniteSize: BooleanReturns trueto indicate thisNonEmptyListhas a definite size, since allNonEmptyLists are strict collections.
-   final  def head: TSelects the first element of this NonEmptyList.Selects the first element of this NonEmptyList.- returns
- the first element of this - NonEmptyList.
 
-   final  def headOption: Option[T]Selects the first element of this NonEmptyListand returns it wrapped in aSome.Selects the first element of this NonEmptyListand returns it wrapped in aSome.- returns
- the first element of this - NonEmptyList, wrapped in a- Some.
 
-   final  def indexOf[U >: T](elem: U, from: Int): IntFinds index of first occurrence of some value in this NonEmptyListafter or at some start index.Finds index of first occurrence of some value in this NonEmptyListafter 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- NonEmptyListthat is equal (as determined by- ==) to- elem, or- -1, if none exists.
 
-   final  def indexOf[U >: T](elem: U): IntFinds index of first occurrence of some value in this NonEmptyList.Finds index of first occurrence of some value in this NonEmptyList.- elem
- the element value to search for. 
- returns
- the index of the first element of this - NonEmptyListthat is equal (as determined by- ==) to- elem, or- -1, if none exists.
 
-   final  def indexOfSlice[U >: T](that: NonEmptyList[U], from: Int): IntFinds first index after or at a start index where this NonEmptyListcontains a givenNonEmptyListas a slice.Finds first index after or at a start index where this NonEmptyListcontains a givenNonEmptyListas a slice.- that
- the - NonEmptyListdefining the slice to look for
- from
- the start index 
- returns
- the first index - >=- fromsuch that the elements of this- NonEmptyListstarting at this index match the elements of- NonEmptyList- 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 NonEmptyListcontains a givenEveryas a slice.Finds first index after or at a start index where this NonEmptyListcontains 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- NonEmptyListstarting at this index match the elements of- Every- that, or- -1of no such subsequence exists.
 
-   final  def indexOfSlice[U >: T](that: NonEmptyList[U]): IntFinds first index where this NonEmptyListcontains a givenNonEmptyListas a slice.Finds first index where this NonEmptyListcontains a givenNonEmptyListas a slice.- that
- the - NonEmptyListdefining the slice to look for
- returns
- the first index such that the elements of this - NonEmptyListstarting at this index match the elements of- NonEmptyList- that, or- -1of no such subsequence exists.
 
-   final  def indexOfSlice[U >: T](that: Every[U]): IntFinds first index where this NonEmptyListcontains a givenEveryas a slice.Finds first index where this NonEmptyListcontains a givenEveryas a slice.- that
- the - Everydefining the slice to look for
- returns
- the first index such that the elements of this - NonEmptyListstarting 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 NonEmptyListcontains a givenGenSeqas a slice.Finds first index after or at a start index where this NonEmptyListcontains 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- NonEmptyListstarting 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 NonEmptyListcontains a givenGenSeqas a slice.Finds first index where this NonEmptyListcontains a givenGenSeqas a slice.- that
- the - GenSeqdefining the slice to look for
- returns
- the first index at which the elements of this - NonEmptyListstarting 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- NonEmptyListthat 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 - NonEmptyListthat satisfies the predicate- p, or- -1, if none exists.
 
-   final  def indices: RangeProduces the range of all indices of this NonEmptyList.Produces the range of all indices of this NonEmptyList.- returns
- a - Rangevalue from- 0to one less than the length of this- NonEmptyList.
 
-   final  def isDefinedAt(idx: Int): BooleanTests whether this NonEmptyListcontains given index.Tests whether this NonEmptyListcontains given index.- idx
- the index to test 
- returns
- true if this - NonEmptyListcontains an element at position- idx,- falseotherwise.
 
-   final  def isEmpty: BooleanReturns falseto indicate thisNonEmptyList, like allNonEmptyLists, is non-empty.Returns falseto indicate thisNonEmptyList, like allNonEmptyLists, is non-empty.- returns
- false 
 
-   final  def isInstanceOf[T0]: Boolean- Definition Classes
- Any
 
-   final  def isTraversableAgain: BooleanReturns trueto indicate thisNonEmptyList, like allNonEmptyLists, can be traversed repeatedly.Returns trueto indicate thisNonEmptyList, like allNonEmptyLists, can be traversed repeatedly.- returns
- true 
 
-   final  def iterator: Iterator[T]Creates and returns a new iterator over all elements contained in this NonEmptyList.Creates and returns a new iterator over all elements contained in this NonEmptyList.- returns
- the new iterator 
 
-   final  def last: TSelects the last element of this NonEmptyList.Selects the last element of this NonEmptyList.- returns
- the last element of this - NonEmptyList.
 
-   final  def lastIndexOf[U >: T](elem: U, end: Int): IntFinds the index of the last occurrence of some value in this NonEmptyListbefore or at a givenendindex.Finds the index of the last occurrence of some value in this NonEmptyListbefore or at a givenendindex.- elem
- the element value to search for. 
- end
- the end index. 
- returns
- the index - >=- endof the last element of this- NonEmptyListthat is equal (as determined by- ==) to- elem, or- -1, if none exists.
 
-   final  def lastIndexOf[U >: T](elem: U): IntFinds the index of the last occurrence of some value in this NonEmptyList.Finds the index of the last occurrence of some value in this NonEmptyList.- elem
- the element value to search for. 
- returns
- the index of the last element of this - NonEmptyListthat is equal (as determined by- ==) to- elem, or- -1, if none exists.
 
-   final  def lastIndexOfSlice[U >: T](that: NonEmptyList[U], end: Int): IntFinds the last index before or at a given end index where this NonEmptyListcontains a givenNonEmptyListas a slice.Finds the last index before or at a given end index where this NonEmptyListcontains a givenNonEmptyListas a slice.- that
- the - NonEmptyListdefining the slice to look for
- end
- the end index 
- returns
- the last index - >=- endat which the elements of this- NonEmptyListstarting at that index match the elements of- NonEmptyList- 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 NonEmptyListcontains a givenEveryas a slice.Finds the last index before or at a given end index where this NonEmptyListcontains 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- NonEmptyListstarting at that index match the elements of- Every- that, or- -1of no such subsequence exists.
 
-   final  def lastIndexOfSlice[U >: T](that: NonEmptyList[U]): IntFinds the last index where this NonEmptyListcontains a givenNonEmptyListas a slice.Finds the last index where this NonEmptyListcontains a givenNonEmptyListas a slice.- that
- the - NonEmptyListdefining the slice to look for
- returns
- the last index at which the elements of this - NonEmptyListstarting at that index match the elements of- NonEmptyList- that, or- -1of no such subsequence exists.
 
-   final  def lastIndexOfSlice[U >: T](that: Every[U]): IntFinds the last index where this NonEmptyListcontains a givenEveryas a slice.Finds the last index where this NonEmptyListcontains a givenEveryas a slice.- that
- the - Everydefining the slice to look for
- returns
- the last index at which the elements of this - NonEmptyListstarting 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 NonEmptyListcontains a givenGenSeqas a slice.Finds the last index before or at a given end index where this NonEmptyListcontains 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- NonEmptyListstarting 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 NonEmptyListcontains a givenGenSeqas a slice.Finds the last index where this NonEmptyListcontains a givenGenSeqas a slice.- that
- the - GenSeqdefining the slice to look for
- returns
- the last index at which the elements of this - NonEmptyListstarting 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- NonEmptyListthat 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 - NonEmptyListthat satisfies the predicate- p, or- -1, if none exists.
 
-   final  def lastOption: Option[T]Returns the last element of this NonEmptyList, wrapped in aSome.Returns the last element of this NonEmptyList, wrapped in aSome.- returns
- the last element, wrapped in a - Some.
 
-   final  def length: IntThe length of this NonEmptyList.The length of this NonEmptyList.Note: lengthandsizeyield the same result, which will be>= 1.- returns
- the number of elements in this - NonEmptyList.
 
-   final  def lengthCompare(len: Int): IntCompares the length of this NonEmptyListto a test value.Compares the length of this NonEmptyListto 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): NonEmptyList[U]Builds a new NonEmptyListby applying a function to all elements of thisNonEmptyList.Builds a new NonEmptyListby applying a function to all elements of thisNonEmptyList.- U
- the element type of the returned - NonEmptyList.
- f
- the function to apply to each element. 
- returns
- a new - NonEmptyListresulting from applying the given function- fto each element of this- NonEmptyListand 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 - NonEmptyList.
 
-   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 - NonEmptyList.
 
-   final  def min[U >: T](implicit cmp: Ordering[U]): TFinds the smallest element. Finds the smallest element. - returns
- the smallest element of this - NonEmptyList.
 
-   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 - NonEmptyList.
 
-   final  def mkString(start: String, sep: String, end: String): StringDisplays all elements of this NonEmptyListin a string using start, end, and separator strings.Displays all elements of this NonEmptyListin 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 - NonEmptyList. 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- NonEmptyListare separated by the string- sep.
 
-   final  def mkString(sep: String): StringDisplays all elements of this NonEmptyListin a string using a separator string.Displays all elements of this NonEmptyListin a string using a separator string.- sep
- the separator string 
- returns
- a string representation of this - NonEmptyList. In the resulting string, the result of invoking- toStringon all elements of this- NonEmptyListare separated by the string- sep.
 
-   final  def mkString: StringDisplays all elements of this NonEmptyListin a string.Displays all elements of this NonEmptyListin a string.- returns
- a string representation of this - NonEmptyList. In the resulting string, the result of invoking- toStringon all elements of this- NonEmptyListfollow each other without any separator string.
 
-   final  def nonEmpty: BooleanReturns trueto indicate thisNonEmptyList, like allNonEmptyLists, is non-empty.Returns trueto indicate thisNonEmptyList, like allNonEmptyLists, is non-empty.- returns
- true 
 
-   final  def padTo[U >: T](len: Int, elem: U): NonEmptyList[U]A copy of this NonEmptyListwith an element value appended until a given target length is reached.A copy of this NonEmptyListwith an element value appended until a given target length is reached.- len
- the target length 
- elem
- he padding value 
- returns
- a new - NonEmptyListconsisting of all elements of this- NonEmptyListfollowed by the minimal number of occurrences of- elemso that the resulting- NonEmptyListhas a length of at least- len.
 
-   final  def patch[U >: T](from: Int, that: NonEmptyList[U], replaced: Int): NonEmptyList[U]Produces a new NonEmptyListwhere a slice of elements in thisNonEmptyListis replaced by anotherNonEmptyListProduces a new NonEmptyListwhere a slice of elements in thisNonEmptyListis replaced by anotherNonEmptyList- from
- the index of the first replaced element 
- that
- the - NonEmptyListwhose elements should replace a slice in this- NonEmptyList
- replaced
- the number of elements to drop in the original - NonEmptyList
 
-   final  def permutations: Iterator[NonEmptyList[T]]Iterates over distinct permutations. Iterates over distinct permutations. Here's an example: NonEmptyList('a', 'b', 'b').permutations.toList = List(NonEmptyList(a, b, b), NonEmptyList(b, a, b), NonEmptyList(b, b, a)) - returns
- an iterator that traverses the distinct permutations of this - NonEmptyList.
 
-   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 - NonEmptyListsuch 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 NonEmptyList.The result of multiplying all the elements of this NonEmptyList.This method can be invoked for any NonEmptyList[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 NonEmptyListusing the specified associative binary operator.Reduces the elements of this NonEmptyListusing 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- NonEmptyList.
 
-   final  def reduceLeft[U >: T](op: (U, T) => U): UApplies a binary operator to all elements of this NonEmptyList, going left to right.Applies a binary operator to all elements of this NonEmptyList, 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- NonEmptyList, going left to right:- op(...op(op(x_1, x_2), x_3), ..., x_n) where x1, ..., xn are the elements of this- NonEmptyList.
 
-   final  def reduceLeftOption[U >: T](op: (U, T) => U): Option[U]Applies a binary operator to all elements of this NonEmptyList, going left to right, returning the result in aSome.Applies a binary operator to all elements of this NonEmptyList, 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 NonEmptyList, going right to left.Applies a binary operator to all elements of this NonEmptyList, 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- NonEmptyList, going right to left:- op(x_1, op(x_2, ... op(x_{n-1}, x_n)...))where x1, ..., xn are the elements of this- NonEmptyList.
 
-   final  def reduceRightOption[U >: T](op: (T, U) => U): Option[U]Applies a binary operator to all elements of this NonEmptyList, going right to left, returning the result in aSome.Applies a binary operator to all elements of this NonEmptyList, 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: NonEmptyList[T]Returns new NonEmptyListwith elements in reverse order.Returns new NonEmptyListwith elements in reverse order.- returns
- a new - NonEmptyListwith all elements of this- NonEmptyListin reversed order.
 
-   final  def reverseIterator: Iterator[T]An iterator yielding elements in reverse order. An iterator yielding elements in reverse order. Note: nonEmptyList.reverseIteratoris the same asnonEmptyList.reverse.iterator, but might be more efficient.- returns
- an iterator yielding the elements of this - NonEmptyListin reversed order
 
-   final  def reverseMap[U](f: (T) => U): NonEmptyList[U]Builds a new NonEmptyListby applying a function to all elements of thisNonEmptyListand collecting the results in reverse order.Builds a new NonEmptyListby applying a function to all elements of thisNonEmptyListand collecting the results in reverse order.Note: nonEmptyList.reverseMap(f)is the same asnonEmptyList.reverse.map(f), but might be more efficient.- U
- the element type of the returned - NonEmptyList.
- f
- the function to apply to each element. 
- returns
- a new - NonEmptyListresulting from applying the given function- fto each element of this- NonEmptyListand collecting the results in reverse order.
 
-   final  def sameElements[U >: T](that: NonEmptyList[U]): BooleanChecks if the given NonEmptyListcontains the same elements in the same order as thisNonEmptyList.Checks if the given NonEmptyListcontains the same elements in the same order as thisNonEmptyList.- that
- the - NonEmptyListwith which to compare
- returns
- true, if both this and the given- NonEmptyListcontain 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 thisNonEmptyList.Checks if the given Everycontains the same elements in the same order as thisNonEmptyList.- 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 thisNonEmptyList.Checks if the given GenIterablecontains the same elements in the same order as thisNonEmptyList.- that
- the - GenIterablewith which to compare
- returns
- true, if both this- NonEmptyListand the given- GenIterablecontain the same elements in the same order,- falseotherwise.
 
-   final  def scan[U >: T](z: U)(op: (U, U) => U): NonEmptyList[U]Computes a prefix scan of the elements of this NonEmptyList.Computes a prefix scan of the elements of this NonEmptyList.Note: The neutral element z may be applied more than once. Here are some examples: NonEmptyList(1, 2, 3).scan(0)(_ + _) == NonEmptyList(0, 1, 3, 6) NonEmptyList(1, 2, 3).scan("z")(_ + _.toString) == NonEmptyList("z", "z1", "z12", "z123") - U
- a type parameter for the binary operator, a supertype of T, and the type of the resulting - NonEmptyList.
- 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 - NonEmptyListcontaining the prefix scan of the elements in this- NonEmptyList
 
-   final  def scanLeft[B](z: B)(op: (B, T) => B): NonEmptyList[B]Produces a NonEmptyListcontaining cumulative results of applying the operator going left to right.Produces a NonEmptyListcontaining cumulative results of applying the operator going left to right.Here are some examples: NonEmptyList(1, 2, 3).scanLeft(0)(_ + _) == NonEmptyList(0, 1, 3, 6) NonEmptyList(1, 2, 3).scanLeft("z")(_ + _) == NonEmptyList("z", "z1", "z12", "z123") - B
- the result type of the binary operator and type of the resulting - NonEmptyList
- z
- the start value. 
- op
- the binary operator. 
- returns
- a new - NonEmptyListcontaining the intermediate results of inserting- opbetween consecutive elements of this- NonEmptyList, going left to right, with the start value,- z, on the left.
 
-   final  def scanRight[B](z: B)(op: (T, B) => B): NonEmptyList[B]Produces a NonEmptyListcontaining cumulative results of applying the operator going right to left.Produces a NonEmptyListcontaining cumulative results of applying the operator going right to left.Here are some examples: NonEmptyList(1, 2, 3).scanRight(0)(_ + _) == NonEmptyList(6, 5, 3, 0) NonEmptyList(1, 2, 3).scanRight("z")(_ + _) == NonEmptyList("123z", "23z", "3z", "z") - B
- the result of the binary operator and type of the resulting - NonEmptyList
- z
- the start value 
- op
- the binary operator 
- returns
- a new - NonEmptyListcontaining the intermediate results of inserting- opbetween consecutive elements of this- NonEmptyList, 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 NonEmptyList.The size of this NonEmptyList.Note: lengthandsizeyield the same result, which will be>= 1.- returns
- the number of elements in this - NonEmptyList.
 
-   final  def sliding(size: Int, step: Int): Iterator[NonEmptyList[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 - NonEmptyLists 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): Iterator[NonEmptyList[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 - NonEmptyLists 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]): NonEmptyList[T]Sorts this NonEmptyListaccording to theOrderingof the result of applying the given function to every element.Sorts this NonEmptyListaccording 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 - NonEmptyListconsisting of the elements of this- NonEmptyListsorted according to the- Orderingwhere- x < y if ord.lt(f(x), f(y)).
 
-   final  def sortWith(lt: (T, T) => Boolean): NonEmptyList[T]Sorts this NonEmptyListaccording to a comparison function.Sorts this NonEmptyListaccording 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 sortedNonEmptyListas in the original.- returns
- a - NonEmptyListconsisting of the elements of this- NonEmptyListsorted according to the comparison function- lt.
 
-   final  def sorted[U >: T](implicit ord: Ordering[U]): NonEmptyList[U]Sorts this NonEmptyListaccording to anOrdering.Sorts this NonEmptyListaccording to anOrdering.The sort is stable. That is, elements that are equal (as determined by lt) appear in the same order in the sortedNonEmptyListas in the original.- ord
- the - Orderingto be used to compare elements.
- returns
- a - NonEmptyListconsisting of the elements of this- NonEmptyListsorted according to the comparison function- lt.
 
-   final  def startsWith[B](that: NonEmptyList[B], offset: Int): BooleanIndicates whether this NonEmptyListstarts with the givenNonEmptyListat the given index.Indicates whether this NonEmptyListstarts with the givenNonEmptyListat the given index.- that
- the - NonEmptyListslice to look for in this- NonEmptyList
- offset
- the index at which this - NonEmptyListis searched.
- returns
- trueif this- NonEmptyListhas- thatas a slice at the index- offset,- falseotherwise.
 
-   final  def startsWith[B](that: Every[B], offset: Int): BooleanIndicates whether this NonEmptyListstarts with the givenEveryat the given index.Indicates whether this NonEmptyListstarts with the givenEveryat the given index.- that
- the - Everyslice to look for in this- NonEmptyList
- offset
- the index at which this - NonEmptyListis searched.
- returns
- trueif this- NonEmptyListhas- thatas a slice at the index- offset,- falseotherwise.
 
-   final  def startsWith[B](that: NonEmptyList[B]): BooleanIndicates whether this NonEmptyListstarts with the givenNonEmptyList.Indicates whether this NonEmptyListstarts with the givenNonEmptyList.- that
- the - NonEmptyListto test
- returns
- trueif this collection has- thatas a prefix,- falseotherwise.
 
-   final  def startsWith[B](that: Every[B]): BooleanIndicates whether this NonEmptyListstarts with the givenEvery.Indicates whether this NonEmptyListstarts 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 NonEmptyListstarts with the givenGenSeqat the given index.Indicates whether this NonEmptyListstarts with the givenGenSeqat the given index.- that
- the - GenSeqslice to look for in this- NonEmptyList
- offset
- the index at which this - NonEmptyListis searched.
- returns
- trueif this- NonEmptyListhas- thatas a slice at the index- offset,- falseotherwise.
 
-   final  def startsWith[B](that: GenSeq[B]): BooleanIndicates whether this NonEmptyListstarts with the givenGenSeq.Indicates whether this NonEmptyListstarts with the givenGenSeq.- that
- the - GenSeqslice to look for in this- NonEmptyList
- returns
- trueif this- NonEmptyListhas- thatas a prefix,- falseotherwise.
 
-    def stringPrefix: StringReturns "NonEmptyList", the prefix of this object'stoStringrepresentation.Returns "NonEmptyList", the prefix of this object'stoStringrepresentation.- returns
- the string - "NonEmptyList"
 
-   final  def sum[U >: T](implicit num: Numeric[U]): UThe result of summing all the elements of this NonEmptyList.The result of summing all the elements of this NonEmptyList.This method can be invoked for any NonEmptyList[T]for which an implicitNumeric[T]exists.- returns
- the sum of all elements 
 
-   final  def to[Col[_]](factory: Factory[T, Col[T]]): Col[T]Converts this NonEmptyListinto a collection of typeColby copying all elements.Converts this NonEmptyListinto a collection of typeColby copying all elements.- Col
- the collection type to build. 
- returns
- a new collection containing all elements of this - NonEmptyList.
 
-   final  def toArray[U >: T](implicit classTag: ClassTag[U]): Array[U]Converts this NonEmptyListto an array.Converts this NonEmptyListto an array.- returns
- an array containing all elements of this - NonEmptyList. A- ClassTagmust be available for the element type of this- NonEmptyList.
 
-   final  def toBuffer[U >: T]: Buffer[U]Converts this NonEmptyListto a mutable buffer.Converts this NonEmptyListto a mutable buffer.- returns
- a buffer containing all elements of this - NonEmptyList.
 
-   final  def toIndexedSeq: IndexedSeq[T]Converts this NonEmptyListto an immutableIndexedSeq.Converts this NonEmptyListto an immutableIndexedSeq.- returns
- an immutable - IndexedSeqcontaining all elements of this- NonEmptyList.
 
-   final  def toIterable: Iterable[T]Converts this NonEmptyListto an iterable collection.Converts this NonEmptyListto an iterable collection.- returns
- an - Iterablecontaining all elements of this- NonEmptyList.
 
-   final  def toIterator: Iterator[T]Returns an Iteratorover the elements in thisNonEmptyList.Returns an Iteratorover the elements in thisNonEmptyList.- returns
- an - Iteratorcontaining all elements of this- NonEmptyList.
 
-  val toList: List[T]
-   final  def toMap[K, V](implicit ev: <:<[T, (K, V)]): Map[K, V]Converts this NonEmptyListto a map.Converts this NonEmptyListto 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- NonEmptyList.
 
-   final  def toSeq: Seq[T]Converts this NonEmptyListto an immutableIndexedSeq.Converts this NonEmptyListto an immutableIndexedSeq.- returns
- an immutable - IndexedSeqcontaining all elements of this- NonEmptyList.
 
-   final  def toSet[U >: T]: Set[U]Converts this NonEmptyListto a set.Converts this NonEmptyListto a set.- returns
- a set containing all elements of this - NonEmptyList.
 
-   final  def toStream: Stream[T]Converts this NonEmptyListto a stream.Converts this NonEmptyListto a stream.- returns
- a stream containing all elements of this - NonEmptyList.
 
-    def toString(): StringReturns a string representation of this NonEmptyList.Returns a string representation of this NonEmptyList.- returns
- the string - "NonEmptyList"followed by the result of invoking- toStringon this- NonEmptyList's elements, surrounded by parentheses.
 - Definition Classes
- NonEmptyList → Any
 
-   final  def toVector: Vector[T]Converts this NonEmptyListto aVector.Converts this NonEmptyListto aVector.- returns
- a - Vectorcontaining all elements of this- NonEmptyList.
 
-  final def transpose[U](implicit ev: <:<[T, NonEmptyList[U]]): NonEmptyList[NonEmptyList[U]]
-   final  def union[U >: T](that: GenSeq[U]): NonEmptyList[U]Produces a new NonEmptyListthat contains all elements of thisNonEmptyListand also all elements of a givenGenSeq.Produces a new NonEmptyListthat contains all elements of thisNonEmptyListand also all elements of a givenGenSeq.nonEmptyListXunionysis equivalent tononEmptyListX++ys.Another way to express this is that nonEmptyListXunionyscomputes the order-presevring multi-set union ofnonEmptyListXandys. Thisunionmethod is hence a counter-part ofdiffandintersectthat also work on multi-sets.- that
- the - GenSeqto add.
- returns
- a new - NonEmptyListthat contains all elements of this- NonEmptyListfollowed by all elements of- that- GenSeq.
 
-   final  def union[U >: T](that: NonEmptyList[U]): NonEmptyList[U]Produces a new NonEmptyListthat contains all elements of thisNonEmptyListand also all elements of a givenNonEmptyList.Produces a new NonEmptyListthat contains all elements of thisNonEmptyListand also all elements of a givenNonEmptyList.nonEmptyListXunionnonEmptyListYis equivalent tononEmptyListX++nonEmptyListY.Another way to express this is that nonEmptyListXunionnonEmptyListYcomputes the order-presevring multi-set union ofnonEmptyListXandnonEmptyListY. Thisunionmethod is hence a counter-part ofdiffandintersectthat also work on multi-sets.- that
- the - NonEmptyListto add.
- returns
- a new - NonEmptyListthat contains all elements of this- NonEmptyListfollowed by all elements of- that.
 
-   final  def union[U >: T](that: Every[U]): NonEmptyList[U]Produces a new NonEmptyListthat contains all elements of thisNonEmptyListand also all elements of a givenEvery.Produces a new NonEmptyListthat contains all elements of thisNonEmptyListand also all elements of a givenEvery.nonEmptyListXunioneveryYis equivalent tononEmptyListX++everyY.Another way to express this is that nonEmptyListXunioneveryYcomputes the order-presevring multi-set union ofnonEmptyListXandeveryY. Thisunionmethod is hence a counter-part ofdiffandintersectthat also work on multi-sets.- that
- the - Everyto add.
- returns
- a new - NonEmptyListthat contains all elements of this- NonEmptyListfollowed by all elements of- that- Every.
 
-   final  def unzip[L, R](implicit asPair: (T) => (L, R)): (NonEmptyList[L], NonEmptyList[R])Converts this NonEmptyListof pairs into twoNonEmptyLists of the first and second half of each pair.Converts this NonEmptyListof pairs into twoNonEmptyLists 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 - NonEmptyListis a pair.
- returns
- a pair of - NonEmptyLists, containing the first and second half, respectively, of each element pair of this- NonEmptyList.
 
-   final  def unzip3[L, M, R](implicit asTriple: (T) => (L, M, R)): (NonEmptyList[L], NonEmptyList[M], NonEmptyList[R])Converts this NonEmptyListof triples into threeNonEmptyLists of the first, second, and and third element of each triple.Converts this NonEmptyListof triples into threeNonEmptyLists 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 - NonEmptyListis a triple.
- returns
- a triple of - NonEmptyLists, containing the first, second, and third member, respectively, of each element triple of this- NonEmptyList.
 
-   final  def updated[U >: T](idx: Int, elem: U): NonEmptyList[U]A copy of this NonEmptyListwith one single replaced element.A copy of this NonEmptyListwith one single replaced element.- idx
- the position of the replacement 
- elem
- the replacing element 
- returns
- a copy of this - NonEmptyListwith the element at position- idxreplaced by- elem.
 - Exceptions thrown
- IndexOutOfBoundsExceptionif the passed index is greater than or equal to the length of this- NonEmptyList
 
-   final  def zipAll[O, U >: T](other: Iterable[O], thisElem: U, otherElem: O): NonEmptyList[(U, O)]Returns a NonEmptyListformed from thisNonEmptyListand an iterable collection by combining corresponding elements in pairs.Returns a NonEmptyListformed from thisNonEmptyListand 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 - NonEmptyListis shorter than- that- Iterable.
- returns
- a new - NonEmptyListcontaining pairs consisting of corresponding elements of this- NonEmptyListand- that. The length of the returned collection is the maximum of the lengths of this- NonEmptyListand- that. If this- NonEmptyListis shorter than- that,- thisElemvalues are used to pad the result. If- thatis shorter than this- NonEmptyList,- thatElemvalues are used to pad the result.
 
-   final  def zipWithIndex: NonEmptyList[(T, Int)]Zips this NonEmptyListwith its indices.Zips this NonEmptyListwith its indices.- returns
- A new - NonEmptyListcontaining pairs consisting of all elements of this- NonEmptyListpaired with their index. Indices start at 0.
 
Deprecated Value Members
-   final  def /:[B](z: B)(op: (B, T) => B): BThe /:method has been deprecated and will be removed in a future version of Scalactic. Please usefoldLeftinstead.The /:method has been deprecated and will be removed in a future version of Scalactic. Please usefoldLeftinstead.This method has been deprecated for consistency with Scala 2.13's collections API. Fold left: applies a binary operator to a start value, z, and all elements of thisNonEmptyList, going left to right.Note: /:is alternate syntax for thefoldLeftmethod;z/:non-empty listis the same asnon-empty listfoldLeftz.- 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- NonEmptyList, 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- NonEmptyList.
 - Annotations
- @deprecated
- Deprecated
- (Since version 3.1.x) The /: method has been deprecated and will be removed in a future version of Scalactic. Please use foldLeft instead. 
 
-   final  def :\[B](z: B)(op: (T, B) => B): BThe :\\method has been deprecated and will be removed in a future version of Scalactic. Please usefoldRightinstead.The :\\method has been deprecated and will be removed in a future version of Scalactic. Please usefoldRightinstead.This method has been deprecated for consistency with Scala 2.13's collections API. Fold right: applies a binary operator to all elements of this NonEmptyListand a start value, going right to left.Note: :\is alternate syntax for thefoldRightmethod;non-empty list:\zis the same asnon-empty listfoldRightz.- 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- NonEmptyList, 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- NonEmptyList.
 - Annotations
- @deprecated
- Deprecated
- (Since version 3.1.x) The :\ method has been deprecated and will be removed in a future version of Scalactic. Please use foldRight instead.