Entry

class Entry[A](@constructorOnly element: A, val hash: Int, var tail: Entry[A] | Null, @constructorOnly 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

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

Value members

Inherited methods

def clear(): Unit
Inherited from:
Reference
Inherited from:
Reference
def get(): A
Inherited from:
Reference
Inherited from:
Reference

Concrete fields

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