stl.comp_if1ΒΆ
if expression is not 0 (compilation time), jump to l1. else continue
SignatureΒΆ
def comp_if1 expr, l1 @ continue { ... }
Defined in runlib.fj β lines 116β119 (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_if1 expr, l1 @ continue {
.comp_if expr, continue, l1
continue:
}
Depends onΒΆ
Used byΒΆ
Example usesΒΆ
β Previous: stl.comp_if0
Next: stl.comp_flip_if β