IncSet

final class IncSet[A] extends AnyVal

Increasing set. A wrapper for Set where a monotonic update is one that adds elements, e.g. by union with another set.

Companion:
object
class AnyVal
trait Matchable
class Any

Value members

Concrete methods

def contains(a: A): Boolean
def head: A
def size: Int
def toList: List[A]
def union(that: IncSet[A]): IncSet[A]

Concrete fields

val value: Set[A]