S is a short version of WriteString.
(s string)
| 3036 | |
| 3037 | // S is a short version of WriteString. |
| 3038 | func (b *Builder) S(s string) *Builder { |
| 3039 | return b.WriteString(s) |
| 3040 | } |
| 3041 | |
| 3042 | // Len returns the number of accumulated bytes. |
| 3043 | func (b *Builder) Len() int { |