Versions in this module Expand all Collapse all v1 v1.0.0 Oct 8, 2022 Changes in this version + type Stack struct + func New() Stack[T] + func (s *Stack[T]) Clear() + func (s *Stack[T]) Contains(item T) bool + func (s *Stack[T]) IsEmpty() bool + func (s *Stack[T]) Peek() T + func (s *Stack[T]) Pop() T + func (s *Stack[T]) PopSafe() T + func (s *Stack[T]) Push(item ...T) + func (s *Stack[T]) Size() int + func (s *Stack[T]) Values() []T + func (s Stack[T]) String() string