Attach the given bytes memory buffer
(buffer []byte)
| 77 | |
| 78 | // Attach the given bytes memory buffer |
| 79 | func (b *Buffer) Attach(buffer []byte) { |
| 80 | b.AttachBytes(buffer, 0, len(buffer)) |
| 81 | } |
| 82 | |
| 83 | // Attach the given bytes memory buffer with offset and size |
| 84 | func (b *Buffer) AttachBytes(buffer []byte, offset int, size int) { |
no test coverage detected