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

11 uses

	google.golang.org/grpc/resolver (current package)
		map.go#L181: type EndpointMap[T any] struct {
		map.go#L193: func NewEndpointMap[T any]() *EndpointMap[T] {
		map.go#L194: 	return &EndpointMap[T]{
		map.go#L215: func (em *EndpointMap[T]) Get(e Endpoint) (value T, ok bool) {
		map.go#L224: func (em *EndpointMap[T]) Set(e Endpoint, value T) {
		map.go#L233: func (em *EndpointMap[T]) Len() int {
		map.go#L243: func (em *EndpointMap[T]) Keys() []Endpoint {
		map.go#L253: func (em *EndpointMap[T]) Values() []T {
		map.go#L267: func (em *EndpointMap[T]) All() iter.Seq2[Endpoint, T] {
		map.go#L278: func (em *EndpointMap[T]) Delete(e Endpoint) {

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