ReadOnlySet

abstract class ReadOnlySet[T]

A class for the readonly part of mutable sets.

Companion
object
class Object
trait Matchable
class Any

Value members

Abstract methods

def lookup(x: T): T | Null

The entry in the set such that isEqual(x, entry), or else null.

The entry in the set such that isEqual(x, entry), or else null.

def size: Int

Concrete methods

def contains(x: T): Boolean
def foreach[U](f: T => U): Unit
def toList: List[T]