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

Function FLMutableArray_IsChanged

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

Source from the content-addressed store, hash-verified

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);}
266

Callers 1

isChangedMethod · 0.85

Calls 1

isChangedMethod · 0.45

Tested by

no test coverage detected