<tuple>

テンプレートを定義するtuple 、さまざまな種類のオブジェクトのインスタンスを保持します。

#include <tuple>

Bb983001.collapse_all(ja-jp,VS.110).gifClasses

tuple クラス

固定長の要素シーケンスをラップします。

tuple_element クラス <tuple>

tuple 要素の型をラップします。

tuple_size クラス <tuple>

tuple 要素の数をラップします。

Bb983001.collapse_all(ja-jp,VS.110).gif演算子

operator== <tuple>

比較のtupleと等しいオブジェクト

operator!= <tuple>

比較のtupleオブジェクトと等しくないです。

operator< <tuple>

比較のtupleオブジェクトより小さい

operator<= <tuple>

比較のtupleオブジェクト、以下

operator> <tuple>

比較のtupleより大きいオブジェクトは、

operator>= <tuple>

比較のtupleオブジェクトより大きいか等しい

Bb983001.collapse_all(ja-jp,VS.110).gif関数

get 関数 <tuple>

tuple オブジェクトから要素を取得します。

make_tuple 関数

要素の値から tuple を作成します。

tie 関数

要素の参照から tuple を作成します。

参照

関連項目

<array>