[#BloombergLP-bdlcc-Cache-insertBulk-0d] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlcc.adoc[bdlcc]::xref:BloombergLP/bdlcc/Cache.adoc[Cache]::insertBulk :relfileprefix: ../../../ :mrdocs: `insertBulk` overloads == Synopses Declared in `<bdlcc_cache.h>` Insert the specified movable `data` into this cache. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int xref:BloombergLP/bdlcc/Cache/insertBulk-03.adoc[insertBulk](xref:BloombergLP/bslmf/MovableRef.adoc[bslmf::MovableRef<bsl::vector<KVType>>] data); ---- [.small]#xref:BloombergLP/bdlcc/Cache/insertBulk-03.adoc[_» more..._]# Insert the specified `data` of key‐value pairs into this cache. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int xref:BloombergLP/bdlcc/Cache/insertBulk-09.adoc[insertBulk](xref:bsl/vector-00d.adoc[bsl::vector<KVType>] const& data); ---- [.small]#xref:BloombergLP/bdlcc/Cache/insertBulk-09.adoc[_» more..._]# Insert the specified range of key‐value pairs into this cache. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class INPUT_ITERATOR> int xref:BloombergLP/bdlcc/Cache/insertBulk-04.adoc[insertBulk]( INPUT_ITERATOR begin, INPUT_ITERATOR end); ---- [.small]#xref:BloombergLP/bdlcc/Cache/insertBulk-04.adoc[_» more..._]# == Return Value the number of items successfully inserted == Parameters [cols="1,4"] |=== | Name| Description | *data* | key‐value pairs to insert | *begin* | beginning of the key‐value range | *end* | end of the key‐value range |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#