github.com/goplus/igop@v0.25.0/pkg/container/ring/go121_export.go (about) 1 // export by github.com/goplus/igop/cmd/qexp 2 3 //go:build go1.21 4 // +build go1.21 5 6 package ring 7 8 import ( 9 q "container/ring" 10 11 "reflect" 12 13 "github.com/goplus/igop" 14 ) 15 16 func init() { 17 igop.RegisterPackage(&igop.Package{ 18 Name: "ring", 19 Path: "container/ring", 20 Deps: map[string]string{}, 21 Interfaces: map[string]reflect.Type{}, 22 NamedTypes: map[string]reflect.Type{ 23 "Ring": reflect.TypeOf((*q.Ring)(nil)).Elem(), 24 }, 25 AliasTypes: map[string]reflect.Type{}, 26 Vars: map[string]reflect.Value{}, 27 Funcs: map[string]reflect.Value{ 28 "New": reflect.ValueOf(q.New), 29 }, 30 TypedConsts: map[string]igop.TypedConst{}, 31 UntypedConsts: map[string]igop.UntypedConst{}, 32 }) 33 }