TwoPSet

case
class TwoPSet[A](entries: Set[A], tombstones: Set[A])

Two phase set where elements can be added and removed but never added again.

Companion
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def add(e: A): TwoPSet[A]
def add(es: Set[A]): TwoPSet[A]
def contains(e: A): Boolean
def remove(e: A): TwoPSet[A]
def remove(es: Set[A]): TwoPSet[A]

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product

Concrete fields

lazy
val value: Set[A]