std::flat_multimap<Key,T,Compare,KeyContainer,MappedContainer>::keys

来自cppreference.com

 
 
 
 
const key_container_type& keys() const noexcept;
(C++23 起)

返回对适配的键容器的常量引用。等价于 return c.keys;

参数

(无)

返回值

底层键容器。

复杂度

常数。

示例

#include <flat_map>
#include <print>
#include <type_traits>
#include <vector>
 
int main()
{
    std::flat_multimap<int, double> adaptor{{1, 1.1}, {2, 2.2}, {3, 3.3}};
 
    // 默认键容器是 std::vector:
    static_assert(std::is_same_v<decltype(adaptor.keys()), const std::vector<int>&>);
 
    std::println("{}", adaptor.keys());
}

输出:

[1, 2, 3]

参阅

直接访问底层值容器
(公开成员函数)