2
0
mirror of https://github.com/boostorg/hana.git synced 2026-02-23 15:52:11 +00:00
Files
hana/benchmark/list/instance/ext/std/tuple.hpp
2014-07-12 10:43:11 -04:00

13 lines
194 B
C++

<%
def includes(n)
return <<-EOS
#include <boost/hana/ext/std/tuple.hpp>
#include <tuple>
EOS
end
def list(xs_t, xs)
return "std::make_tuple(#{xs.join(', ')})"
end
%>