Range constructor
Range(
- dynamic start,
- dynamic end, [
- dynamic step
Creates $range operator expression
start- An integer that specifies the start of the sequence. Can be any valid expression that resolves to an integer.end- An integer that specifies the exclusive upper limit of the sequence. Can be any valid expression that resolves to an integer.step- Optional. An integer that specifies the increment value. Can be any valid expression that resolves to a non-zero integer. Defaults to 1.
Implementation
Range(start, end, [step]) : super('range', AEList([start, end, step]));