|
libstdc++
|
Public Types | |
| typedef Cmp_Fn | cmp_fn |
| typedef detail::tree_traits< Key, Mapped, std::less< Key >, null_node_update, rb_tree_tag, std::allocator< char > > ::node_update | node_update |
Public Member Functions | |
| tree (const cmp_fn &c) | |
| tree (const tree &other) | |
| template<typename It > | |
| tree (It first, It last) | |
| template<typename It > | |
| tree (It first, It last, const cmp_fn &c) | |
| tree & | operator= (const tree &other) |
| void | swap (tree &other) |
A tree-based container.
| Key | Key type. |
| Mapped | Map type. |
| Cmp_Fn | Comparison functor. |
| Tag | Instantiating data structure type, see container_tag. |
| Node_Update | Updates tree internal-nodes, restores invariants when invalidated. XXX See design::tree-based-containersnode invariants. |
| _Alloc | Allocator type. |
Base tag choices are: ov_tree_tag, rb_tree_tag, splay_tree_tag.
Base is basic_branch.
Definition at line 635 of file assoc_container.hpp.