命名空间
变体
操作

std::uses_allocator<std::flat_set>

来自 cppreference.cn
< cpp‎ | 容器‎ | flat set
 
 
 
 
在头文件 <flat_set> 中定义
template< class Key, class Compare, class KeyContainer, class Allocator >

struct uses_allocator<std::flat_set<Key, Compare, KeyContainer>, Allocator>

    : std::bool_constant<std::uses_allocator_v<KeyContainer, Allocator>> {};
(C++23 起)

std::flat_set 提供 std::uses_allocator 类型特性的透明特化:当且仅当底层容器使用分配器时,该容器适配器才使用分配器。

目录

继承自 std::integral_constant

成员常量

[静态]
true
(public static 成员常量)

成员函数

operator bool
将对象转换为 bool,返回 value
(公开成员函数)
operator()
(C++14)
返回 value
(公开成员函数)

成员类型

类型 定义
value_type bool
类型 std::integral_constant<bool, value>

[编辑] 示例

#include <memory>
#include <flat_set>
 
static_assert(
    std::uses_allocator<std::flat_set<int>, void>::value == false &&
    std::uses_allocator<std::flat_set<int>, std::allocator<int>>::value == true
);
 
int main() {}

[编辑] 参阅

检查指定类型是否支持 uses-allocator 构造
(类模板)[编辑]