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