| 1270 | const node_type *root() const { return root_.data; } |
| 1271 | node_type *&mutable_root() { return root_.data; } |
| 1272 | key_compare *mutable_key_comp() noexcept { |
| 1273 | return static_cast<key_compare*>(&root_); |
| 1274 | } |
| 1275 | |
| 1276 | node_type* rightmost() { |
| 1277 | return rightmost_; |