Compute the square of a. */
| 38 | |
| 39 | /** Compute the square of a. */ |
| 40 | inline constexpr Elem Sqr(Elem a) const { return SQR->template Map<O>(a); } |
| 41 | |
| 42 | /** Compute x such that x^2 + x = a (undefined result if no solution exists). */ |
| 43 | inline constexpr Elem Qrt(Elem a) const { return QRT->template Map<O>(a); } |
no outgoing calls
no test coverage detected