RangeNum<T extends num> extension
- on
-
- T
Methods
-
downTo(
T downTo, {T? step}) → List< T> -
Available on T, provided by the RangeNum extension
Returns a range from this value down to the specified to value with the step. -
to(
T to, {T? step}) → List< T> -
Available on T, provided by the RangeNum extension
Returns a range from this value up to and including the specifiedto
value. -
until(
T until, {T? step}) → List< T> -
Available on T, provided by the RangeNum extension
Returns a range from this value up to but excluding the specifiedto
value.