stl.comp_if0ΒΆ
if expression is 0 (compilation time), jump to l0. else continue
SignatureΒΆ
def comp_if0 expr, l0 @ continue { ... }
Defined in runlib.fj β lines 110β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 comp_if0 expr, l0 @ continue {
.comp_if expr, l0, continue
continue:
}
Depends onΒΆ
Used byΒΆ
Example usesΒΆ
bit.print_hex_uintinbit/output.fjbit.pointers.advance_by_one_and_flip__ptr_wflipinbit/pointers.fjhex.shl_hexinhex/shifts.fj
β Previous: stl.comp_if
Next: stl.comp_if1 β