Refine buffer

This commit is contained in:
世界 2022-04-28 07:08:50 +08:00
parent 31d4b88581
commit f16dd7a336
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
30 changed files with 993 additions and 209 deletions

View file

@ -31,6 +31,12 @@ func StackNew() *Buffer {
}
}
func StackNewMax() *Buffer {
return &Buffer{
data: make([]byte, 65535),
}
}
func StackNewSize(size int) *Buffer {
return &Buffer{
data: Make(size),
@ -291,6 +297,14 @@ func (b *Buffer) Release() {
*b = Buffer{}
}
func (b *Buffer) Cut(start int, end int) *Buffer {
b.start += start
b.end = len(b.data) - end
return &Buffer{
data: b.data[b.start:b.end],
}
}
func (b Buffer) Len() int {
return b.end - b.start
}