Perform mapping of minimum
| 257 | forceinline RangesMapPow(const Ops& o) : ops(o) {} |
| 258 | /// Perform mapping of minimum |
| 259 | forceinline int min(int x) const { |
| 260 | return ops.tpow(x); |
| 261 | } |
| 262 | /// Perform mapping of maximum |
| 263 | forceinline int max(int x) const { |
| 264 | return ops.tpow(x+1)-1; |
no test coverage detected