| 66 | |
| 67 | template <typename Lambda> |
| 68 | constexpr auto invoke(Lambda lambda, Bundle<> const &) noexcept { |
| 69 | return lambda(); |
| 70 | } |
| 71 | |
| 72 | template <typename Lambda, typename T, typename... Ts> |
| 73 | constexpr auto invoke(Lambda lambda, Bundle<T, Ts...> const &bundle) noexcept { |
nothing calls this directly
no outgoing calls
no test coverage detected