hash_multiset::max_size
Returns the maximum length of the hash_multiset.
size_type max_size( ) const;
Return Value
The maximum possible length of the hash_multiset.
Remarks
In Visual C++ .NET 2003, members of the <hash_map> and <hash_set> header files are no longer in the std namespace, but rather have been moved into the stdext namespace. See The stdext Namespace for more information.
Example
// hash_multiset_max_size.cpp
// compile with: /EHsc
#define _DEFINE_DEPRECATED_HASH_CLASSES 0
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_multiset <int> hms1;
hash_multiset <int>::size_type i;
i = hms1.max_size( );
cout << "The maximum possible length "
<< "of the hash_multiset is " << i << "." << endl;
}
Sample Output
The following output is for x86.
The maximum possible length of the hash_multiset is 1073741823.
Requirements
Header: <hash_set>
Namespace: stdext