命名空间
变体
操作

operator==,<=>(std::flat_map)

来自 cppreference.com
< cpp‎ | 容器‎ | 平面映射
 
 
 
 
friend bool operator==( const std::flat_map& lhs,
                        const std::flat_map& rhs );
(1) (自 C++23 起)
friend synth-three-way-result<value_type>

    operator<=>( const std::flat_map& lhs,

                 const std::flat_map& rhs );
(2) (自 C++23 起)
比较两个容器适配器的底层容器的内容。比较通过将相应的运算符应用于底层容器来完成。

内容

[编辑] 参数

lhs, rhs - 要比较其内容的容器适配器

[编辑] 返回值

1) true 如果相应的比较产生 true,否则为 false
2) 底层容器上的三路比较结果。

[编辑] 复杂度

1) 如果 lhsrhs 的大小不同,则为常数,否则为 flat_map 大小的线性。
2) 容器大小的线性。

[编辑] 示例