About 29 results
Open links in new tab
  1. std::tuple - cppreference.com

    Class template std::tuple is a fixed-size collection of heterogeneous values. It is a generalization of std::pair. If …

  2. 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, …

  3. Standard library header <tuple> (C++11) - cppreference.com

    TTypes, class... UTypes> constexpr common_comparison_category_t</*synth-three-way-result*/<TTypes, UTypes>...> …

  4. 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 …

  5. 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.

  6. cppreference.com

    What links here Related changes Upload file Special pages Printable version Permanent link Page information

  7. operator==,!=,<,<=,>,>=,<=> (std::tuple) - cppreference.com

    1,2) Compares every element of the tuple lhs with the corresponding element of the tuple rhs by operator==.

  8. std::tuple_element<std::tuple> - cppreference.com

    Provides compile-time indexed access to the types of the elements of the tuple.

  9. std::tuple_size<std::tuple> - cppreference.com

    Provides access to the number of elements in a tuple as a compile-time constant expression.

  10. 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 …