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