auto di = make_tuple(2.5, 3, 'c'); cout << get<0>(di) // prints 2.5 cout << get(di); // prints 'c' (C++14) int three = get<1>(di); // ??? any reason tuples doesn't support [] indexing??