Integer range used primarily for looping
Implements: Range
OperationsConstructor.
New(start:Int, end:Int, step:Int)
Name | Type | Description |
---|---|---|
start | Int | starting index |
end | Int | ending index |
step | Int | step by value |
Constructor.
New(start:Int, end:Int)
Name | Type | Description |
---|---|---|
start | Int | starting index |
end | Int | ending index |
Constructor.
New(end:Int)
Name | Type | Description |
---|---|---|
end | Int | ending index |
Gets the ending index
method : public : GetEnd() ~ Int
Type | Description |
---|---|
Int | ending index |
Gets the starting index
method : public : GetStart() ~ Int
Type | Description |
---|---|
Int | starting index |
Gets the step value
method : public : GetStep() ~ Int
Type | Description |
---|---|
Int | step value |
Sets the ending index
method : public : SetEnd(end:Char) ~ Nil
Name | Type | Description |
---|---|---|
end | Char | ending index |
Sets the starting index
method : public : SetStart(start:Char) ~ Nil
Name | Type | Description |
---|---|---|
start | Char | starting index |
Sets the step value
method : public : SetStep(step:Char) ~ Nil
Name | Type | Description |
---|---|---|
step | Char | step value |