CharRange
Character range used primarily for looping
Operations
GetStart
Gets the starting index
method : public : GetStart() ~ Char
Return
Type | Description |
---|---|
Char | starting index |
New
Constructor.
New(start:Char, end:Char, step:Char)
Parameters
Name | Type | Description |
---|---|---|
start | Char | starting index |
end | Char | ending index |
step | Char | step by value |
New
Constructor.
New(start:Char, end:Char)
Parameters
Name | Type | Description |
---|---|---|
start | Char | starting index |
end | Char | ending index |
SetEnd
Sets the ending index
method : public : SetEnd(end:Char) ~ Nil
Parameters
Name | Type | Description |
---|---|---|
end | Char | ending index |
SetStart
Sets the starting index
method : public : SetStart(start:Char) ~ Nil
Parameters
Name | Type | Description |
---|---|---|
start | Char | starting index |
SetStep
Sets the step value
method : public : SetStep(step:Char) ~ Nil
Parameters
Name | Type | Description |
---|---|---|
step | Char | step value |