| 296 | static_assert(nbArgs > 0); |
| 297 | public: |
| 298 | constexpr GenericFunction(Repr func) |
| 299 | : mFunc{std::move(func)} |
| 300 | { |
| 301 | } |
| 302 | template <typename Arg> |
| 303 | constexpr auto operator()(Arg const& arg) const |
| 304 | { |
nothing calls this directly
no outgoing calls
no test coverage detected