#ifndef SPROUT_RANGE_ALGORITHM_FIXED_SET_INTERSECTION_HPP #define SPROUT_RANGE_ALGORITHM_FIXED_SET_INTERSECTION_HPP #include #include #include #include #include namespace sprout { namespace range { namespace fixed { // // set_intersection // template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm::type set_intersection(Input1 const& input1, Input2 const& input2, Result const& result, Compare comp) { return sprout::fixed::set_intersection(sprout::begin(input1), sprout::end(input1), sprout::begin(input2), sprout::end(input2), result, comp); } template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm::type set_intersection(Input1 const& input1, Input2 const& input2, Result const& result) { return sprout::fixed::set_intersection(sprout::begin(input1), sprout::end(input1), sprout::begin(input2), sprout::end(input2), result); } template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm::type set_intersection(Input1 const& input1, Input2 const& input2, Compare comp) { return sprout::fixed::set_intersection(sprout::begin(input1), sprout::end(input1), sprout::begin(input2), sprout::end(input2), comp); } template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm::type set_intersection(Input1 const& input1, Input2 const& input2) { return sprout::fixed::set_intersection(sprout::begin(input1), sprout::end(input1), sprout::begin(input2), sprout::end(input2)); } } // namespace fixed using sprout::range::fixed::set_intersection; } // namespace range } // namespace sprout #endif // #ifndef SPROUT_RANGE_ALGORITHM_FIXED_SET_INTERSECTION_HPP