String returns the accumulated string. No other methods should be called after String.
()
| 108 | // String returns the accumulated string. No other methods should be called |
| 109 | // after String. |
| 110 | func (b *Builder) String() string { |
| 111 | return gohacks.StringFromImmutableBytes(b.buf[b.start:]) |
| 112 | } |