3
0
mirror of https://github.com/triqs/dft_tools synced 2024-11-01 19:53:45 +01:00
dft_tools/doc/reference/c++/utilities/tupletools_2.cpp

12 lines
279 B
C++
Raw Normal View History

#include <triqs/utility/tuple_tools.hpp>
#include <iostream>
int main() {
auto t1 = std::make_tuple(1, 2.3, 4.3, 8);
auto t2 = std::make_tuple('|','|','|','|');
auto l = [](double x, char c) { std::cout << c << " " << x << " "; };
triqs::tuple::for_each_zip(l, t1, t2);
}