22set_intersection(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt dest, Compare comp)
25 while (first1 != last1 and first2 != last2) {
26 if (comp(*first1, *first2)) {
29 if (not comp(*first2, *first1)) {
constexpr auto set_intersection(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt dest, Compare comp) -> OutputIt
Constructs a sorted range beginning at dest consisting of elements that are found in both sorted rang...
Definition set_intersection.hpp:22