Click or drag to resize

RangeIteratorT Constructor (RangeT, FuncT, T, Boolean)

Creates an iterator over the given range with the given step function, with the specified direction.

Namespace:  Koden.Utils
Assembly:  Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntax
public RangeIterator(
	Range<T> range,
	Func<T, T> step,
	bool ascending
)

Parameters

range
Type: Koden.UtilsRangeT
The range.
step
Type: SystemFuncT, T
The step.
ascending
Type: SystemBoolean
if set to true [ascending].
Exceptions
ExceptionCondition
ArgumentExceptionstep does nothing, or progresses the wrong way
See Also