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.
Mostrar archivo Open project: jschementi/iron

Public Properties

Property Type Description
HashCode int
Key object
Value object

Public Methods

Method Description
Bucket ( int hashCode, object key, object value ) : System

Method Details

Bucket() public method

public Bucket ( int hashCode, object key, object value ) : System
hashCode int
key object
value object
return System

Property Details

HashCode public_oe property

public int HashCode
return int

Key public_oe property

public object Key
return object

Value public_oe property

public object Value
return object