Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LinkedList ¶
type LinkedList interface {
AddLast(int)
AddFirst(int)
PollFirst() (int, bool)
PollLast() (int, bool)
}
func NewLinkedList ¶
func NewLinkedList(values ...int) LinkedList
Click to show internal directories.
Click to hide internal directories.

