Packages

object NEList extends NEListInstances

Companion object for class NEList.

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

Type Members

  1. implicit final class OptionOps[+A] extends AnyVal

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[T](firstElement: T, otherElements: Iterable[T]): NEList[T]

    Constructs a new NEList given at least one element.

    Constructs a new NEList given at least one element.

    Annotations
    @inline()
  5. def apply[T](firstElement: T, secondElement: T, otherElements: T*): NEList[T]

    Constructs a new NEList given at least two elements.

    Constructs a new NEList given at least two elements.

    T

    the type of the element contained in the new NEList

    firstElement

    the first element (with index 0) contained in this NEList

    otherElements

    a varargs of zero or more other elements (with index 1, 2, 3, ...) contained in this NEList

    Annotations
    @inline()
  6. def apply[T](singleElement: T): NEList[T]

    Constructs a new NEList of one element

    Constructs a new NEList of one element

    Annotations
    @inline()
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. implicit def asIterable[A](nel: NEList[A]): IterableOnce[A]
    Annotations
    @inline()
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. implicit def factoryNel[A]: Factory[A, NEList[A]]
    Definition Classes
    NEListInstances
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  14. def from[T](iterableOnce: IterableOnce[T]): Option[NEList[T]]
    Annotations
    @inline()
  15. def from[T](seq: Iterable[T]): Option[NEList[T]]

    Optionally construct a NEList containing the elements, if any, of a given Seq.

    Optionally construct a NEList containing the elements, if any, of a given Seq.

    seq

    the Seq with which to construct a NEList

    returns

    a NEList containing the elements of the given Seq, if non-empty, wrapped in a Some; else None if the Seq is empty

    Annotations
    @inline()
  16. def from[T](list: List[T]): Option[NEList[T]]

    Optionally construct a NEList containing the elements, if any, of a given List.

    Optionally construct a NEList containing the elements, if any, of a given List.

    list

    the List with which to construct a NEList

    returns

    a NEList containing the elements of the given List, if non-empty, wrapped in a Some; else None if the List is empty

    Annotations
    @inline()
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. def unapplySeq[T](NEList: NEList[T]): Some[Seq[T]]

    Variable argument extractor for NELists.

    Variable argument extractor for NELists.

    returns

    an Seq containing this NELists elements, wrapped in a Some

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

Inherited from NEListInstances

Inherited from AnyRef

Inherited from Any

Ungrouped