I have a tuple with some elements, and I want to assign some elements of tuple to variables, and ignore some of them.
auto tuple1 = std::make_tuple(1,2,3,4);
// variable a should be placeholder 1 in tuple and variable b should be place holder 3;
int a,b ;