Versions in this module Expand all Collapse all v0 v0.7.0 Feb 19, 2018 v0.6.0 May 30, 2017 Changes in this version + type Element struct + type Stack struct + func NewStack(max int) *Stack + func (s *Stack) Len() int + func (s *Stack) Max() int + func (s *Stack) Peek() (value interface{}, exists bool) + func (s *Stack) Pop() (value interface{}) + func (s *Stack) PopLast() (value interface{}) + func (s *Stack) Push(value interface{})