Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SortedList ¶
type SortedList interface { Len() int Insert(Item) Remove(Item) Contains(Item) bool Range(func(Item) bool) ReverseRange(fn func(Item) bool) }
func NewSortedList ¶
func NewSortedList() SortedList
type SortedUniqueList ¶
type SortedUniqueList interface { Len() int Insert(Item) Remove(Item) Contains(Item) bool Range(func(Item) bool) ReverseRange(fn func(Item) bool) }
func NewSortedUniqueList ¶
func NewSortedUniqueList() SortedUniqueList
Click to show internal directories.
Click to hide internal directories.