Is there something in <algorithm> which allows you to check if a std:: container contains something? Or, a way to make one, for example:

if(a.x == b.x && a.y == b.y)
return true;

return false;

Can this only be done with std::map since it uses keys?

Thanks

3 Answers
3

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *