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

Function FLMutableArray_SetChanged

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

Source from the content-addressed store, hash-verified

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
267FLSlot FLMutableArray_Set(FLMutableArray a, uint32_t index) FLAPI {return &a->setting(index);}

Callers

nothing calls this directly

Calls 1

setChangedMethod · 0.45

Tested by

no test coverage detected