| 156 | |
| 157 | template<class Val, class UnsVal> |
| 158 | forceinline ModEvent |
| 159 | ScaleView<Val,UnsVal>::gq(Space& home, Val n) { |
| 160 | return (n <= min()) ? ME_INT_NONE : |
| 161 | x.gq(home,ceil_div_xp(n,static_cast<Val>(a))); |
| 162 | } |
| 163 | template<class Val, class UnsVal> |
| 164 | forceinline ModEvent |
| 165 | ScaleView<Val,UnsVal>::gr(Space& home, Val n) { |
nothing calls this directly
no test coverage detected