Versions in this module Expand all Collapse all v0 v0.0.2 Oct 15, 2022 v0.0.1 Oct 15, 2022 Changes in this version + type Stack struct + func New() *Stack[T] + func (s *Stack[T]) IsEmpty() bool + func (s *Stack[T]) Len() int + func (s *Stack[T]) Peek() (t T) + func (s *Stack[T]) Pop() (item T) + func (s *Stack[T]) Push(item T)