| 38 | |
| 39 | template <typename T> |
| 40 | static ValueRefList apply(T&& op, const ValueRef& arg) { |
| 41 | return imperative::apply(std::forward<T&&>(op), Span<ValueRef>{&arg, 1}); |
| 42 | } |
| 43 | |
| 44 | template <typename T, typename... TArgs> |
| 45 | static auto apply(T&& op, TArgs&&... args) -> std::enable_if_t< |
no test coverage detected