validation

NonEmptyVector

Related Docs: object NonEmptyVector | package validation

final class NonEmptyVector[+A] extends Serializable

A Vector that is guaranteed to be non-empty.

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. NonEmptyVector
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

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

    Definition Classes
    AnyRef → Any
  3. def ++[AA >: A](xs: NonEmptyVector[AA]): NonEmptyVector[AA]

  4. def +:[AA >: A](x: AA): NonEmptyVector[AA]

  5. def :+[AA >: A](x: AA): NonEmptyVector[AA]

  6. def ==[AA >: A](other: NonEmptyVector[AA])(implicit AA: Equiv[AA]): Boolean

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

    Definition Classes
    AnyRef → Any
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def compare[AA >: A](other: NonEmptyVector[AA])(implicit AA: Ordering[AA]): Int

  11. def distinct: NonEmptyVector[A]

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

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

    Definition Classes
    NonEmptyVector → AnyRef → Any
  14. def exists(p: (A) ⇒ Boolean): Boolean

  15. def filter(f: (A) ⇒ Boolean): Vector[A]

  16. def filterNot(f: (A) ⇒ Boolean): Vector[A]

  17. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def find(p: (A) ⇒ Boolean): Option[A]

  19. def flatMap[B](f: (A) ⇒ NonEmptyVector[B]): NonEmptyVector[B]

  20. def foldLeft[B](z: B)(f: (B, A) ⇒ B): B

  21. def forall(p: (A) ⇒ Boolean): Boolean

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

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

    Definition Classes
    NonEmptyVector → AnyRef → Any
  24. val head: A

  25. def init: Vector[A]

  26. def isEmpty: Boolean

  27. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  28. def last: A

  29. def map[B](f: (A) ⇒ B): NonEmptyVector[B]

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

    Definition Classes
    AnyRef
  31. def nonEmpty: Boolean

  32. final def notify(): Unit

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

    Definition Classes
    AnyRef
  34. def reduce[B](f: (A) ⇒ B)(g: (B, ⇒ B) ⇒ B): B

  35. def reduceLeft[B >: A](f: (B, A) ⇒ B): B

  36. def reverse: NonEmptyVector[A]

  37. def size: Int

  38. def sortBy[B](f: (A) ⇒ B)(implicit B: Ordering[B]): NonEmptyVector[A]

  39. def sortWith(lt: (A, A) ⇒ Boolean): NonEmptyVector[A]

  40. def sorted[B >: A](implicit B: Ordering[B]): NonEmptyVector[A]

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

    Definition Classes
    AnyRef
  42. val tail: Vector[A]

  43. def tailOption: Option[NonEmptyVector[A]]

  44. def tails: NonEmptyVector[NonEmptyVector[A]]

  45. def tailz: Stream[NonEmptyVector[A]]

  46. def toList: List[A]

  47. def toStream: Stream[A]

  48. def toString(): String

    Definition Classes
    NonEmptyVector → AnyRef → Any
  49. def toVector: Vector[A]

  50. def unzip[X, Y](implicit ev: <:<[A, (X, Y)]): (NonEmptyVector[X], NonEmptyVector[Y])

  51. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  54. def zip[B](b: NonEmptyVector[B]): NonEmptyVector[(A, B)]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped