Versions in this module Expand all Collapse all v0 v0.2.1 Feb 28, 2024 v0.2.0 May 4, 2023 v0.1.0 Feb 4, 2023 Changes in this version + type Stack struct + func NewStack() *Stack + func (stack *Stack) Empty() bool + func (stack *Stack) Len() int + func (stack *Stack) Peak() interface{} + func (stack *Stack) Pop() interface{} + func (stack *Stack) Push(value interface{})