Bundle Core runtime library providing primitive types (Bool, Byte, Char, Int, Float, String), base collections, and system utilities. Every Objeck program links against this bundle automatically via lang.obl.
FloatRange
Float range used primarily for looping
Implements: Range
Operations
GetEnd #
Gets the ending index
method : public : GetEnd() ~ FloatReturn
| Type | Description |
|---|---|
| Float | ending index |
GetStart #
Gets the starting index
method : public : GetStart() ~ FloatReturn
| Type | Description |
|---|---|
| Float | starting index |
New # constructor
Constructor.
New(start:Float, end:Float, step:Float)Parameters
| Name | Type | Description |
|---|---|---|
| start | Float | starting index |
| end | Float | ending index |
| step | Float | step by value |
New # constructor
Constructor.
New(start:Float, end:Float)Parameters
| Name | Type | Description |
|---|---|---|
| start | Float | starting index |
| end | Float | ending index |
SetEnd #
Sets the ending index
method : public : SetEnd(end:Char) ~ NilParameters
| Name | Type | Description |
|---|---|---|
| end | Char | ending index |