type weak.Pointer

8 uses

	weak (current package)
		pointer.go#L58: type Pointer[T any] struct {
		pointer.go#L66: func Make[T any](ptr *T) Pointer[T] {
		pointer.go#L75: 	return Pointer[T]{u: u}
		pointer.go#L83: func (p Pointer[T]) Value() *T {

	unique
		handle.go#L58: 		toInsertWeak weak.Pointer[T]
		handle.go#L60: 	newValue := func() (T, weak.Pointer[T]) {
		handle.go#L117: 	isync.HashTrieMap[T, weak.Pointer[T]]
		handle.go#L134: 			m.All()(func(key T, wp weak.Pointer[T]) bool {