object NESet extends NESetInstances
Companion object for class NESet
.
- Alphabetic
- By Inheritance
- NESet
- NESetInstances
- 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: T*): NESet[T]
Constructs a new
NESet
given at least one element.Constructs a new
NESet
given at least one element.- T
the type of the element contained in the new
NESet
- firstElement
the first element (with index 0) contained in this
NESet
- otherElements
a varargs of zero or more other elements (with index 1, 2, 3, ...) contained in this
NESet
- Annotations
- @inline()
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def asIterable[A](ne: NESet[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 factoryNes[A]: Factory[A, NESet[A]]
- Definition Classes
- NESetInstances
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def from[T](set: Set[T]): Option[NESet[T]]
Optionally construct a
NESet
containing the elements, if any, of a givenSet
.Optionally construct a
NESet
containing the elements, if any, of a givenSet
.- set
the
Set
with which to construct aNESet
- returns
a
NESet
containing the elements of the givenGenSeq
, if non-empty, wrapped in aSome
; elseNone
if theGenSeq
is 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](NESet: NESet[T]): Some[Seq[T]]
Variable argument extractor for
NESet
s.Variable argument extractor for
NESet
s.- returns
an
Seq
containing thisNESet
s elements, wrapped in aSome
- Annotations
- @inline()
- def unsafeFrom[T](set: Set[T]): NESet[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()