Key-Value Map

The KV Map offered by the KV API serves as a storage location which is organized as a sorted associative container that contains key-value pairs with unique keys. Keys are sorted lexicographically. Search, removal, and insertion operations have logarithmic complexity, O(log(n)). 'KV Map' is designed to offer a comparable interface to std::map template class.

Consult the KV Map Reference and the KV Map How-Tos listed below for details.