| 36 | |
| 37 | template <class T> |
| 38 | static auto equal_to(const T& x) |
| 39 | { |
| 40 | return [&](const T& y) { return std::equal_to<T>{}(x, y); }; |
| 41 | } |
| 42 | |
| 43 | instruction::instruction(operation o, shape r, std::vector<instruction_ref> args) |
| 44 | : op(std::move(o)), result(std::move(r)), arguments(std::move(args)) |
no outgoing calls
no test coverage detected