Class/Object

japgolly.microlibs.nonempty

NonEmptyVector

Related Docs: object NonEmptyVector | package nonempty

Permalink

final class NonEmptyVector[+A] extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NonEmptyVector
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new NonEmptyVector(head: A, tail: Vector[A])

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ++[B >: A](b: NonEmptyVector[B]): NonEmptyVector[B]

    Permalink
  4. def ++[B >: A](as: GenTraversableOnce[B]): NonEmptyVector[B]

    Permalink
  5. def ++:[B >: A](as: Vector[B]): NonEmptyVector[B]

    Permalink
  6. def +:[B >: A](a: B): NonEmptyVector[B]

    Permalink
  7. def :+[B >: A](a: B): NonEmptyVector[B]

    Permalink
  8. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def apply(i: Int): Option[A]

    Permalink
  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
  15. def filter(f: (A) ⇒ Boolean): Option[NonEmptyVector[A]]

    Permalink
  16. def filterNot(f: (A) ⇒ Boolean): Option[NonEmptyVector[A]]

    Permalink
  17. def finalize(): Unit

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

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

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

    Permalink
  21. def foldMapLeft1[B](g: (A) ⇒ B)(f: (B, A) ⇒ B): B

    Permalink
  22. def forall(f: (A) ⇒ Boolean): Boolean

    Permalink
  23. def foreach[U](f: (A) ⇒ U): Unit

    Permalink
  24. def foreachWithIndex[U](f: (A, Int) ⇒ U): Unit

    Permalink
  25. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    NonEmptyVector → AnyRef → Any
  27. val head: A

    Permalink
  28. def indices: Range

    Permalink
  29. def init: Vector[A]

    Permalink
  30. def initNonEmpty: Option[NonEmptyVector[A]]

    Permalink
  31. def intercalate[B >: A](b: B): NonEmptyVector[B]

    Permalink
  32. def intercalateF[B](b: B)(f: (A) ⇒ B): NonEmptyVector[B]

    Permalink
  33. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  34. def iterator: Iterator[A]

    Permalink
  35. def last: A

    Permalink
  36. def length: Int

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

    Permalink
  38. def mapTail[B >: A](f: (Vector[A]) ⇒ Vector[B]): NonEmptyVector[B]

    Permalink
  39. def mapToNES[B](f: (A) ⇒ B)(implicit arg0: UnivEq[B]): NonEmptySet[B]

    Permalink
  40. def mapWithIndex[B](f: (A, Int) ⇒ B): NonEmptyVector[B]

    Permalink
  41. def mkString: String

    Permalink
  42. def mkString(sep: String): String

    Permalink
  43. def mkString(start: String, sep: String, end: String): String

    Permalink
  44. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  45. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  46. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  47. def partitionB(f: (A) ⇒ Boolean): (NonEmptyVector[A], Vector[A])

    Permalink
  48. def partitionD[B, C](f: (A) ⇒ \/[B, C]): \/[(NonEmptyVector[B], Vector[C]), (Vector[B], NonEmptyVector[C])]

    Permalink
  49. def peelFromEnd: Iterator[NonEmptyVector[A]]

    Permalink

    Peels away elements from the end until there are no elements left.

    Peels away elements from the end until there are no elements left.

    Example:

    NonEmptyVector(2,4,6,8) will yield

    NonEmptyVector(2,4,6,8) NonEmptyVector(2,4,6) NonEmptyVector(2,4) NonEmptyVector(2)

  50. def reduce[B >: A](f: (B, B) ⇒ B): B

    Permalink
  51. def reduceMapLeft1[B](f: (A) ⇒ B)(g: (B, B) ⇒ B): B

    Permalink
  52. def reverse: NonEmptyVector[A]

    Permalink
  53. def sortBy[B](f: (A) ⇒ B)(implicit ord: Ordering[B]): NonEmptyVector[A]

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

    Permalink
  55. def sorted[B >: A](implicit ord: Ordering[B]): NonEmptyVector[A]

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

    Permalink
    Definition Classes
    AnyRef
  57. val tail: Vector[A]

    Permalink
  58. def tailNonEmpty: Option[NonEmptyVector[A]]

    Permalink
  59. def toNES[B >: A](implicit arg0: UnivEq[B]): NonEmptySet[B]

    Permalink
  60. def toStream: Stream[A]

    Permalink
  61. def toString(): String

    Permalink
    Definition Classes
    NonEmptyVector → AnyRef → Any
  62. def unsafeApply(i: Int): A

    Permalink
  63. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  66. def whole: Vector[A]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped