Creates a new array of size `initialCount` filled with null Values. */
| 25 | |
| 26 | /** Creates a new array of size `initialCount` filled with null Values. */ |
| 27 | static Retained<MutableArray> newArray(uint32_t initialCount =0) { |
| 28 | return (new internal::HeapArray(initialCount))->asMutableArray(); |
| 29 | } |
| 30 | |
| 31 | /** Creates a copy of `a`, or an empty array if `a` is null. |
| 32 | If `deepCopy` is true, nested mutable collections will be recursively copied too. */ |
nothing calls this directly
no test coverage detected