次の方法で共有


<tuple>

更新 : 2007 年 11 月

テンプレート tuple を定義します。このクラスのインスタンスを使用して、さまざまな型のオブジェクトを保持することができます。

#include <tuple>

Declarations

Class

[Description]

tuple クラス

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

tuple_element クラス <tuple>

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

tuple_size クラス <tuple>

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

テンプレート関数

[演算子]

[Description]

operator== <tuple>

tuple オブジェクトの大小関係 (等しい) を比較します。

operator!= <tuple>

tuple オブジェクトの大小関係 (等しくない) を比較します。

operator< <tuple>

tuple オブジェクトの大小関係 (より小さい) を比較します。

operator<= <tuple>

tuple オブジェクトの大小関係 (以下) を比較します。

operator> <tuple>

tuple オブジェクトの大小関係 (より大きい) を比較します。

operator>= <tuple>

tuple オブジェクトの大小関係 (以上) を比較します。

Function

[Description]

get 関数 <tuple>

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

make_tuple 関数

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

tie 関数

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

参照

参照

<array>