std::multiset<Key,Compare,Allocator>::
get_allocator
From cppreference.com
<
cpp
|
container
|
multiset
C++
Compiler support
Freestanding and hosted
Language
Standard library
Standard library headers
Named requirements
Feature test macros
(C++20)
Language support library
Concepts library
(C++20)
Metaprogramming library
(C++11)
Diagnostics library
General utilities library
Strings library
Containers library
Iterators library
Ranges library
(C++20)
Algorithms library
Numerics library
Localizations library
Input/output library
Filesystem library
(C++17)
Regular expressions library
(C++11)
Concurrency support library
(C++11)
Technical specifications
Symbols index
External libraries
Containers library
Sequence
array
(C++11)
vector
vector
<bool>
deque
forward_list
(C++11)
list
Associative
set
multiset
map
multimap
Unordered associative
unordered_set
(C++11)
unordered_multiset
(C++11)
unordered_map
(C++11)
unordered_multimap
(C++11)
Adaptors
stack
queue
priority_queue
flat_set
(C++23)
flat_multiset
(C++23)
flat_map
(C++23)
flat_multimap
(C++23)
Views
span
(C++20)
mdspan
(C++23)
Iterator invalidation
Member function table
Non-member function table
std::multiset
Member functions
multiset::multiset
multiset::~multiset
multiset::operator=
multiset::get_allocator
Iterators
multiset::begin
multiset::cbegin
(C++11)
multiset::end
multiset::cend
(C++11)
multiset::rbegin
multiset::crbegin
(C++11)
multiset::rend
multiset::crend
(C++11)
Capacity
multiset::empty
multiset::size
multiset::max_size
Modifiers
multiset::clear
multiset::insert
multiset::insert_range
(C++23)
multiset::emplace
(C++11)
multiset::emplace_hint
(C++11)
multiset::erase
multiset::swap
multiset::extract
(C++17)
multiset::merge
(C++17)
Lookup
multiset::count
multiset::find
multiset::contains
(C++20)
multiset::equal_range
multiset::lower_bound
multiset::upper_bound
Observers
multiset::key_comp
multiset::value_comp
Non-member functions
std::swap
erase_if
(C++20)
operator==
operator!=
operator<
operator>
operator<=
operator>=
operator<=>
(until C++20)
(until C++20)
(until C++20)
(until C++20)
(until C++20)
(C++20)
Deduction guides
(C++17)
allocator_type get_allocator
(
)
const
;
(until C++11)
allocator_type get_allocator
(
)
const
noexcept
;
(since C++11)
Returns the allocator associated with the container.
Parameters
(none)
Return value
The associated allocator.
Complexity
Constant.