Versions in this module Expand all Collapse all v0 v0.21.0 Jul 29, 2025 Changes in this version + type MinStack struct + func NewMinStack[T any](less cmp.LessFunc[T]) MinStack[T] + func (ms *MinStack[T]) GetMin() T + func (ms *MinStack[T]) Pop() (T, bool) + func (ms *MinStack[T]) Push(x T) + func (ms *MinStack[T]) Top() T