forked from pkujhd/goloader
-
Notifications
You must be signed in to change notification settings - Fork 4
/
convert.1.18.go
50 lines (44 loc) · 1.4 KB
/
convert.1.18.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//go:build go1.18 && !go1.19
// +build go1.18,!go1.19
package goloader
import "github.com/eh-steve/goloader/reflectlite/reflectlite1.18"
const (
Invalid = reflectlite.Invalid
Bool = reflectlite.Bool
Int = reflectlite.Int
Int8 = reflectlite.Int8
Int16 = reflectlite.Int16
Int32 = reflectlite.Int32
Int64 = reflectlite.Int64
Uint = reflectlite.Uint
Uint8 = reflectlite.Uint8
Uint16 = reflectlite.Uint16
Uint32 = reflectlite.Uint32
Uint64 = reflectlite.Uint64
Uintptr = reflectlite.Uintptr
Float32 = reflectlite.Float32
Float64 = reflectlite.Float64
Complex64 = reflectlite.Complex64
Complex128 = reflectlite.Complex128
Array = reflectlite.Array
Chan = reflectlite.Chan
Func = reflectlite.Func
Interface = reflectlite.Interface
Map = reflectlite.Map
Pointer = reflectlite.Pointer
Slice = reflectlite.Slice
String = reflectlite.String
Struct = reflectlite.Struct
UnsafePointer = reflectlite.UnsafePointer
Ptr = reflectlite.Ptr
)
var Indirect = reflectlite.Indirect
var ValueOf = reflectlite.ValueOf
var TypeOf = reflectlite.TypeOf
var New = reflectlite.New
var NewAt = reflectlite.NewAt
var MakeMapWithSize = reflectlite.MakeMapWithSize
type Value struct {
reflectlite.Value
}
type Type reflectlite.Type