MCPcopy Create free account
hub / github.com/couchbase/fleece / _newMutableArray

Function _newMutableArray

Fleece/API_Impl/Fleece.cc:221–226  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

219}
220
221static FLMutableArray _newMutableArray(FLArray a, FLCopyFlags flags) noexcept {
222 try {
223 return (MutableArray*)retain(MutableArray::newArray(a, CopyFlags(flags)));
224 } catchError(nullptr)
225 return nullptr;
226}
227
228FLMutableArray FLMutableArray_New(void) FLAPI {
229 return _newMutableArray(nullptr, kFLDefaultCopy);

Callers 3

FLMutableArray_NewFunction · 0.85
FLArray_MutableCopyFunction · 0.85

Calls 2

retainFunction · 0.85
CopyFlagsEnum · 0.85

Tested by

no test coverage detected