Entry

dotty.tools.dotc.util.WeakHashSet.Entry
class Entry[A](element: A, val hash: Int, var tail: Entry[A] | Null, queue: ReferenceQueue[A]) extends WeakReference[A]

A single entry in a WeakHashSet. It's a WeakReference plus a cached hash code and a link to the next Entry in the same bucket

Attributes

Graph
Supertypes
class WeakReference[A]
class Reference[A]
class Object
trait Matchable
class Any

Members list

Value members

Inherited methods

def clear(): Unit

Attributes

Inherited from:
Reference
def enqueue(): Boolean

Attributes

Inherited from:
Reference
def get(): T

Attributes

Inherited from:
Reference

Attributes

Inherited from:
Reference

Concrete fields

val hash: Int
var tail: Entry[A] | Null