Fix vectorised writer

This commit is contained in:
世界 2022-08-21 22:35:31 +08:00
parent 5945fd0457
commit cee85dcd30
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
7 changed files with 37 additions and 71 deletions

View file

@ -327,6 +327,12 @@ func ReleaseMulti(buffers []*Buffer) {
}
}
func ToSliceMulti(buffers []*Buffer) [][]byte {
return common.Map(buffers, func(it *Buffer) []byte {
return it.Bytes()
})
}
func (b *Buffer) Cut(start int, end int) *Buffer {
b.start += start
b.end = len(b.data) - end