Свойство | Type | Description | |
---|---|---|---|
buckets |
Свойство | Type | Description | |
---|---|---|---|
count | int |
Méthode | Description | |
---|---|---|
Clear ( ) : void |
Clears this map of all contained objects.
|
|
Clear ( object key ) : void |
Clears the bucket with given key.
|
|
Count ( object key ) : int |
Gets the count of objects mapped to the specified key.
|
|
Find ( object key ) : IEnumerator |
Given a key, Find will return an IEnumerator that allows you to iterate over all items in the bucket associated with the key.
|
|
FindBucket ( object key ) : IList | ||
FindFirst ( object key ) : object |
Given a key, FindFirst will return the first item in the bucket associated with the key.
|
|
GetBucketEnumerator ( ) : IEnumerator |
Gets an appropriate enumerator for the map, customized to go through each key in the map and return a Pair of the key and an ArrayList of the values associated with it.
|
|
Insert ( object key, object val ) : void |
Inserts a value into a bucket that is specified by the key.
|
|
Map ( ) : System |
Default constructor.
|
public Find ( object key ) : IEnumerator | ||
key | object | Key for look for. |
Résultat | IEnumerator |
public FindFirst ( object key ) : object | ||
key | object | Key to look for. |
Résultat | object |
public GetBucketEnumerator ( ) : IEnumerator | ||
Résultat | IEnumerator |
public Insert ( object key, object val ) : void | ||
key | object | |
val | object | |
Résultat | void |
public Hashtable,System.Collections buckets | ||
Résultat |