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

Method PopTriple

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

Source from the content-addressed store, hash-verified

146}
147
148func (self *ValueStack) PopTriple() (left, middle, right types.VmValue, err error) {
149 middle, right, err = self.PopPair()
150 if err != nil {
151 return
152 }
153 left, err = self.Pop()
154 return
155}
156
157func (self *ValueStack) Swap(i, j int64) error {
158 l := int64(len(self.data))

Callers 1

ExecuteOpMethod · 0.80

Calls 2

PopPairMethod · 0.95
PopMethod · 0.95

Tested by

no test coverage detected