func strconv.FormatBool

10 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#L769: 		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-v2/aws/protocol/eventstream
		header_value.go#L185: 	return strconv.FormatBool(bool(v))

	github.com/aws/smithy-go/encoding/httpbinding
		header.go#L78: 	h.modifyHeader(strconv.FormatBool(v))
		query.go#L44: 	qv.updateKey(strconv.FormatBool(v))
		uri.go#L32: 	return u.modifyURI(strconv.FormatBool(v))

	go.uber.org/atomic
		bool_ext.go#L52: 	return strconv.FormatBool(b.Load())

	go/constant
		value.go#L114: func (x boolVal) String() string  { return strconv.FormatBool(bool(x)) }