MCPcopy Create free account
hub / github.com/chain/txvm / opOr

Function opOr

protocol/txvm/boolean.go:14–18  ·  view source on GitHub ↗
(vm *VM)

Source from the content-addressed store, hash-verified

12}
13
14func opOr(vm *VM) {
15 q := vm.popBool()
16 p := vm.popBool()
17 vm.pushBool(p || q)
18}

Callers

nothing calls this directly

Calls 2

popBoolMethod · 0.80
pushBoolMethod · 0.80

Tested by

no test coverage detected