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

9 uses

	golang.org/x/tools/internal/event/keys (current package)
		keys.go#L495: type Boolean struct {
		keys.go#L501: func NewBoolean(name, description string) *Boolean {
		keys.go#L502: 	return &Boolean{name: name, description: description}
		keys.go#L505: func (k *Boolean) Name() string        { return k.name }
		keys.go#L506: func (k *Boolean) Description() string { return k.description }
		keys.go#L508: func (k *Boolean) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L513: func (k *Boolean) Of(v bool) label.Label {
		keys.go#L521: func (k *Boolean) Get(lm label.Map) bool {
		keys.go#L529: func (k *Boolean) From(t label.Label) bool { return t.Unpack64() > 0 }