| 39 | |
| 40 | template <typename H> |
| 41 | append_handler(H&& handler, std::tuple<Values...> values) |
| 42 | : handler_(static_cast<H&&>(handler)), |
| 43 | values_(static_cast<std::tuple<Values...>&&>(values)) |
| 44 | { |
| 45 | } |
| 46 | |
| 47 | template <typename... Args> |
| 48 | void operator()(Args&&... args) |
nothing calls this directly
no outgoing calls
no test coverage detected