- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for MoveToFront (0.06 sec)
-
internal/lru/lru.go
l.lazyInit() return l.insertValue(k, v, expiresAt, &l.root) } // MoveToFront moves element e to the front of list l. // If e is not an element of l, the list is not modified. // The element must not be nil. func (l *LruList[K, V]) MoveToFront(e *Entry[K, V]) { if e.list != l || l.root.next == e { return } // see comment in List.Remove about initialization of l
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Apr 25 08:22:26 UTC 2025 - 12.5K bytes - Viewed (0) -
api/go1.txt
pkg container/list, method (*List) InsertBefore(interface{}, *Element) *Element pkg container/list, method (*List) Len() int pkg container/list, method (*List) MoveToBack(*Element) pkg container/list, method (*List) MoveToFront(*Element) pkg container/list, method (*List) PushBack(interface{}) *Element pkg container/list, method (*List) PushBackList(*List) pkg container/list, method (*List) PushFront(interface{}) *Element
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0)