| 29 | template <typename...> struct Bundle; |
| 30 | |
| 31 | template <> struct Bundle<> {}; |
| 32 | template <typename T, typename... Ts> struct Bundle<T, Ts...> { |
| 33 | T head; |
| 34 | Bundle<Ts...> tail; |
nothing calls this directly
no outgoing calls
no test coverage detected