| 237 | public: |
| 238 | template <typename F> |
| 239 | constexpr Function(F func) |
| 240 | : mFunc{std::move(func)} |
| 241 | { |
| 242 | } |
| 243 | constexpr auto operator()(Arg const& arg) const |
| 244 | { |
| 245 | if constexpr (sizeof...(Rest) == 0) |
nothing calls this directly
no outgoing calls
no test coverage detected