 | rangeRRange Method (Int32, Int32, Int32) |
Get an
IListT of a descending arithmetic series of
Int32s.
Namespace:
WhetStone.Looping
Assembly:
WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntaxpublic static IList<int> RRange(
int start,
int max,
int step
)
Parameters
- start
- Type: SystemInt32
The first element of the returned value. - max
- Type: SystemInt32
The maximum value of the elements. Exclusive. - step
- Type: SystemInt32
The difference between consecutive elements.
Return Value
Type:
IListInt32A read-only
IListT with elements from
start to
max in steps of
step.
See Also