Click or drag to resize

RangeIteratorT Class

Iterates over a range. Despite its name, this implements IEnumerable{T} rather than IEnumerator{T} - it just sounds better, frankly.
Inheritance Hierarchy
SystemObject
  Koden.UtilsRangeIteratorT

Namespace:  Koden.Utils
Assembly:  Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntax
public class RangeIterator<T> : IEnumerable<T>, 
	IEnumerable

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:Koden.Utils.RangeIterator`1"]

The RangeIteratorT type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyAscending
Returns whether or not this iterator works up from the start point (ascending) or down from the end point (descending)
Public propertyRange
Returns the range this object iterates over
Public propertyStep
Returns the step function used for this range
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetEnumerator
Returns an IEnumerator{T} running over the range.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
See Also