Function call operators
Declared in <bslstl_mapcomparator.h>
Return whether lhs is ordered before the key stored in rhs.
template<class LOOKUP_KEY>
bool
operator()(
LOOKUP_KEY const& lhs,
bslalg::RbTreeNode const& rhs);
» more...
Return whether lhs is ordered before the key stored in rhs.
template<class LOOKUP_KEY>
bool
operator()(
LOOKUP_KEY const& lhs,
bslalg::RbTreeNode const& rhs) const;
» more...
Return whether the key stored in lhs is ordered before rhs.
template<class LOOKUP_KEY>
bool
operator()(
bslalg::RbTreeNode const& lhs,
LOOKUP_KEY const& rhs);
» more...
Return whether the key stored in lhs is ordered before rhs.
template<class LOOKUP_KEY>
bool
operator()(
bslalg::RbTreeNode const& lhs,
LOOKUP_KEY const& rhs) const;
» more...
true if lhs is ordered before the key in rhs, and false otherwisetrue if the key in lhs is ordered before rhs, and false otherwise| Name | Description |
|---|---|
| lhs | lookup key compared against the node's key |
| rhs | tree node whose key is compared to lhs |