Returns the number of elements in the Range
Allows the range to work in a foreach loop
Allows the range to work in a foreach_reverse loop
Creates an array of the Range
Returns the element at the specified index
Creates an array of the Range
Creates an array of the Range
Creates a new Range using the following syntax
auto r = range[3..9]; foreach (i ; r) println(i); // will print 3 up to including 8 foreach (c ; range['a'..'h']; println(c); // will print a up to including g
This stucts represents a range with a beginning and an end. The Range only workds with integer types and char types.