About 43 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. 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 …

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

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

  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. std::tuple_element<std::tuple> - cppreference.com

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

  7. tuple-like, pair-like - cppreference.com

    Notes tuple-like types implement the tuple protocol, i.e., such types can be used with std::get, std::tuple_element and std::tuple_size. …

  8. std::tuple_cat - cppreference.com

    Constructs a tuple that is a concatenation of all tuples in args. The element types /* CTypes */ of the returned tuple is formed by …

  9. cppreference.com

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

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

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