23
Containers library
[containers]
23.6
Container adaptors
[container.adaptors]
23.6.12
Class template
flat_
multiset
[flat.multiset]
23.6.12.3
Constructors
[flat.multiset.cons]
🔗
explicit
flat_multiset
(
container_type cont,
const
key_compare
&
comp
=
key_compare
(
)
)
;
1
#
Effects
: Initializes
c
with
std
::
move
(
cont
)
and
compare
with
comp
, and sorts the range [
begin
(
)
, end
(
)
) with respect to
compare
.
2
#
Complexity
: Linear in
N
if
cont
is already sorted with respect to
compare
and otherwise
N
log
N
, where
N
is the value of
cont
.
size
(
)
before this call
.