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

Function FLArray_Get

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

Source from the content-addressed store, hash-verified

190uint32_t FLArray_Count(FLArray a) FLAPI {return a ? a->count() : 0;}
191bool FLArray_IsEmpty(FLArray a) FLAPI {return a ? a->empty() : true;}
192FLValue FLArray_Get(FLArray a, uint32_t index) FLAPI {return a ? a->get(index) : nullptr;}
193
194void FLArrayIterator_Begin(FLArray a, FLArrayIterator* i) FLAPI {
195 static_assert(sizeof(FLArrayIterator) >= sizeof(Array::iterator),"FLArrayIterator is too small");

Callers 1

getMethod · 0.85

Calls 1

getMethod · 0.45

Tested by

no test coverage detected