'Declaration
Public Function ReverseIterate( _ ByVal decrementor As Func(Of T,T) _ ) As IEnumerable(Of T)
public IEnumerable<T> ReverseIterate( Func<T,T> decrementor )
Parameters
- decrementor
- A function which takes a value, and returns the previous value.
Return Value
The items in the range.