···1515//
1616// A Stack should be instantiated by the New function and not directly.
1717type Stack[T any] struct {
1818- container []T // Underlying slice, reference to allow mutation.
1818+ container []T // Underlying slice
1919 options options // Options for the stack.
2020}
2121