Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LinkedList ¶
type LinkedList[T comparable] struct { // contains filtered or unexported fields }
func (*LinkedList[T]) Delete ¶
func (l *LinkedList[T]) Delete(value T) bool
func (*LinkedList[T]) Has ¶
func (l *LinkedList[T]) Has(value T) bool
func (*LinkedList[T]) Insert ¶
func (l *LinkedList[T]) Insert(value T)
type Node ¶
type Node[T comparable] struct { Value T Next *Node[T] }
Click to show internal directories.
Click to hide internal directories.