Click or drag to resize

RankedDictionaryTKey, TValueValueCollectionEnumerator Structure

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

The RankedDictionaryTKey, TValueValueCollectionEnumerator type exposes the following members.

Properties
  NameDescription
Public propertyCurrent
Gets the value 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 value in the collection.
Public methodCode exampleSkip
Bypasses a supplied number of values and yields the remaining values.
Public methodSkipWhile(FuncTValue, Boolean)
Bypasses values as long as a supplied condition is true and yields the remaining values.
Public methodSkipWhile(FuncTValue, Int32, Boolean)
Bypasses values as long as a supplied index-based condition is true and yields the remaining values.
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Top
Explicit Interface Implementations
See Also