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

Function FLMutableDict_SetArray

API/fleece/Fleece.h:1447–1449  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1445 FLSlot_SetValue(FLMutableDict_Set(d, key), val);
1446 }
1447 static inline void FLMutableDict_SetArray(FLMutableDict d, FLString key, FLArray val) {
1448 FLSlot_SetValue(FLMutableDict_Set(d, key), (FLValue)val);
1449 }
1450 static inline void FLMutableDict_SetDict(FLMutableDict d, FLString key, FLDict val) {
1451 FLSlot_SetValue(FLMutableDict_Set(d, key), (FLValue)val);
1452 }

Callers

nothing calls this directly

Calls 2

FLSlot_SetValueFunction · 0.85
FLMutableDict_SetFunction · 0.85

Tested by

no test coverage detected