Skip to content
Eugene Sadovoi edited this page Jul 7, 2016 · 1 revision

Generates a sequence of numbers within a specified range.

Syntax

Range(start, count)

Parameters

start

The value of the first number in the sequence.

count

The number of sequential increments by one.

Return Value

An Iterable that contains a range of sequential numbers.

Remarks

This method is implemented by using deferred execution. The immediate return value is an object that stores all the information that is required to perform the action. The query represented by this method is not executed until the object is enumerated.

Clone this wiki locally