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

Function FLArrayIterator_Next

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

Source from the content-addressed store, hash-verified

210}
211
212bool FLArrayIterator_Next(FLArrayIterator* i) FLAPI {
213 try {
214 auto& iter = *(Array::iterator*)i;
215 ++iter; // throws if iterating past end
216 return (bool)iter;
217 } catchError(nullptr)
218 return false;
219}
220
221static FLMutableArray _newMutableArray(FLArray a, FLCopyFlags flags) noexcept {
222 try {

Callers 1

nextMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected