
std::tuple - cppreference.com
Class template std::tuple is a fixed-size collection of heterogeneous values. It is a generalization of std::pair. If …
std::tuple<Types...>::tuple - cppreference.com
Constructs a new tuple. In the descriptions that follow, let i be in the range [0, sizeof...(Types)) in order, Ti be the i th type in Types, …
Standard library header <tuple> (C++11) - cppreference.com
TTypes, class... UTypes> constexpr common_comparison_category_t</*synth-three-way-result*/<TTypes, UTypes>...> …
std::make_tuple - cppreference.com
Creates a tuple object, deducing the target type from the types of arguments. For each Ti in Types..., the corresponding type Vi in …
std::get (std::tuple) - cppreference.com
5-8) Extracts the element of the tuple t whose type is T. Fails to compile unless the tuple has exactly one element of that type.
cppreference.com
What links here Related changes Upload file Special pages Printable version Permanent link Page information
operator==,!=,<,<=,>,>=,<=> (std::tuple) - cppreference.com
1,2) Compares every element of the tuple lhs with the corresponding element of the tuple rhs by operator==.
std::tuple_element<std::tuple> - cppreference.com
Provides compile-time indexed access to the types of the elements of the tuple.
std::tuple_size<std::tuple> - cppreference.com
Provides access to the number of elements in a tuple as a compile-time constant expression.
std::tuple<Types...>::operator= - cppreference.com
Replaces the contents of the tuple with the contents of another tuple-like object. In the descriptions that follow, let i be in the range [ 0 …