-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconst.go
More file actions
91 lines (73 loc) · 1.63 KB
/
const.go
File metadata and controls
91 lines (73 loc) · 1.63 KB
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
package pointer
// Bool returns a pointer to bool type data
func Bool(b bool) *bool {
return &b
}
// String returns a pointer to string type data
func String(s string) *string {
return &s
}
// Int returns a pointer to int type data
func Int(i int) *int {
return &i
}
// Int8 returns a pointer to int8 type data
func Int8(i int8) *int8 {
return &i
}
// Int16 returns a pointer to int16 type data
func Int16(i int16) *int16 {
return &i
}
// Int32 returns a pointer to int32 type data
func Int32(i int32) *int32 {
return &i
}
// Int64 returns a pointer to int64 type data
func Int64(i int64) *int64 {
return &i
}
// Uint returns a pointer to uint type data
func Uint(u uint) *uint {
return &u
}
// Uint8 returns a pointer to uint8 type data
func Uint8(u uint8) *uint8 {
return &u
}
// Uint16 returns a pointer to uint16 type data
func Uint16(u uint16) *uint16 {
return &u
}
// Uint32 returns a pointer to uint32 type data
func Uint32(u uint32) *uint32 {
return &u
}
// Uint64 returns a pointer to uint64 type data
func Uint64(u uint64) *uint64 {
return &u
}
// Byte returns a pointer to byte type data
func Byte(b byte) *byte {
return &b
}
// Rune returns a pointer to rune type data
func Rune(r rune) *rune {
return &r
}
// Float32 returns a pointer to float32 type data
func Float32(f float32) *float32 {
return &f
}
// Float64 returns a pointer to float64 type data
func Float64(f float64) *float64 {
return &f
}
// Complex64 returns a pointer to complex64 type data
func Complex64(c complex64) *complex64 {
return &c
}
// Complex128 returns a pointer to complex128 type data
func Complex128(c complex128) *complex128 {
return &c
}