Sequence Range Method (BigInteger, BigInteger)A Sandcastle Documented Class Library
Creates a sequence containing equally spaced values in some integer interval.

Namespace: Sequences
Assembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax
public static ISequence<BigInteger> Range(
	BigInteger start,
	BigInteger end
)

Parameters

start
Type: System.Numerics BigInteger
The start value of the collection.
end
Type: System.Numerics BigInteger
The exclusive upper bound.

Return Value

Type: ISequence BigInteger 
A collection with values start, start + 1, ... up to, but excluding end.
See Also