C# 클래스 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.
파일 보기 프로젝트 열기: jschementi/iron

공개 프로퍼티들

프로퍼티 타입 설명
HashCode int
Key object
Value object

공개 메소드들

메소드 설명
Bucket ( int hashCode, object key, object value ) : System

메소드 상세

Bucket() 공개 메소드

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

프로퍼티 상세

HashCode 공개적으로 프로퍼티

public int HashCode
리턴 int

Key 공개적으로 프로퍼티

public object Key
리턴 object

Value 공개적으로 프로퍼티

public object Value
리턴 object