 | RangeTFromEnd Method |
Returns an iterator which begins at the end of this range,
applying the given step delegate on each iteration until the
start 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> FromEnd(
Func<T, T> step
)
Public Function FromEnd (
step As Func(Of T, T)
) As RangeIterator(Of T)
public:
RangeIterator<T>^ FromEnd(
Func<T, T>^ step
)
member FromEnd :
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.FromEnd(System.Func{`0,`0})"]
See Also