extObject

Returns a extObject.


Description

Extensions to Object


Attributes Summary

Instance Methods

assert
isBoolean
ccs Compact compile string.


Instance Methods


assert

  1. Example

    assert(false);
    ERROR: Object:assert
  2. FIXME: ERROR: Class not defined.

    FoscSegmentMaker(annotateSegments: true);   // fine - correct type
    FoscSegmentMaker(annotateSegments: 2);      // not fine - incorrect type
    FoscSegmentMaker(meterSpecifier: 'foo');    // not fine - incorrect type


isBoolean


ccs

Compact compile string.

  1. Example

    [1, 2, 3, 4, 5].ccs;
    [1,2,3,4,5]