template<typename Key, typename Value>
struct tlx::btree_default_traits< Key, Value >
Generates default traits for a B+ tree used as a set or map.
It estimates leaf and inner node sizes by assuming a cache line multiple of 256 bytes.
Definition at line 74 of file btree.hpp.
template<typename Key, typename Value>
If true, the tree will print out debug information and a tree dump during insert() or erase() operation.
The header must have been compiled with TLX_BTREE_DEBUG defined and key_type must be std::ostream printable.
Definition at line 84 of file btree.hpp.
template<typename Key, typename Value>
If true, the tree will self verify its invariants after each insert() or erase().
The header must have been compiled with TLX_BTREE_DEBUG defined.
Definition at line 78 of file btree.hpp.