jet/internal/utils/ptr/ptr.go
2024-10-06 09:04:10 -04:00

6 lines
108 B
Go

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