InfiniteSet

oxygen.core.InfiniteSet
See theInfiniteSet companion object
sealed trait InfiniteSet[A] extends Product

Attributes

Companion
object
Experimental
true
Graph
Supertypes
trait Product
trait Equals
class Object
trait Matchable
class Any
Known subtypes
class Exclusive[A]
class Inclusive[A]

Members list

Value members

Concrete methods

final inline def &(that: InfiniteSet[A]): InfiniteSet[A]
final inline def &~(that: InfiniteSet[A]): InfiniteSet[A]
final def contains(value: A): Boolean
final def disjunction(that: InfiniteSet[A]): InfiniteSet[A]

Everything that is in this, but not in that

Everything that is in this, but not in that

Attributes

final def intersection(that: InfiniteSet[A]): InfiniteSet[A]

Everything that is in both this and that

Everything that is in both this and that

Attributes

final def invert: InfiniteSet[A]
final override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any
final def toStringOrdered(using Ordering[A]): String
final def union(that: InfiniteSet[A]): InfiniteSet[A]

Everything that is in either this or that

Everything that is in either this or that

Attributes

final inline def |(that: InfiniteSet[A]): InfiniteSet[A]
final inline def ~: InfiniteSet[A]

Inherited methods

def productElementName(n: Int): String

Attributes

Inherited from:
Product
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
def productPrefix: String

Attributes

Inherited from:
Product

Inherited and Abstract methods

def canEqual(that: Any): Boolean

Attributes

Inherited from:
Equals
def productArity: Int

Attributes

Inherited from:
Product
def productElement(n: Int): Any

Attributes

Inherited from:
Product

Abstract fields

val explicit: Set[A]