 | RangeTFromStart Method |
Returns an iterator which begins at the start of this range,
applying the given step delegate on each iteration until the
end is reached or passed. The start and end points are included
or excluded according to this range.
Namespace:
Koden.Utils
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxpublic RangeIterator<T> FromStart(
Func<T, T> step
)
Public Function FromStart (
step As Func(Of T, T)
) As RangeIterator(Of T)
public:
RangeIterator<T>^ FromStart(
Func<T, T>^ step
)
member FromStart :
step : Func<'T, 'T> -> RangeIterator<'T>
Parameters
- step
- Type: SystemFuncT, T
Delegate to apply to the "current value" on each iteration
Return Value
Type:
RangeIteratorT[Missing <returns> documentation for "M:Koden.Utils.Range`1.FromStart(System.Func{`0,`0})"]
See Also