Compare commits

...

1 Commits

Author SHA1 Message Date
622f6a2638 seekbuf: add Bytes method. 2023-08-27 20:56:47 -07:00

View File

@@ -55,3 +55,8 @@ func (b *Buffer) Close() error {
func (b *Buffer) Len() int {
return len(b.data[b.pos:])
}
// Bytes returns the underlying bytes from the current position.
func (b *Buffer) Bytes() []byte {
return b.data[b.pos:]
}