insertBulk overloads
Declared in <bdlcc_cache.h>
Insert the specified movable data into this cache.
int
insertBulk(bslmf::MovableRef<bsl::vector<KVType>> data);
» more...
Insert the specified data of key-value pairs into this cache.
int
insertBulk(bsl::vector<KVType> const& data);
» more...
Insert the specified range of key-value pairs into this cache.
template<class INPUT_ITERATOR>
int
insertBulk(
INPUT_ITERATOR begin,
INPUT_ITERATOR end);
» more...
the number of items successfully inserted
| Name | Description |
|---|---|
| data | key-value pairs to insert |
| begin | beginning of the key-value range |
| end | end of the key-value range |