All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dotty.tools.dotc.util.Set.scala Maven / Gradle / Ivy

/* NSC -- new Scala compiler
 * Copyright 2005-2012 LAMP/EPFL
 * @author  Martin Odersky
 */
package dotty.tools.dotc.util

/** A common class for lightweight sets.
 */
abstract class Set[T >: Null] {

  def findEntry(x: T): T

  def addEntry(x: T): Unit

  def iterator: Iterator[T]

  def foreach[U](f: T => U): Unit = iterator foreach f

  def apply(x: T): Boolean = contains(x)

  def contains(x: T): Boolean =
    findEntry(x) != null

  def toList = iterator.toList

  def clear(): Unit
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy