Codectionary / Developer documentation / C++

C++ std::tuple

C++ reference for c++ std::tuple.

Syntax

#include <tuple>
auto point = std::make_tuple(3, 4);

Examples

C++ std::tuple example

A focused example you can adapt while practising.

#include <tuple>
auto point = std::make_tuple(3, 4);

Best practices

  • Start with the smallest working example, then adapt it to your project.
  • Use the language’s standard library and idioms before introducing extra dependencies.

At a glance

Purpose
Systems and general-purpose software
File extension
.cpp · .hpp
Runs in
Compiled native applications
Usually used with
Compiler and standard library

Specifications & further reading

Related C++ documentation