This repository has been archived on 2024-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Clash.Meta/common/pool/pool.go

10 lines
145 B
Go

package pool
func Get(size int) []byte {
return defaultAllocator.Get(size)
}
func Put(buf []byte) error {
return defaultAllocator.Put(buf)
}