Home | Info | Community | Development | myReactOS | Contact Us
[inline, private]
Definition at line 581 of file _tree.h.
Referenced by _Rb_tree< key_type, key_compare, value_type, _STLP_SELECT1ST(value_type, IncompleteClass), _MapTraits, _Alloc >::upper_bound().
{ _Base_ptr __y = __CONST_CAST(_Base_ptr, &this->_M_header._M_data); /* Last node which is greater than __k. */ _Base_ptr __x = _M_root(); /* Current node. */ while (__x != 0) if (_M_key_compare(__k, _S_key(__x))) __y = __x, __x = _S_left(__x); else __x = _S_right(__x); return __y; }