multiset::contains


template <class t,class less>
bool multiset<t,less>::contains(const t& key) const

This method determines if a key range exists in the multiset.

Parameters

const t& key

An element containing the key to be found.

Return

bool

true The key range contains.
false The key range doesn't exist.