 | 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
Syntaxpublic RangeIterator(
Range<T> range,
Func<T, T> step,
bool ascending
)
Public Sub New (
range As Range(Of T),
step As Func(Of T, T),
ascending As Boolean
)
public:
RangeIterator(
Range<T>^ range,
Func<T, T>^ step,
bool ascending
)
new :
range : Range<'T> *
step : Func<'T, 'T> *
ascending : bool -> RangeIterator
Parameters
- range
- Type: Koden.UtilsRangeT
The range. - step
- Type: SystemFuncT, T
The step. - ascending
- Type: SystemBoolean
if set to true [ascending].
Exceptions
See Also