XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
xtd::btree< _KeyT, _ValueT, _PageSize, _CacheSize > Class Template Reference

B-Tree key-value container. More...

+ Collaboration diagram for xtd::btree< _KeyT, _ValueT, _PageSize, _CacheSize >:

Public Types

using key_type = _KeyT
 
using value_type = _ValueT
 

Public Member Functions

 btree (const xtd::filesystem::path &oPath)
 
bool insert (const key_type &key, const value_type &value)
 insert a value in the container More...
 

Detailed Description

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
_KeyTthe key type
_ValueTthe value type

Definition at line 279 of file btree.hpp.

Member Function Documentation

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
keyunique key associated with the value
valuevalue 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: