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

Function FLArray_IsEmpty

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

Source from the content-addressed store, hash-verified

189
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 {

Callers 1

emptyMethod · 0.85

Calls 1

emptyMethod · 0.45

Tested by

no test coverage detected