Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

c++ triple

#include <tuple>

std::tuple<int, int, int> three;

std::get<0>( three) = 0;
std::get<1>( three) = 1;
std::get<2>( three) = 2;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #triple
ADD COMMENT
Topic
Name
6+5 =