scalaz

NonEmptyList

final class NonEmptyList[A] extends AnyRef

A singly-linked list that is guaranteed to be non-empty.

Source
NonEmptyList.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. NonEmptyList
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def :::>(bs: IList[A]): NonEmptyList[A]

  5. def <::(b: A): NonEmptyList[A]

  6. def <:::(bs: IList[A]): NonEmptyList[A]

  7. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  8. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  9. def append(f2: NonEmptyList[A]): NonEmptyList[A]

    Append one nonempty list to another.

  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def distinct(implicit A: Order[A]): NonEmptyList[A]

  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(any: Any): Boolean

    Definition Classes
    NonEmptyList → AnyRef → Any
  15. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def flatMap[B](f: (A) ⇒ NonEmptyList[B]): NonEmptyList[B]

  17. def foreach(f: (A) ⇒ Unit): Unit

    Since

    7.0.3

  18. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  19. def hashCode(): Int

    Definition Classes
    NonEmptyList → AnyRef → Any
  20. val head: A

  21. def init: IList[A]

    Since

    7.0.2

  22. def inits: NonEmptyList[NonEmptyList[A]]

  23. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  24. def last: A

    Since

    7.0.2

  25. def list: IList[A]

  26. def map[B](f: (A) ⇒ B): NonEmptyList[B]

  27. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  28. final def notify(): Unit

    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  30. def reverse: NonEmptyList[A]

  31. def size: Int

  32. def sortBy[B](f: (A) ⇒ B)(implicit o: Order[B]): NonEmptyList[A]

    Since

    7.0.2

  33. def sortWith(lt: (A, A) ⇒ Boolean): NonEmptyList[A]

    Since

    7.0.2

  34. def sorted(implicit o: Order[A]): NonEmptyList[A]

    Since

    7.0.2

  35. def stream: Stream[A]

  36. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  37. val tail: IList[A]

  38. def tails: NonEmptyList[NonEmptyList[A]]

  39. def toString(): String

    Definition Classes
    NonEmptyList → AnyRef → Any
  40. def toZipper: Zipper[A]

  41. def traverse1[F[_], B](f: (A) ⇒ F[B])(implicit F: Apply[F]): F[NonEmptyList[B]]

  42. def unzip[X, Y](implicit ev: <~<[A, (X, Y)]): (NonEmptyList[X], NonEmptyList[Y])

  43. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. def zip[B](b: ⇒ NonEmptyList[B]): NonEmptyList[(A, B)]

  47. def zipWithIndex: NonEmptyList[(A, Int)]

  48. def zipperEnd: Zipper[A]

Inherited from AnyRef

Inherited from Any

Ungrouped