type google.golang.org/grpc/resolver.EndpointMap

10 uses

	google.golang.org/grpc/resolver (current package)
		map.go#L165: type EndpointMap[T any] struct {
		map.go#L177: func NewEndpointMap[T any]() *EndpointMap[T] {
		map.go#L178: 	return &EndpointMap[T]{
		map.go#L199: func (em *EndpointMap[T]) Get(e Endpoint) (value T, ok bool) {
		map.go#L208: func (em *EndpointMap[T]) Set(e Endpoint, value T) {
		map.go#L217: func (em *EndpointMap[T]) Len() int {
		map.go#L226: func (em *EndpointMap[T]) Keys() []Endpoint {
		map.go#L235: func (em *EndpointMap[T]) Values() []T {
		map.go#L244: func (em *EndpointMap[T]) Delete(e Endpoint) {

	google.golang.org/grpc/balancer/endpointsharding
		endpointsharding.go#L103: 	children atomic.Pointer[resolver.EndpointMap[*balancerWrapper]]