Documentation ¶ Index ¶ type SortList func (sl *SortList) Clear() func (sl *SortList) Erase(key uint64) int func (sl *SortList) Find(key uint64) interface{} func (sl *SortList) Insert(key uint64, value interface{}) func (sl *SortList) List() []SortNode func (sl *SortList) Size() int type SortNode Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type SortList ¶ type SortList struct { SList []SortNode } func (*SortList) Clear ¶ func (sl *SortList) Clear() func (*SortList) Erase ¶ func (sl *SortList) Erase(key uint64) int func (*SortList) Find ¶ func (sl *SortList) Find(key uint64) interface{} func (*SortList) Insert ¶ func (sl *SortList) Insert(key uint64, value interface{}) func (*SortList) List ¶ func (sl *SortList) List() []SortNode func (*SortList) Size ¶ func (sl *SortList) Size() int type SortNode ¶ type SortNode struct { Key uint64 Value interface{} } Source Files ¶ View all Source files sortlist.go Click to show internal directories. Click to hide internal directories.