gods/stacks/main.go

12 lines
125 B
Go
Raw Normal View History

2023-10-24 00:48:29 +03:00
package stacks
import (
"github.com/reklesio/gods"
)
type Stack[V any] interface {
gods.Container[V]
Push(V)
Pop() V
}