Home | History | Annotate | Download | only in tree_policy

Lines Matching refs:it

6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
46 node_iterator it = node_begin();
49 while (it != end_it)
51 node_iterator l_it = it.get_l_child();
55 return *it;
57 it = l_it;
61 it = it.get_r_child();
79 node_const_iterator it = node_begin();
84 while (it != end_it)
86 node_const_iterator l_it = it.get_l_child();
88 if (r_cmp_fn(r_key, this->extract_key(*(*it))))
89 it = l_it;
90 else if (r_cmp_fn(this->extract_key(*(*it)), r_key))
93 it = it.get_r_child();
98 it = end_it;