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