6 lines
108 B
Go
6 lines
108 B
Go
package ptr
|
|
|
|
// Of returns the address of any given parameter
|
|
func Of[T any](value T) *T {
|
|
return &value
|
|
}
|