package ds type Stack[T any] interface { Addable[T] Sized Push(value T) Pop() T Peek() T PeekAt(index int) T }