1
0
Fork 0
hacks/pointer/pointer.go

8 lines
161 B
Go

// The pointer package contains utilities for working with pointers.
package pointer
// Of returns pointer to provided v.
func Of[T any](v T) *T {
return &v
}