Object/Class

zio.prelude

NonEmptySet

Related Docs: class NonEmptySet | package prelude

Permalink

object NonEmptySet

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

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. implicit def NonEmptySetCommutativeIdempotent[A]: Commutative[NonEmptySet[A]] with Idempotent[NonEmptySet[A]]

    Permalink

    The Commutative and Idempotent (and thus Associative) instance for NonEmptySet.

  5. implicit def NonEmptySetDebug[A](implicit arg0: Debug[A]): Debug[NonEmptySet[A]]

    Permalink

    Derives a Debug[NonEmptySet[A]] given a Debug[A].

  6. implicit def NonEmptySetHashPartialOrd[A]: Hash[NonEmptySet[A]] with PartialOrd[NonEmptySet[A]]

    Permalink

    Derives a Hash[NonEmptySet[A]] and PartialOrd[NonEmptySet[A]] (and thus Equal[NonEmptyList[A]]) instance.

  7. def apply[A](elem: A, others: A*): NonEmptySet[A]

    Permalink

    Creates a NonEmptySet with the specified elements.

    Creates a NonEmptySet with the specified elements.

    A

    the type of the NonEmptySet's elements

    elem

    an element of the created NonEmptySet

    others

    the remaining elements of the created NonEmptySet

    returns

    a new NonEmptySet with elements elem and others

  8. final def asInstanceOf[T0]: T0

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

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

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def fromIterable[A](head: A, tail: Iterable[A]): NonEmptySet[A]

    Permalink

    Constructs a NonEmptySet from an element and Iterable.

  14. def fromIterableOption[A](iterable: Iterable[A]): Option[NonEmptySet[A]]

    Permalink

    Constructs a NonEmptySet from an Iterable or None otherwise.

  15. def fromNonEmptyChunk[A](elems: NonEmptyChunk[A]): NonEmptySet[A]

    Permalink

    Constructs a NonEmptyChunk from a NonEmptyList.

  16. def fromNonEmptyList[A](elems: NonEmptyList[A]): NonEmptySet[A]

    Permalink

    Constructs a NonEmptySet from a NonEmptyList.

  17. def fromSet[A](elem: A, others: Set[A]): NonEmptySet[A]

    Permalink

    Constructs a NonEmptySet from an element and Set.

  18. def fromSetOption[A](set: Set[A]): Option[NonEmptySet[A]]

    Permalink

    Constructs a NonEmptySet from a Set or None otherwise.

  19. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  25. def single[A](head: A): NonEmptySet[A]

    Permalink

    Constructs a NonEmptySet with the specified single value.

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

    Permalink
    Definition Classes
    AnyRef
  27. implicit def toSet[A](nonEmptySet: NonEmptySet[A]): Set[A]

    Permalink

    Provides an implicit conversion from NonEmptySet to the Set for interoperability with Scala's collection library.

  28. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  29. def unapply[A](arg: NonEmptySet[A]): Some[(A, Set[A])]

    Permalink
  30. def union[A](l: Set[A], r: NonEmptySet[A]): NonEmptySet[A]

    Permalink

    Creates a NonEmptySet containing elements from l and r

  31. def union[A](l: NonEmptySet[A], r: Set[A]): NonEmptySet[A]

    Permalink

    Creates a NonEmptySet containing elements from l and r

  32. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped