Versions in this module Expand all Collapse all v0 v0.1.0 Sep 8, 2023 Changes in this version + func Contains[T comparable](slice []T, value T) bool + type Stack interface + Len func() int + Peek func() (T, bool) + Pop func() (T, bool) + Push func(T) + func NewStack[T any]() Stack[T]