The C++ function std::multimap::operator< tests whether first multimap is less than other or not.
Operator < compares element sequentially and comparison stops at first mismatch.
DeclarationFollowing is the declaration for std::multimap::operator
C++98template <class Key, class T, class Compare, class Alloc> bool operator< ( const multimap<Key,T,Compare,Alloc>& m1, const multimap<Key,T,Compare,Alloc>& m2);Parameters
m1 − First multimap object.
m2 − Second multimap object.
Returns true if first multimap is less than second otherwise false.
ExceptionsNo effect on container if exception is thrown.
Time complexityLinear i.e. O(n)
ExampleThe following example shows the usage of std::multimap::operator< function.
#include <iostream> #include <map> using namespace std; int main(void) { /* Multimap with duplicates */ multimap<char, int> m1; multimap<char, int> m2; m2.insert(pair<char, int>('a', 1)); if (m1 < m2) cout << "m1 multimap is less than m2." << endl; m1 = m2; if (!(m1 < m2)) cout << "m1 multimap is not less than m2." << endl; return 0; }
Let us compile and run the above program, this will produce the following result −
m1 multimap is less than m2. m1 multimap is not less than m2.
map.htm
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4