Versions in this module Expand all Collapse all v0 v0.1.3 Aug 26, 2024 Changes in this version + type Stack []V + func NewStack[V any](vals ...V) Stack[V] + func (s *Stack[V]) All() iter.Seq[V] + func (s *Stack[V]) Enumerate(start int) iter.Seq2[int, V] + func (s *Stack[V]) Pop() V + func (s *Stack[V]) Push(val ...V) + func (s Stack[V]) IsEmpty() bool + func (s Stack[V]) Len() int + func (s Stack[V]) Peek() V + func (s Stack[V]) String() string