bit.and (arity 3)ΒΆ

dst[:n] &= src[:n]
dst,src are bit[:n].

SignatureΒΆ

def and n, dst, src { ... }

Defined in bit/logics.fj β€” lines 103–105 (view on GitHub).

ComplexityΒΆ

  • Time: n(2@+2)

  • Space: n(2@+2)

See the complexity glossary for what @, w, dw, dbit, n mean.

SourceΒΆ


← Previous: bit.and/2 Next: bit.not/1 β†’