bit.and (arity 2)ΒΆ
dst &= src
dst,src are bits.
SignatureΒΆ
def and dst, src @ end { ... }
Defined in bit/logics.fj β lines 94β98 (view on GitHub).
ComplexityΒΆ
Time:
2@+2Space:
2@+2
See the complexity glossary for what @, w, dw, dbit, n mean.
SourceΒΆ
Click to view the macro body
def and dst, src @ end {
.if1 src, end
.zero dst
end:
}