| 1630 | template<class T, class tree_node_allocator> |
| 1631 | template<typename iter> |
| 1632 | bool tree<T, tree_node_allocator>::equal(const iter &one_, const iter &two, |
| 1633 | const iter &three_) const |
| 1634 | { |
| 1635 | std::equal_to<T> comp; |
| 1636 | return equal(one_, two, three_, comp); |
| 1637 | } |
| 1638 | |
| 1639 | template<class T, class tree_node_allocator> |
| 1640 | template<typename iter> |
nothing calls this directly
no test coverage detected