seekbuf: add Bytes method.

This commit is contained in:
Kyle Isom 2023-08-27 20:56:47 -07:00
parent e3162b6164
commit 622f6a2638
1 changed files with 5 additions and 0 deletions

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:]
}