Lines Matching defs:Builder
17 type Builder struct { struct
18 addr *Builder // of receiver, to detect copies by value
23 buf []byte
26 func (b *Builder) copyCheck() {
40 func (b *Builder) String() string {
45 func (b *Builder) Len() int { return len(b.buf) }
72 panic("strings.Builder.Grow: negative count")
81 func (b *Builder) Write(p []byte) (int, error) {
89 func (b *Builder) WriteByte(c byte) error {
97 func (b *Builder) WriteRune(r rune) (int, error) {
106 func (b *Builder) WriteString(s string) (int, error) {