Files
maxwarden/tools/jet-2.12.0/internal/utils/ptr/ptr.go
2025-03-06 23:54:11 -05:00

7 lines
108 B
Go

package ptr
// Of returns the address of any given parameter
func Of[T any](value T) *T {
return &value
}