hex.sub.not_carry¶
carry = !carry
Signature¶
def not_carry < .dst { ... }
Defined in hex/math.fj — lines 240–242 (view on GitHub).
Complexity¶
Time:
1Space:
1
See the complexity glossary for what @, w, dw, dbit, n mean.
Requires init¶
The following must be initialised before this macro is invoked:
hex.sub.init (or hex.init)
Source¶
Click to view the macro body
def not_carry < .dst {
.dst+dbit+8;
}
Used by¶
Example uses¶
hex.sub.clear_carryinhex/math.fjhex.sub.set_carryinhex/math.fj
← Previous: hex.sub.clear_carry/2
Next: hex.sub.set_carry →