Versions in this module Expand all Collapse all v0 v0.0.1 Nov 13, 2023 Changes in this version + type Stack struct + func New[T any]() Stack[T] + func (s Stack[T]) Len() int + func (s Stack[T]) Peek() T + func (s Stack[T]) Pop() Stack[T] + func (s Stack[T]) Push(e T) Stack[T]