gods/stacks/main.go
2023-11-12 12:33:46 +03:00

11 lines
125 B
Go

package stacks
import (
"github.com/omnipunk/gods"
)
type Stack[V any] interface {
gods.Container[V]
Push(V)
Pop() V
}