MCPcopy Index your code
hub / github.com/endbasic/endbasic / do_bitwise_and

Method do_bitwise_and

core/src/vm/context.rs:655–657  ·  view source on GitHub ↗

Implements the `BitwiseAnd` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

653
654 /// Implements the `BitwiseAnd` opcode.
655 pub(super) fn do_bitwise_and(&mut self, instr: u32) {
656 self.do_binary_integer_op(instr, bytecode::parse_bitwise_and, checked_and_integer);
657 }
658
659 /// Implements the `BitwiseNot` opcode.
660 pub(super) fn do_bitwise_not(&mut self, instr: u32) {

Callers 1

execMethod · 0.80

Calls 1

do_binary_integer_opMethod · 0.80

Tested by

no test coverage detected