summaryrefslogtreecommitdiffhomepage
path: root/types/ptr/ptr.go
blob: beb17bee8ee0ee0e026628611eda0c669a53e29e (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright (c) Tailscale Inc & AUTHORS
// SPDX-License-Identifier: BSD-3-Clause

// Package ptr contains the ptr.To function.
package ptr

// To returns a pointer to a shallow copy of v.
func To[T any](v T) *T {
	return &v
}