type go.uber.org/atomic.Pointer

7 uses

	go.uber.org/atomic (current package)
		pointer_go118.go#L28: type Pointer[T any] struct {
		pointer_go118.go#L34: func NewPointer[T any](v *T) *Pointer[T] {
		pointer_go118.go#L35: 	var p Pointer[T]
		pointer_go118.go#L43: func (p *Pointer[T]) Load() *T {
		pointer_go118.go#L48: func (p *Pointer[T]) Store(val *T) {
		pointer_go118.go#L53: func (p *Pointer[T]) Swap(val *T) (old *T) {
		pointer_go118.go#L58: func (p *Pointer[T]) CompareAndSwap(old, new *T) (swapped bool) {