| 102 | */ |
| 103 | |
| 104 | forceinline ModEvent |
| 105 | NegBoolView::lq(Space& home, int n) { |
| 106 | return n==0 ? x.one(home) : (n < 0 ? ME_BOOL_FAILED : ME_BOOL_NONE); |
| 107 | } |
| 108 | forceinline ModEvent |
| 109 | NegBoolView::lq(Space& home, long long int n) { |
| 110 | return n==0 ? x.one(home) : (n < 0 ? ME_BOOL_FAILED : ME_BOOL_NONE); |