bit.not (arity 1)¶
dst ^= 1
dst is a bit.
Signature¶
def not dst { ... }
Defined in bit/logics.fj — lines 111–113 (view on GitHub).
Complexity¶
Time:
1Space:
1
See the complexity glossary for what @, w, dw, dbit, n mean.
Source¶
Click to view the macro body
def not dst {
dst + dbit;
}
Used by¶
Example uses¶
bit.oneinbit/memory.fjbit.swapinbit/memory.fjbit.inc.inc1_with_carry0_jumpinbit/math.fj