object NEList extends NEListInstances
Companion object for class NEList.
- Alphabetic
- By Inheritance
- NEList
- NEListInstances
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply[T](firstElement: T, otherElements: Iterable[T]): NEList[T]
Constructs a new
NEListgiven at least one element.Constructs a new
NEListgiven at least one element.- Annotations
- @inline()
- def apply[T](firstElement: T, secondElement: T, otherElements: T*): NEList[T]
Constructs a new
NEListgiven at least two elements.Constructs a new
NEListgiven 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()
- def apply[T](singleElement: T): NEList[T]
Constructs a new
NEListof one elementConstructs a new
NEListof one element- Annotations
- @inline()
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def asIterable[A](nel: NEList[A]): IterableOnce[A]
- Annotations
- @inline()
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- implicit def factoryNel[A]: Factory[A, NEList[A]]
- Definition Classes
- NEListInstances
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def from[T](iterableOnce: IterableOnce[T]): Option[NEList[T]]
- Annotations
- @inline()
- def from[T](seq: Iterable[T]): Option[NEList[T]]
Optionally construct a
NEListcontaining the elements, if any, of a givenSeq.Optionally construct a
NEListcontaining the elements, if any, of a givenSeq.- seq
the
Seqwith which to construct aNEList- returns
a
NEListcontaining the elements of the givenSeq, if non-empty, wrapped in aSome; elseNoneif theSeqis empty
- Annotations
- @inline()
- def from[T](list: List[T]): Option[NEList[T]]
Optionally construct a
NEListcontaining the elements, if any, of a givenList.Optionally construct a
NEListcontaining the elements, if any, of a givenList.- list
the
Listwith which to construct aNEList- returns
a
NEListcontaining the elements of the givenList, if non-empty, wrapped in aSome; elseNoneif theListis empty
- Annotations
- @inline()
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def unapplySeq[T](NEList: NEList[T]): Some[Seq[T]]
Variable argument extractor for
NELists.Variable argument extractor for
NELists.- returns
an
Seqcontaining thisNELists elements, wrapped in aSome
- Annotations
- @inline()
- def unsafeFrom[T](list: List[T]): NEList[T]
- Annotations
- @inline()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()