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

Function FLMutableArray_AppendInt

API/fleece/Fleece.h:1392–1394  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 }
1395 static inline void FLMutableArray_AppendUInt(FLMutableArray a, uint64_t val) {
1396 FLSlot_SetUInt(FLMutableArray_Append(a), val);
1397 }

Callers

nothing calls this directly

Calls 2

FLSlot_SetIntFunction · 0.85
FLMutableArray_AppendFunction · 0.85

Tested by

no test coverage detected