const go/types.IsBoolean

8 uses

	go/types (current package)
		basic.go#L52: 	IsBoolean BasicInfo = 1 << iota
		basic.go#L62: 	IsConstType = IsBoolean | IsNumeric | IsString
		predicates.go#L15: func isBoolean(t Type) bool        { return isBasic(t, IsBoolean) }
		predicates.go#L39: func allBoolean(typ Type) bool         { return allBasic(typ, IsBoolean) }
		universe.go#L41: 	Bool:          {Bool, IsBoolean, "bool"},
		universe.go#L60: 	UntypedBool:    {UntypedBool, IsBoolean | IsUntyped, "untyped bool"},

	golang.org/x/tools/internal/gcimporter
		iexport.go#L917: 	case types.IsBoolean:
		iimport.go#L595: 	case types.IsBoolean: