<tuple>

定义实例保存更改类型的对象的模板。tuple

#include <tuple>

tuple 类

定长包装元素序列。

tuple_element 类 <tuple>

包装 tuple 元素的类型。

tuple_size 类 <tuple>

包装 tuple 的元素数。

运算符

operator== <tuple>

tuple 对象,等于比较

operator!= <tuple>

不等于 tuple 对象的比较,

operator< <tuple>

比较 tuple 对象,小于

operator<= <tuple>

tuple 对象少于或等于比较,

operator> <tuple>

比较,大于 tuple 对象

operator>= <tuple>

tuple 对象,大于或等于比较

函数

get 函数 <tuple>

从 tuple 对象获取元素。

make_tuple 函数

从元素值设置为 tuple。

tie 函数

从元素引用使得 tuple。

请参见

参考

<array>