unordered_multimap::max_size

Gets the maximum size of the controlled sequence.

size_type max_size() const;

Remarks

The member function returns the length of the longest sequence that the object can control.

Example

 

// std_tr1__unordered_map__unordered_multimap_max_size.cpp 
// compile with: /EHsc 
#include <unordered_map> 
#include <iostream> 
 
typedef std::unordered_multimap<char, int> Mymap; 
int main() 
    { 
    Mymap c1; 
 
    std::cout << "max_size() == " << c1.max_size() << std::endl; 
 
    return (0); 
    } 
 
max_size() == 536870911

Requirements

Header: <unordered_map>

Namespace: std

See Also

Reference

<unordered_map>

unordered_multimap Class

unordered_multimap::size

Other Resources

<unordered_map> Members