bit.mov (arity 2)ΒΆ
note: works if dst==src.
dst = src
dst,src are bits.
SignatureΒΆ
def mov dst, src @ end { ... }
Defined in bit/memory.fj β lines 73β77 (view on GitHub).
ComplexityΒΆ
Time:
2@-1Space:
2@-1
See the complexity glossary for what @, w, dw, dbit, n mean.
SourceΒΆ
Click to view the macro body
def mov dst, src @ end {
stl.comp_if1 dst==src, end
.unsafe_mov dst, src
end:
}
Depends onΒΆ
Used byΒΆ
Example usesΒΆ
β Previous: bit.unsafe_mov
Next: bit.mov/3 β