Versions in this module Expand all Collapse all v0 v0.1.1 Dec 26, 2024 v0.1.0 Dec 15, 2021 Changes in this version + var ErrEmpty = fmt.Errorf("stack is empty") + type Stack struct + func New(elements []int) *Stack + func (s *Stack) Pop() (int, error) + func (s *Stack) Push(value int) + func (s *Stack) Size() int