Exercises vectorize(Return (Class::*)(Args...) &) NOLINTNEXTLINE(readability-make-member-function-const)
| 81 | // Exercises vectorize(Return (Class::*)(Args...) &) |
| 82 | // NOLINTNEXTLINE(readability-make-member-function-const) |
| 83 | float method_lref(int x, float y) & { return y + (float) (x + value); } |
| 84 | // Exercises vectorize(Return (Class::*)(Args...) const &) |
| 85 | float method_const_lref(int x, float y) const & { return y + (float) (x + value); } |
| 86 | // Exercises vectorize(Return (Class::*)(Args...) noexcept) |
no outgoing calls
no test coverage detected