forked from gotidy/ptr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathptr.go
111 lines (89 loc) · 1.87 KB
/
ptr.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package ptr
import (
"encoding/json"
"time"
)
// Int returns pointer to int value
func Int(v int) *int {
return &v
}
// Int8 returns pointer to int8 value
func Int8(v int8) *int8 {
return &v
}
// Int16 returns pointer to int16 value
func Int16(v int16) *int16 {
return &v
}
// Int32 returns pointer to int32 value
func Int32(v int32) *int32 {
return &v
}
// Int64 returns pointer to int64 value
func Int64(v int64) *int64 {
return &v
}
// UInt returns pointer to uint value
func UInt(v uint) *uint {
return &v
}
// UInt8 returns pointer to uint8 value
func UInt8(v uint8) *uint8 {
return &v
}
// UInt16 returns pointer to uint16 value
func UInt16(v uint16) *uint16 {
return &v
}
// UInt32 returns pointer to uint32 value
func UInt32(v uint32) *uint32 {
return &v
}
// UInt64 returns pointer to uint64 value
func UInt64(v uint64) *uint64 {
return &v
}
// Byte returns pointer to byte value
func Byte(v byte) *byte {
return &v
}
// Rune returns pointer to byte value
func Rune(v rune) *rune {
return &v
}
// Bool returns pointer to bool value
func Bool(v bool) *bool {
return &v
}
// String returns pointer to bool value
func String(v string) *string {
return &v
}
// Float32 returns pointer to bool value
func Float32(v float32) *float32 {
return &v
}
// Float64 returns pointer to bool value
func Float64(v float64) *float64 {
return &v
}
// Complex64 returns pointer to bool value
func Complex64(v complex64) *complex64 {
return &v
}
// Complex128 returns pointer to bool value
func Complex128(v complex128) *complex128 {
return &v
}
// Time returns pointer to time.Time value
func Time(v time.Time) *time.Time {
return &v
}
// Duration returns pointer to time.Duration value
func Duration(v time.Duration) *time.Duration {
return &v
}
// JSONRawMessage returns pointer to json.RawMessage value
func JSONRawMessage(v json.RawMessage) *json.RawMessage {
return &v
}