Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LinkedStack ¶
type LinkedStack struct {
// contains filtered or unexported fields
}
func New ¶
func New() *LinkedStack
func (*LinkedStack) IsEmpty ¶
func (st *LinkedStack) IsEmpty() bool
func (*LinkedStack) Peek ¶
func (st *LinkedStack) Peek() (t types.T)
func (*LinkedStack) Pop ¶
func (st *LinkedStack) Pop() (r types.T)
func (*LinkedStack) Push ¶
func (st *LinkedStack) Push(t types.T)
func (*LinkedStack) Size ¶
func (st *LinkedStack) Size() int
Click to show internal directories.
Click to hide internal directories.