| 1059 | public: |
| 1060 | template <typename F> |
| 1061 | constexpr Function(F func) |
| 1062 | : mFunc{std::move(func)} |
| 1063 | { |
| 1064 | } |
| 1065 | constexpr auto operator()(Arg const& arg) const |
| 1066 | { |
| 1067 | if constexpr (sizeof...(Rest) == 0) |
nothing calls this directly
no outgoing calls
no test coverage detected