Exercises vectorize(Return (Class::*)(Args...) noexcept) NOLINTNEXTLINE(readability-make-member-function-const)
| 86 | // Exercises vectorize(Return (Class::*)(Args...) noexcept) |
| 87 | // NOLINTNEXTLINE(readability-make-member-function-const) |
| 88 | float method_noexcept(int x, float y) noexcept { return y + (float) (x + value); } |
| 89 | // Exercises vectorize(Return (Class::*)(Args...) const noexcept) |
| 90 | float method_const_noexcept(int x, float y) const noexcept { |
| 91 | return y + (float) (x + value); |
no outgoing calls
no test coverage detected