final class NonEmptyList[A] extends AnyRef
- Alphabetic
- By Inheritance
- NonEmptyList
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def :::>(bs: IList[A]): NonEmptyList[A]
- def <::(b: A): NonEmptyList[A]
- def <:::(bs: IList[A]): NonEmptyList[A]
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def append(f2: NonEmptyList[A]): NonEmptyList[A]
Append one nonempty list to another.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def distinct(implicit A: Order[A]): NonEmptyList[A]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(any: Any): Boolean
- Definition Classes
- NonEmptyList → AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def flatMap[B](f: (A) => NonEmptyList[B]): NonEmptyList[B]
- def foreach(f: (A) => Unit): Unit
- Since
7.0.3
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- NonEmptyList → AnyRef → Any
- val head: A
- def init: IList[A]
- Since
7.0.2
- def inits: NonEmptyList[NonEmptyList[A]]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def last: A
- Since
7.0.2
- def list: IList[A]
- def map[B](f: (A) => B): NonEmptyList[B]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def reverse: NonEmptyList[A]
- def size: Int
- def sortBy[B](f: (A) => B)(implicit o: Order[B]): NonEmptyList[A]
- Since
7.0.2
- def sortWith(lt: (A, A) => Boolean): NonEmptyList[A]
- Since
7.0.2
- def sorted(implicit o: Order[A]): NonEmptyList[A]
- Since
7.0.2
- def stream: Stream[A]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val tail: IList[A]
- def tails: NonEmptyList[NonEmptyList[A]]
- def toString(): String
- Definition Classes
- NonEmptyList → AnyRef → Any
- def toZipper: Zipper[A]
- def traverse1[F[_], B](f: (A) => F[B])(implicit F: Apply[F]): F[NonEmptyList[B]]
- def unzip[X, Y](implicit ev: <~<[A, (X, Y)]): (NonEmptyList[X], NonEmptyList[Y])
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def zip[B](b: => NonEmptyList[B]): NonEmptyList[(A, B)]
- def zipWithIndex: NonEmptyList[(A, Int)]
- def zipperEnd: Zipper[A]