Versions in this module Expand all Collapse all v0 v0.0.1 Aug 22, 2020 Changes in this version + type Item struct + type Stack struct + func New() *Stack + func (stack *Stack) IsEmpty() bool + func (stack *Stack) Peek() interface{} + func (stack *Stack) Pop() interface{} + func (stack *Stack) Push(item interface{})