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

Function FLMutableArray_AppendBool

API/fleece/Fleece.h:1389–1391  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1387 FLSlot_SetNull(FLMutableArray_Append(a));
1388 }
1389 static inline void FLMutableArray_AppendBool(FLMutableArray a, bool val) {
1390 FLSlot_SetBool(FLMutableArray_Append(a), val);
1391 }
1392 static inline void FLMutableArray_AppendInt(FLMutableArray a, int64_t val) {
1393 FLSlot_SetInt(FLMutableArray_Append(a), val);
1394 }

Callers

nothing calls this directly

Calls 2

FLSlot_SetBoolFunction · 0.85
FLMutableArray_AppendFunction · 0.85

Tested by

no test coverage detected