std::flat_multiset<Key,Compare,KeyContainer>::emplace

Inserts a new element into the container constructed in-place with the given args.

# Declarations

template< class... Args >
iterator emplace( Args&&... args );

(since C++23)

# Parameters

# Return value

An iterator to the inserted element.

# Example

This section is incompleteReason: no example

# See also