Click or drag to resize

RankedSetTEnumerator Structure

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

The RankedSetTEnumerator generic type exposes the following members.

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