mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
45 lines
1.4 KiB
C++
45 lines
1.4 KiB
C++
#ifndef SPROUT_RANGE_ALGORITHM_FIXED_SET_UNION_HPP
|
|
#define SPROUT_RANGE_ALGORITHM_FIXED_SET_UNION_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/fixed_container/traits.hpp>
|
|
#include <sprout/fixed_container/functions.hpp>
|
|
#include <sprout/algorithm/fixed/result_of.hpp>
|
|
#include <sprout/algorithm/fixed/set_union.hpp>
|
|
|
|
namespace sprout {
|
|
namespace range {
|
|
namespace fixed {
|
|
//
|
|
// set_union
|
|
//
|
|
template<typename Input1, typename Input2, typename Result, typename Compare>
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type set_union(
|
|
Input1 const& input1,
|
|
Input2 const& input2,
|
|
Result const& result,
|
|
Compare comp
|
|
)
|
|
{
|
|
return sprout::fixed::set_union(sprout::begin(input1), sprout::end(input1), sprout::begin(input2), sprout::end(input2), result, comp);
|
|
}
|
|
|
|
//
|
|
// set_union
|
|
//
|
|
template<typename Input1, typename Input2, typename Result>
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type set_union(
|
|
Input1 const& input1,
|
|
Input2 const& input2,
|
|
Result const& result
|
|
)
|
|
{
|
|
return sprout::fixed::set_union(sprout::begin(input1), sprout::end(input1), sprout::begin(input2), sprout::end(input2), result);
|
|
}
|
|
} // namespace fixed
|
|
|
|
using sprout::range::fixed::set_union;
|
|
} // namespace range
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_RANGE_ALGORITHM_FIXED_SET_UNION_HPP
|