Skip to content

Instantly share code, notes, and snippets.

@ukiahsmith
Created December 5, 2022 10:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ukiahsmith/b25884b4a741f7075bc796b663557a1e to your computer and use it in GitHub Desktop.
Save ukiahsmith/b25884b4a741f7075bc796b663557a1e to your computer and use it in GitHub Desktop.
package point
// Pointer turns any value into a pointer to that value
func Pointer[T any](v T) *T {
return &v
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment