IDSet

sbt.internal.util.IDSet
See theIDSet companion object
trait IDSet[T]

A mutable set interface that uses object identity to test for set membership.

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def ++=(t: Iterable[T]): Unit
def +=(t: T): Unit
def -=(t: T): Boolean
def all: Iterable[T]
def apply(t: T): Boolean
def contains(t: T): Boolean
def foreach(f: T => Unit): Unit
def isEmpty: Boolean
def process[S](t: T)(ifSeen: S)(ifNew: => S): S
def toList: List[T]