packagelruimport"container/list"// Cache is a non-concurrent weighted LRU cache.//// Methods on Cache are not safe for concurrent use.typeCache[Kcomparable,Vany]struct{maxWeightint64weightFnWeightFunc[K,V]onEvictOnEvictFunc[K,V]weightint64itemsmap[K]*list.Elementlrulist.List}