Defined in header <algorithm> template< class InputIt1, class InputIt2 >
bool includes( InputIt1 first1, InputIt1 last1,
InputIt2 first2, InputIt2 last2 ); (1) template< class InputIt1, class InputIt2, class Compare >
bool includes( InputIt1 first1, InputIt1 last1,
InputIt2 first2, InputIt2 last2, Compare comp ); (2)
Returns true if every element from the sorted range [first2, last2) is found within the sorted range [first1, l