Packages

object NonEmptyChunk extends Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NonEmptyChunk
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply[A](a: A, as: A*): NonEmptyChunk[A]

    Constructs a NonEmptyChunk from one or more values.

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def fromChunk[A](chunk: Chunk[A]): Option[NonEmptyChunk[A]]

    Checks if a chunk is not empty and constructs a NonEmptyChunk from it.

  10. def fromCons[A](as: ::[A]): NonEmptyChunk[A]

    Constructs a NonEmptyChunk from the :: case of a List.

  11. def fromIterable[A](a: A, as: Iterable[A]): NonEmptyChunk[A]

    Constructs a NonEmptyChunk from an Iterable.

  12. def fromIterableOption[A](as: Iterable[A]): Option[NonEmptyChunk[A]]

    Constructs a NonEmptyChunk from an Iterable or None otherwise.

  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  19. def single[A](a: A): NonEmptyChunk[A]

    Constructs a NonEmptyChunk from a single value.

  20. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  21. implicit def toChunk[A](nonEmptyChunk: NonEmptyChunk[A]): Chunk[A]

    Provides an implicit conversion from NonEmptyChunk to Chunk for methods that may not return a NonEmptyChunk.

  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. def unapplySeq[A](nonEmptyChunk: NonEmptyChunk[A]): Some[Seq[A]]

    Extracts the elements from a NonEmptyChunk.

  24. def unapplySeq[A](seq: Seq[A]): Option[Seq[A]]

    Extracts the elements from a Chunk.

  25. val unit: NonEmptyChunk[Unit]

    The unit non-empty chunk.

  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped