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