| 118 | return n==1 ? x.one(home) : (n < 1 ? ME_BOOL_FAILED : ME_BOOL_NONE); |
| 119 | } |
| 120 | forceinline ModEvent |
| 121 | NegBoolView::gq(Space& home, int n) { |
| 122 | return n==1 ? x.zero(home) : (n <= 0 ? ME_BOOL_NONE : ME_BOOL_FAILED); |
| 123 | } |
| 124 | forceinline ModEvent |
| 125 | NegBoolView::gq(Space& home, long long int n) { |
| 126 | return n==1 ? x.zero(home) : (n <= 0 ? ME_BOOL_NONE : ME_BOOL_FAILED); |