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

10 uses

	golang.org/x/tools/internal/event/keys (current package)
		keys.go#L70: type Int struct {
		keys.go#L76: func NewInt(name, description string) *Int {
		keys.go#L77: 	return &Int{name: name, description: description}
		keys.go#L80: func (k *Int) Name() string        { return k.name }
		keys.go#L81: func (k *Int) Description() string { return k.description }
		keys.go#L83: func (k *Int) Append(buf []byte, l label.Label) []byte {
		keys.go#L88: func (k *Int) Of(v int) label.Label { return k.Of64(int64(v)) }
		keys.go#L91: func (k *Int) Of64(v int64) label.Label { return label.Of64(k, uint64(v)) }
		keys.go#L94: func (k *Int) Get(lm label.Map) int64 {
		keys.go#L102: func (k *Int) From(t label.Label) int64 { return int64(t.Unpack64()) }