github.com/goplus/igop@v0.25.0/pkg/hash/maphash/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 maphash 7 8 import ( 9 q "hash/maphash" 10 11 "reflect" 12 13 "github.com/goplus/igop" 14 ) 15 16 func init() { 17 igop.RegisterPackage(&igop.Package{ 18 Name: "maphash", 19 Path: "hash/maphash", 20 Deps: map[string]string{ 21 "unsafe": "unsafe", 22 }, 23 Interfaces: map[string]reflect.Type{}, 24 NamedTypes: map[string]reflect.Type{ 25 "Hash": reflect.TypeOf((*q.Hash)(nil)).Elem(), 26 "Seed": reflect.TypeOf((*q.Seed)(nil)).Elem(), 27 }, 28 AliasTypes: map[string]reflect.Type{}, 29 Vars: map[string]reflect.Value{}, 30 Funcs: map[string]reflect.Value{ 31 "Bytes": reflect.ValueOf(q.Bytes), 32 "MakeSeed": reflect.ValueOf(q.MakeSeed), 33 "String": reflect.ValueOf(q.String), 34 }, 35 TypedConsts: map[string]igop.TypedConst{}, 36 UntypedConsts: map[string]igop.UntypedConst{}, 37 }) 38 }