B-Tree key-value container.
More...
|
using | key_type = _KeyT |
|
using | value_type = _ValueT |
|
template<typename _KeyT, typename _ValueT, size_t _PageSize = -1, size_t _CacheSize = 20>
class xtd::btree< _KeyT, _ValueT, _PageSize, _CacheSize >
B-Tree key-value container.
- Template Parameters
-
_KeyT | the key type |
_ValueT | the value type |
Definition at line 279 of file btree.hpp.
template<typename _KeyT , typename _ValueT , size_t _PageSize = -1, size_t _CacheSize = 20>
bool xtd::btree< _KeyT, _ValueT, _PageSize, _CacheSize >::insert |
( |
const key_type & |
key, |
|
|
const value_type & |
value |
|
) |
| |
|
inline |
insert a value in the container
- Parameters
-
key | unique key associated with the value |
value | value to insert |
- Returns
- true of insert was successful, false otherwise
Definition at line 303 of file btree.hpp.
The documentation for this class was generated from the following file: