Range (computer programming)

concept in computer programming From Wikipedia, the free encyclopedia

Remove ads

A range represents a list of values between its first and last. The lower limit is the first value and the upper limit is the last value. The range between 1 and 6 is 2, 3, 4, and 5.

Range may refer to: values in a variable or array, an operator, a data type, or to be used instead of an iterator.

Examples

Below are some notable languages using the range operator (..):

C#,[1]

string items[] = ["one","two","three","four"];
string first_three_items[] = items[0..2];

F#,[2]

[1..6]

Perl,[3]

for(1..6) { print }

Kotlin,[4]

for (i in 1..6) print(i)

V (Vlang)[5]

for i in 1..6 { print(i) }

References

Loading related searches...

Wikiwand - on

Seamless Wikipedia browsing. On steroids.

Remove ads