2019-04-23 23:29:36 +08:00
|
|
|
package pool
|
|
|
|
|
2020-04-25 00:30:40 +08:00
|
|
|
func Get(size int) []byte {
|
2022-10-06 19:23:38 +08:00
|
|
|
return defaultAllocator.Get(size)
|
2020-04-25 00:30:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func Put(buf []byte) error {
|
2022-10-06 19:23:38 +08:00
|
|
|
return defaultAllocator.Put(buf)
|
2020-04-25 00:30:40 +08:00
|
|
|
}
|