1// SPDX-FileCopyrightText: Copyright The Lima Authors 2// SPDX-License-Identifier: Apache-2.0 3 4// Package ptr holds utilities for taking pointer references to values. 5package ptr 6 7// Of returns pointer to value. 8func Of[T any](value T) *T { 9 return &value 10} 11 12