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 val NonEmptySetCommutativeEither: CommutativeEither[NonEmptySet]

    Permalink

    The CommutativeEither instance for NonEmptySet.

  5. implicit def NonEmptySetCommutativeIdempotent[A]: Commutative[NonEmptySet[A]] with Idempotent[NonEmptySet[A]]

    Permalink

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

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

    Permalink

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

  7. implicit val NonEmptySetDeriveEqual: DeriveEqual[NonEmptySet]

    Permalink

    The DeriveEqual instance for NonEmptySet.

  8. 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.

  9. implicit val NonEmptySetInvariant: Invariant[NonEmptySet]

    Permalink

    The Invariant instance for NonEmptySet.

  10. 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

  11. final def asInstanceOf[T0]: T0

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

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

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

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

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

    Permalink

    Constructs a NonEmptySet from an element and Iterable.

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

    Permalink

    Constructs a NonEmptySet from an Iterable or None otherwise.

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

    Permalink

    Constructs a NonEmptyChunk from a NonEmptyList.

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

    Permalink

    Constructs a NonEmptySet from a NonEmptyList.

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

    Permalink

    Constructs a NonEmptySet from an element and Set.

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

    Permalink

    Constructs a NonEmptySet from a Set or None otherwise.

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

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

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

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

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

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

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

    Permalink

    Constructs a NonEmptySet with the specified single value.

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

    Permalink
    Definition Classes
    AnyRef
  30. 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.

  31. def toString(): String

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

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

    Permalink

    Creates a NonEmptySet containing elements from l and r

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

    Permalink

    Creates a NonEmptySet containing elements from l and r

  35. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped