Files

10 lines
201 B
Go

// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package utils
// Returns a new instance of a T.
func Zero[T any]() (_ T) {
return
}