Files
cache/other.go
2024-08-17 12:04:33 +08:00

7 lines
75 B
Go

package cache
func (c *Cache[K, V]) zero() V {
var zero V
return zero
}