github.com/goplus/gossa@v0.3.25/pkg/hash/maphash/go114_export.go (about)

     1  // export by github.com/goplus/gossa/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/gossa"
    13  )
    14  
    15  func init() {
    16  	gossa.RegisterPackage(&gossa.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]gossa.NamedType{
    24  			"Hash": {reflect.TypeOf((*q.Hash)(nil)).Elem(), "", "BlockSize,Reset,Seed,SetSeed,Size,Sum,Sum64,Write,WriteByte,WriteString,flush,initSeed,setSeed"},
    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]gossa.TypedConst{},
    33  		UntypedConsts: map[string]gossa.UntypedConst{},
    34  	})
    35  }