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

Function FLEncoder_BeginDict

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

Source from the content-addressed store, hash-verified

658bool FLEncoder_BeginArray(FLEncoder e, size_t reserve) FLAPI {ENCODER_TRY(e, beginArray(reserve));}
659bool FLEncoder_EndArray(FLEncoder e) FLAPI {ENCODER_TRY(e, endArray());}
660bool FLEncoder_BeginDict(FLEncoder e, size_t reserve) FLAPI {ENCODER_TRY(e, beginDictionary(reserve));}
661bool FLEncoder_WriteKey(FLEncoder e, FLSlice s) FLAPI {ENCODER_TRY(e, writeKey(s));}
662bool FLEncoder_WriteKeyValue(FLEncoder e, FLValue key) FLAPI {ENCODER_TRY(e, writeKey(key));}
663bool FLEncoder_EndDict(FLEncoder e) FLAPI {ENCODER_TRY(e, endDictionary());}

Callers 1

beginDictMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected