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

Function FLMutableArray_Insert

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

Source from the content-addressed store, hash-verified

268FLSlot FLMutableArray_Append(FLMutableArray a) FLAPI {return &a->appending();}
269
270void FLMutableArray_Insert(FLMutableArray a, uint32_t firstIndex, uint32_t count) FLAPI {
271 if (a) a->insert(firstIndex, count);
272}
273
274void FLMutableArray_Remove(FLMutableArray a, uint32_t firstIndex, uint32_t count) FLAPI {
275 if(a) a->remove(firstIndex, count);

Callers 1

insertNullsMethod · 0.85

Calls 1

insertMethod · 0.45

Tested by

no test coverage detected