Click or drag to resize

RankedDictionaryTKey, TValueEnumerator Structure

Namespace:  Kaos.Collections
Assembly:  KaosCollections (in KaosCollections.dll) Version: 4.2.0.0
Syntax
C#
public struct Enumerator : IEnumerator<KeyValuePair<TKey, TValue>>, 
	IDisposable, IEnumerator, IDictionaryEnumerator, IEnumerable<KeyValuePair<TKey, TValue>>, 
	IEnumerable

The RankedDictionaryTKey, TValueEnumerator generic type exposes the following members.

Properties
  NameDescription
Public propertyCurrent
Gets the key/value pair at the current position of the enumerator.
Top
Methods
  NameDescription
Public methodDispose
Releases all resources used by the enumerator.
Public methodEquals
Indicates whether this instance and a specified object are equal.
(Inherited from ValueType.)
Public methodGetEnumerator
Gets an iterator for this collection.
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from ValueType.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodMoveNext
Advances the enumerator to the next element in the dictionary.
Public methodCode exampleSkip
Bypasses a supplied number of elements and yields the remaining elements.
Public methodSkipWhile(FuncKeyValuePairTKey, TValue, Boolean)
Bypasses elements as long as a supplied condition is true and yields the remaining elements.
Public methodSkipWhile(FuncKeyValuePairTKey, TValue, Int32, Boolean)
Bypasses elements as long as a supplied index-based condition is true and yields the remaining elements.
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Top
Explicit Interface Implementations
See Also