Returns a extObject.
Extensions to Object
| assert | |
| isBoolean | |
| ccs | Compact compile string. |
Example
assert(false);ERROR: Object:assertFIXME: ERROR: Class not defined.
FoscSegmentMaker(annotateSegments: true); // fine - correct type
FoscSegmentMaker(annotateSegments: 2); // not fine - incorrect type
FoscSegmentMaker(meterSpecifier: 'foo'); // not fine - incorrect typeCompact compile string.
Example
[1, 2, 3, 4, 5].ccs;[1,2,3,4,5]