|
template<typename I , typename T > |
std::pair< I, I > | equal_range (I f, I l, const T &x) |
|
template<typename I , typename T , typename C > |
std::pair< I, I > | equal_range (I f, I l, const T &x, C c) |
|
template<typename I , typename T , typename C , typename P > |
std::pair< I, I > | equal_range (I f, I l, const T &x, C c, P p) |
|
template<typename I , typename T , typename C , typename P > |
boost::lazy_disable_if< boost::is_same< I, T >, implementation::lazy_range< I > >::type | equal_range (I &r, const T &x, C c, P p) |
|
template<typename I , typename T , typename C , typename P > |
boost::lazy_disable_if< boost::is_same< I, T >, implementation::lazy_range_const< I > >::type | equal_range (const I &r, const T &x, C c, P p) |
|
template<typename I , typename T > |
std::pair< typename boost::range_iterator< I >::type, typename boost::range_iterator< I >::type > | equal_range (I &r, const T &x) |
|
template<typename I , typename T > |
std::pair< typename boost::range_const_iterator< I >::type, typename boost::range_const_iterator< I >::type > | equal_range (const I &r, const T &x) |
|
template<typename I , typename T , typename C > |
boost::lazy_disable_if< boost::is_same< I, T >, implementation::lazy_range< I > >::type | equal_range (I &r, const T &x, C c) |
|
template<typename I , typename T , typename C > |
boost::lazy_disable_if< boost::is_same< I, T >, implementation::lazy_range_const< I > >::type | equal_range (const I &r, const T &x, C c) |
|
template<typename I , typename N , typename T > |
std::pair< I, I > | equal_range_n (I f, N n, const T &x) |
|
template<typename I , typename N , typename T , typename C > |
std::pair< I, I > | equal_range_n (I f, N n, const T &x, C c) |
|
template<typename I , typename N , typename T , typename C , typename P > |
std::pair< I, I > | equal_range_n (I f, N n, const T &x, C c, P p) |
|