Versions in this module Expand all Collapse all v0 v0.1.0 Sep 5, 2023 Changes in this version + type Stack struct + func New() *Stack[T] + func (s *Stack[T]) Empty() bool + func (s *Stack[T]) Pop() T + func (s *Stack[T]) Push(value T) + func (s *Stack[T]) Top() T + func (s Stack[T]) Len() int