mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
28 lines
392 B
Go
28 lines
392 B
Go
package buf
|
|
|
|
import (
|
|
"github.com/sagernet/sing/common"
|
|
"github.com/sagernet/sing/common/buf"
|
|
)
|
|
|
|
const BufferSize = buf.BufferSize
|
|
|
|
type Buffer = buf.Buffer
|
|
|
|
var New = buf.New
|
|
var NewSize = buf.NewSize
|
|
var With = buf.With
|
|
var As = buf.As
|
|
|
|
var KeepAlive = common.KeepAlive
|
|
|
|
//go:norace
|
|
func Dup[T any](obj T) T {
|
|
return common.Dup(obj)
|
|
}
|
|
|
|
var (
|
|
Must = common.Must
|
|
Error = common.Error
|
|
)
|