| 2145 | typename = detail::enable_if_t< |
| 2146 | !std::is_same<vectorize_helper, typename std::decay<T>::type>::value>> |
| 2147 | explicit vectorize_helper(T &&f) : f(std::forward<T>(f)) {} |
| 2148 | |
| 2149 | object operator()(typename vectorize_arg<Args>::type... args) { |
| 2150 | return run(args..., |
nothing calls this directly
no outgoing calls
no test coverage detected