jet/internal/utils/ptr/ptr.go

7 lines
108 B
Go
Raw Normal View History

2024-10-06 09:04:10 -04:00
package ptr
// Of returns the address of any given parameter
func Of[T any](value T) *T {
return &value
}