type go.uber.org/atomic.Pointer

8 uses

	go.uber.org/atomic (current package)
		pointer_go118.go#L29: func (p *Pointer[T]) String() string {
		pointer_go119.go#L29: type Pointer[T any] struct {
		pointer_go119.go#L35: func NewPointer[T any](v *T) *Pointer[T] {
		pointer_go119.go#L36: 	var p Pointer[T]
		pointer_go119.go#L44: func (p *Pointer[T]) Load() *T {
		pointer_go119.go#L49: func (p *Pointer[T]) Store(val *T) {
		pointer_go119.go#L54: func (p *Pointer[T]) Swap(val *T) (old *T) {
		pointer_go119.go#L59: func (p *Pointer[T]) CompareAndSwap(old, new *T) (swapped bool) {