mirror of
https://github.com/boostorg/hana.git
synced 2026-02-23 15:52:11 +00:00
13 lines
194 B
C++
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
|
|
%>
|