|
Header <boost/algorithm/gather.hpp>Boost , The Boost Algorithm Library , Reference
namespace boost {
namespace algorithm {
template<typename BidirectionalIterator, typename Pred>
std::pair< BidirectionalIterator, BidirectionalIterator >
gather(BidirectionalIterator first, BidirectionalIterator last,
BidirectionalIterator pivot, Pred pred);
template<typename BidirectionalRange, typename Pred>
std::pair< typename boost::range_iterator< const BidirectionalRange >::type, typename boost::range_iterator< const BidirectionalRange >::type >
gather(const BidirectionalRange & range,
typename boost::range_iterator< const BidirectionalRange >::type pivot,
Pred pred);
}
}
Статья Header <boost/algorithm/gather.hpp> раздела The Boost Algorithm Library Reference может быть полезна для разработчиков на c++ и boost.
:: Главная :: Reference ::
|
|