Perform mapping
| 259 | forceinline ValuesMapPow(const Ops& o) : ops(o) {} |
| 260 | /// Perform mapping |
| 261 | forceinline int val(int x) const { |
| 262 | return ops.pow(x); |
| 263 | } |
| 264 | }; |
| 265 | |
| 266 | /// Mapping integer (must be an n-th power) to n-th root |
no test coverage detected