operator==,<=>(std::flat_multimap)
From cppreference.com
< cpp | container | flat multimap
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Containers library
(C++17)
(C++11)
(C++26)
(C++26)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++23)
(C++23)
(C++23)
(C++23)
(C++20)
(C++23)
Tables
std::flat_multimap
operator==operator<=>
friend bool operator==( const std::flat_multimap & lhs,
const std::flat_multimap & rhs );
(1)
(since C++23)
const std::flat_multimap & rhs );
friend synth-three-way-result<value_type>
(2)
(since C++23)
operator<=>( const std::flat_multimap & lhs,
This section is incomplete
Reason: For "flat" containers only: copy parts of Template:cpp/container/operator_cmp
Reason: For "flat" containers only: copy parts of Template:cpp/container/operator_cmp
Contents
[edit] Parameters
lhs, rhs
-
container adaptors whose contents to compare
This section is incomplete
Reason: Add named requirements to "flat" container inner types
Reason: Add named requirements to "flat" container inner types
[edit] Return value
1) true if the corresponding comparison yields true, false otherwise.
2) Result of three-way comparison on underlying containers.
[edit] Complexity
1) Constant if lhs and rhs are of different size, otherwise linear in the size of the
flat_multimap
.2)
Linear in the size of the container.
[edit] Example
This section is incomplete
Reason: no example
Reason: no example