func strconv.AppendBool
8 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#L872: if err := emit(p, strconv.AppendBool(scratch[:0], vf.Bool())); err != nil {
github.com/aws/smithy-go/encoding/xml
value.go#L160: *xv.scratch = strconv.AppendBool((*xv.scratch)[:0], v)
go.pact.im/x/zapjournal
encoder.go#L116: e.buf = strconv.AppendBool(e.buf, value)
json.go#L198: e.setBuf(strconv.AppendBool(e.buf(), v))
go.uber.org/zap/buffer
buffer.go#L68: b.bs = strconv.AppendBool(b.bs, v)
golang.org/x/tools/internal/event/keys
keys.go#L509: w.Write(strconv.AppendBool(buf, k.From(l)))