RangeTuple - multiple declarations

Alias RangeTuple

Yields a tuple of integer literals from 0 to stop

alias RangeTuple(int stop) = Tuple!();

Alias RangeTuple

Yields a tuple of integer literals from start to stop with defined step

alias RangeTuple(int start, int stop, int step) = Tuple!();

Alias RangeTuple

Yields a tuple of integer literals from start to stop

alias RangeTuple(int start, int stop) = Tuple!();