mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
fix index_tuple
This commit is contained in:
parent
48f1b2d615
commit
ee8602f6a3
42 changed files with 927 additions and 101 deletions
|
@ -23,6 +23,17 @@ namespace sprout {
|
|||
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<typename Result, typename Input1, typename Input2, typename Compare>
|
||||
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
||||
set_intersection(Input1 const& input1, Input2 const& input2, Compare comp) {
|
||||
return sprout::fixed::set_intersection<Result>(sprout::begin(input1), sprout::end(input1), sprout::begin(input2), sprout::end(input2), comp);
|
||||
}
|
||||
template<typename Result, typename Input1, typename Input2>
|
||||
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
||||
set_intersection(Input1 const& input1, Input2 const& input2) {
|
||||
return sprout::fixed::set_intersection<Result>(sprout::begin(input1), sprout::end(input1), sprout::begin(input2), sprout::end(input2));
|
||||
}
|
||||
} // namespace fixed
|
||||
|
||||
using sprout::range::fixed::set_intersection;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue