Click or drag to resize

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
Syntax
public RangeIterator<T> FromEnd(
	Func<T, T> step
)

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