String returns the content buffer.
()
| 24 | |
| 25 | // String returns the content buffer. |
| 26 | func (buffer *ByteBuffer) String() string { |
| 27 | // Copied from strings.(*Builder).String |
| 28 | return *(*string)(unsafe.Pointer(&buffer.blob)) // nolint: gosec |
| 29 | } |
| 30 | |
| 31 | // Concat appends given arguments to blob content |
| 32 | func (buffer *ByteBuffer) Concat(args ...string) { |
no outgoing calls