func strconv.FormatBool

11 uses

	strconv (current package)
		atob.go#L21: func FormatBool(b bool) string {

	database/sql
		convert.go#L516: 		return strconv.FormatBool(rv.Bool())

	encoding/xml
		marshal.go#L765: 		return strconv.FormatBool(val.Bool()), nil, nil

	flag
		flag.go#L127: func (b *boolValue) String() string { return strconv.FormatBool(bool(*b)) }

	github.com/aws/aws-sdk-go/private/protocol/query/queryutil
		queryutil.go#L225: 		v.Set(name, strconv.FormatBool(value))

	github.com/aws/aws-sdk-go/private/protocol/rest
		build.go#L279: 		str = strconv.FormatBool(value)

	github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil
		build.go#L286: 		str = strconv.FormatBool(converted)

	github.com/emirpasic/gods/utils
		utils.go#L43: 		return strconv.FormatBool(value.(bool))

	github.com/jackc/pgx/v4/internal/sanitize
		sanitize.go#L44: 				str = strconv.FormatBool(arg)

	go.opentelemetry.io/otel/label
		value.go#L255: 		return strconv.FormatBool(v.AsBool())

	golang.org/x/pkgsite/internal/middleware
		caching.go#L79: 		tag.Upsert(keyCacheHit, strconv.FormatBool(hit)),