MCPcopy Create free account
hub / github.com/DNAProject/DNA / PopPairAsIntVal

Method PopPairAsIntVal

vm/neovm/value_stack_conversion.go:148–155  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

146}
147
148func (self *ValueStack) PopPairAsIntVal() (left, right types.IntValue, err error) {
149 right, err = self.PopAsIntValue()
150 if err != nil {
151 return
152 }
153 left, err = self.PopAsIntValue()
154 return
155}
156
157func (self *ValueStack) PopTripleAsBytes() (left, middle, right []byte, err error) {
158 right, err = self.PopAsBytes()

Callers 1

ExecuteOpMethod · 0.80

Calls 1

PopAsIntValueMethod · 0.95

Tested by

no test coverage detected