Creates a new, empty mutable array. */
| 78 | public: |
| 79 | /** Creates a new, empty mutable array. */ |
| 80 | static MutableArray newArray() {return MutableArray(FLMutableArray_New(), false);} |
| 81 | |
| 82 | MutableArray() :Array() { } |
| 83 | MutableArray(FLMutableArray a) :Array((FLArray)FLMutableArray_Retain(a)) { } |
nothing calls this directly
no test coverage detected