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

Function insert

Fleece/Support/SmallVector.hh:139–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

137 }
138
139 void insert(iterator where, T item) {
140 assert_precondition(begin() <= where && where <= end());
141 void *dst = _insert(where, 1, kItemSize);
142 *(T*)dst = std::move(item);
143 }
144
145 template <class ITER>
146 void insert(iterator where, ITER b, ITER e) {

Callers 7

appendMethod · 0.85
setMethod · 0.85
getMutableArrayMethod · 0.85
getMutableDictMethod · 0.85
HeapArrayClass · 0.85
insertMethod · 0.85
insertMethod · 0.85

Calls 2

beginFunction · 0.85
endFunction · 0.85

Tested by

no test coverage detected