stl.comp_ifΒΆ
if expression is 0 (compilation time), jump to l0. else jump to l1
SignatureΒΆ
def comp_if expr, l0, l1 { ... }
Defined in runlib.fj β lines 105β107 (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_if expr, l0, l1 {
; expr ? l1 : l0
}
Used byΒΆ
Example usesΒΆ
stl.comp_if0inrunlib.fjstl.comp_if1inrunlib.fj
β Previous: stl.wflip_macro/3
Next: stl.comp_if0 β