C# Class IronPython.Runtime.CommonDictionaryStorage.Bucket

Used to store a single hashed key/value and a linked list of collisions. Bucket is not serializable because it stores the computed hash code which could change between serialization and deserialization.
Afficher le fichier Open project: jschementi/iron

Méthodes publiques

Свойство Type Description
HashCode int
Key object
Value object

Méthodes publiques

Méthode Description
Bucket ( int hashCode, object key, object value ) : System

Method Details

Bucket() public méthode

public Bucket ( int hashCode, object key, object value ) : System
hashCode int
key object
value object
Résultat System

Property Details

HashCode public_oe property

public int HashCode
Résultat int

Key public_oe property

public object Key
Résultat object

Value public_oe property

public object Value
Résultat object