Click or drag to resize

rangeRRangeT Method (T, T)

Namespace:  WhetStone.Looping
Assembly:  WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntax
C#
public static IList<T> RRange<T>(
	T start,
	T max
)

Parameters

start
Type: T
The first element of the returned value.
max
Type: T
The maximum value of the elements. Exclusive.

Type Parameters

T
The type of the elements.

Return Value

Type: IListT
A read-only IListT with elements from start to max in steps of one.
Remarks
uses fielding.
See Also