Files
node/cache/lru/zero.go
T

10 lines
172 B
Go

// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package lru
func zero[T any]() T {
var z T
return z
}