scala.collection.mutable

LinkedEntry

class LinkedEntry[A, B] extends HashEntry[A, LinkedEntry[A, B]]

attributes: final

Inherits

  1. HashEntry
  2. AnyRef
  3. Any

Value Members

  1. var earlier: LinkedEntry[A, B]

  2. def equals(arg0: Any): Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence

  3. def hashCode(): Int

    Returns a hash code value for the object

  4. val key: A

  5. var later: LinkedEntry[A, B]

  6. var next: LinkedEntry[A, B]

  7. def toString(): String

    Returns a string representation of the object

  8. var value: B

Instance constructors

  1. new LinkedEntry(key: A, value: B)

  2. new LinkedEntry()