hex.and (arity 2)ΒΆ
dst &= src
both dst,src are hexes.
SignatureΒΆ
def and dst, src < .and.dst { ... }
Defined in hex/logics.fj β lines 318β320 (view on GitHub).
ComplexityΒΆ
Time:
4@+10Space:
4@+52
See the complexity glossary for what @, w, dw, dbit, n mean.
Requires initΒΆ
The following must be initialised before this macro is invoked:
hex.and.init (or hex.init)
SourceΒΆ
Click to view the macro body
def and dst, src < .and.dst {
.tables.jump_to_table_entry dst, src, .and.dst
}
Depends onΒΆ
β Previous: hex.or.init
Next: hex.and/3 β