type golang.org/x/tools/internal/event/keys.Uint

9 uses

	golang.org/x/tools/internal/event/keys (current package)
		keys.go#L105: type Uint struct {
		keys.go#L111: func NewUint(name, description string) *Uint {
		keys.go#L112: 	return &Uint{name: name, description: description}
		keys.go#L115: func (k *Uint) Name() string        { return k.name }
		keys.go#L116: func (k *Uint) Description() string { return k.description }
		keys.go#L118: func (k *Uint) Append(buf []byte, l label.Label) []byte {
		keys.go#L123: func (k *Uint) Of(v uint64) label.Label { return label.Of64(k, v) }
		keys.go#L126: func (k *Uint) Get(lm label.Map) uint64 {
		keys.go#L134: func (k *Uint) From(t label.Label) uint64 { return t.Unpack64() }