Versions in this module Expand all Collapse all v3 v3.0.1 Dec 26, 2023 Changes in this version type Stack + func (s *Stack) Print2Str() string v3.0.0 Dec 23, 2022 Changes in this version + type Stack struct + func New(max int) *Stack + func (s *Stack) CheckStackDepth(minRequire int, willAdd int) error + func (s *Stack) Dup(n int) + func (s *Stack) GetData() []*evmutils.Int + func (s *Stack) Len() int + func (s *Stack) Peek() *evmutils.Int + func (s *Stack) PeekN(n int) []*evmutils.Int + func (s *Stack) Pop() *evmutils.Int + func (s *Stack) PopN(n int) []*evmutils.Int + func (s *Stack) Push(i *evmutils.Int) + func (s *Stack) PushN(i []*evmutils.Int) + func (s *Stack) Swap(n int) Other modules containing this package chainmaker.org/chainmaker/vm-evm/v2