bit.zero (arity 1)¶
bit = 0
Signature¶
def zero bit { ... }
Defined in bit/memory.fj — lines 35–37 (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 zero bit {
.xor bit, bit
}
Depends on¶
Used by¶
Example uses¶
bit.oneinbit/memory.fjbit.unsafe_movinbit/memory.fjbit.andinbit/logics.fj
← Previous: bit.vec/1
Next: bit.zero/2 →