Tor Arne Vestbø wrote: > Yes, clearly these are equal in readability: [I sense your sarcasm. ;-) ] > > if (std::find(v.begin(), v.end(), x) != v.end()) > > if (v.contains(x)) Thank you for this great example of how unreadable and unusable the STL APIs really are! Kevin Kofler