Versions in this module Expand all Collapse all v0 v0.1.11 Oct 3, 2023 v0.1.10 Oct 2, 2023 Changes in this version + type Stack interface + Clear func() + IsEmpty func() bool + Peek func() (T, bool) + Pop func() (T, bool) + Push func(element T) + Size func() int + func New(threadSafe ...bool) Stack[T]