seekbuf: add Bytes method.
This commit is contained in:
parent
e3162b6164
commit
622f6a2638
|
@ -55,3 +55,8 @@ func (b *Buffer) Close() error {
|
||||||
func (b *Buffer) Len() int {
|
func (b *Buffer) Len() int {
|
||||||
return len(b.data[b.pos:])
|
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:]
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue