func strconv.AppendBool

5 uses

	strconv (current package)
		atob.go#L30: func AppendBool(dst []byte, b bool) []byte {

	database/sql
		convert.go#L532: 		return strconv.AppendBool(buf, rv.Bool()), true

	encoding/xml
		marshal.go#L868: 				if err := emit(p, strconv.AppendBool(scratch[:0], vf.Bool())); err != nil {

	github.com/lib/pq
		encode.go#L47: 		return strconv.AppendBool(nil, v)
		encode.go#L147: 		return strconv.AppendBool(buf, v)