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