github.com/goplus/igop@v0.25.0/pkg/unicode/utf16/go120_export.go (about) 1 // export by github.com/goplus/igop/cmd/qexp 2 3 //go:build go1.20 && !go1.21 4 // +build go1.20,!go1.21 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 "AppendRune": reflect.ValueOf(q.AppendRune), 27 "Decode": reflect.ValueOf(q.Decode), 28 "DecodeRune": reflect.ValueOf(q.DecodeRune), 29 "Encode": reflect.ValueOf(q.Encode), 30 "EncodeRune": reflect.ValueOf(q.EncodeRune), 31 "IsSurrogate": reflect.ValueOf(q.IsSurrogate), 32 }, 33 TypedConsts: map[string]igop.TypedConst{}, 34 UntypedConsts: map[string]igop.UntypedConst{}, 35 }) 36 }