mirror of
https://github.com/boostorg/hana.git
synced 2026-02-23 15:52:11 +00:00
17 lines
301 B
C++
17 lines
301 B
C++
<% render(instance) %>
|
|
<%= includes(x) %>
|
|
|
|
#include <boost/hana/foldable/foldable.hpp>
|
|
|
|
|
|
template <int> struct x { };
|
|
|
|
int main() {
|
|
boost::hana::unpack([](auto ...xs) { },
|
|
<%= list(
|
|
(0..x).map { |i| "x<#{i}>" },
|
|
(0..x).map { |i| "x<#{i}>{}" }
|
|
) %>
|
|
);
|
|
}
|