shad-go/lrucache/lru.go

8 lines
90 B
Go
Raw Normal View History

// +build !solution
package lrucache
func New(cap int) Cache {
2020-03-29 20:05:47 +00:00
panic("implement me")
}