Versions in this module Expand all Collapse all v0 v0.2.2 Aug 25, 2020 Changes in this version + type BoolStack struct + func NewBoolStack() *BoolStack + func (s *BoolStack) Pop() bool + func (s *BoolStack) Push(v bool) + type IntStack struct + func NewIntStack() *IntStack + func (s *IntStack) Pop() int + func (s *IntStack) Push(v int) + type StringStack struct + func NewStringStack() *StringStack + func (s *StringStack) Pop() string + func (s *StringStack) Push(v string) + type T generic.Type + type TStack struct + func NewTStack() *TStack + func (s *TStack) Pop() T + func (s *TStack) Push(v T)