stl.output_bitΒΆ
bit is a constant. 0 will output 0, anything else will output 1.
SignatureΒΆ
def output_bit bit < .IO { ... }
Defined in runlib.fj β lines 153β155 (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 output_bit bit < .IO {
.IO + (bit ? 1 : 0);
}
β Previous: stl.loop
Next: stl.output_char β