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

Function FLMutableArray_GetSource

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

Source from the content-addressed store, hash-verified

260
261FLMutableArray FLArray_AsMutable(FLArray a) FLAPI {return a ? a->asMutable() : nullptr;}
262FLArray FLMutableArray_GetSource(FLMutableArray a) FLAPI {return a ? a->source() : nullptr;}
263bool FLMutableArray_IsChanged(FLMutableArray a) FLAPI {return a && a->isChanged();}
264void FLMutableArray_SetChanged(FLMutableArray a, bool c) FLAPI {if (a) a->setChanged(c);}
265void FLMutableArray_Resize(FLMutableArray a, uint32_t size) FLAPI {a->resize(size);}

Callers 1

sourceMethod · 0.85

Calls 1

sourceMethod · 0.45

Tested by

no test coverage detected