2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2013-01-26 13:19:35 +00:00
|
|
|
#ifndef SPROUT_RANGE_ALGORITHM_FIND_INTERSECTION_HPP
|
|
|
|
#define SPROUT_RANGE_ALGORITHM_FIND_INTERSECTION_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
|
|
|
#include <sprout/utility/forward.hpp>
|
2013-02-07 14:12:57 +00:00
|
|
|
#include <sprout/utility/pair/pair.hpp>
|
2013-01-26 13:19:35 +00:00
|
|
|
#include <sprout/range/type_traits/lvalue_iterator.hpp>
|
|
|
|
#include <sprout/algorithm/find_intersection.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace range {
|
|
|
|
//
|
|
|
|
// find_intersection
|
|
|
|
//
|
2013-08-07 13:13:03 +00:00
|
|
|
template<typename InputRange1, typename InputRange2, typename Compare>
|
2013-01-26 13:19:35 +00:00
|
|
|
inline SPROUT_CONSTEXPR sprout::pair<
|
2013-08-07 13:13:03 +00:00
|
|
|
typename sprout::range::lvalue_iterator<InputRange1>::type,
|
|
|
|
typename sprout::range::lvalue_iterator<InputRange2>::type
|
2013-01-26 13:19:35 +00:00
|
|
|
>
|
2013-08-07 13:13:03 +00:00
|
|
|
find_intersection(InputRange1&& range1, InputRange2&& range2, Compare comp) {
|
2013-01-26 13:19:35 +00:00
|
|
|
return sprout::find_intersection(
|
2014-02-22 07:32:51 +00:00
|
|
|
sprout::begin(SPROUT_FORWARD(InputRange1, range1)),
|
|
|
|
sprout::end(SPROUT_FORWARD(InputRange1, range1)),
|
|
|
|
sprout::begin(SPROUT_FORWARD(InputRange2, range2)),
|
|
|
|
sprout::end(SPROUT_FORWARD(InputRange2, range2)),
|
2013-01-26 13:19:35 +00:00
|
|
|
comp
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-08-07 13:13:03 +00:00
|
|
|
template<typename InputRange1, typename InputRange2>
|
2013-01-26 13:19:35 +00:00
|
|
|
inline SPROUT_CONSTEXPR sprout::pair<
|
2013-08-07 13:13:03 +00:00
|
|
|
typename sprout::range::lvalue_iterator<InputRange1>::type,
|
|
|
|
typename sprout::range::lvalue_iterator<InputRange2>::type
|
2013-01-26 13:19:35 +00:00
|
|
|
>
|
2013-08-07 13:13:03 +00:00
|
|
|
find_intersection(InputRange1&& range1, InputRange2&& range2) {
|
2013-01-26 13:19:35 +00:00
|
|
|
return sprout::find_intersection(
|
2014-02-22 07:32:51 +00:00
|
|
|
sprout::begin(SPROUT_FORWARD(InputRange1, range1)),
|
|
|
|
sprout::end(SPROUT_FORWARD(InputRange1, range1)),
|
|
|
|
sprout::begin(SPROUT_FORWARD(InputRange2, range2)),
|
|
|
|
sprout::end(SPROUT_FORWARD(InputRange2, range2))
|
2013-01-26 13:19:35 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace range
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_RANGE_ALGORITHM_FIND_INTERSECTION_HPP
|