-
Notifications
You must be signed in to change notification settings - Fork 0
/
users_include_gen.go
205 lines (172 loc) · 5.02 KB
/
users_include_gen.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
// Code generated by "go-gen-lo"; DO NOT EDIT.
// Based on information from https://github.com/snamiki1212/go-gen-lo
package main
import "github.com/samber/lo"
/************************************************
** lo basic methods
************************************************/
// Filter
func (xs UserInclude) Filter(predicate func(User, int) bool) UserInclude {
return lo.Filter(xs, predicate)
}
/************************************************
** lo extended methods
************************************************/
// -- Filter ------------------------------------
// FilterByUserID
func (xs UserInclude) FilterByUserID(_UserID string) UserInclude {
return lo.Filter(xs, func(entity User, index int) bool {
return entity.UserID == _UserID
})
}
// FilterByInt
func (xs UserInclude) FilterByInt(_Int int) UserInclude {
return lo.Filter(xs, func(entity User, index int) bool {
return entity.Int == _Int
})
}
// FilterByIntPtr
func (xs UserInclude) FilterByIntPtr(_IntPtr *int) UserInclude {
return lo.Filter(xs, func(entity User, index int) bool {
return entity.IntPtr == _IntPtr
})
}
// FilterByBool
func (xs UserInclude) FilterByBool(_Bool bool) UserInclude {
return lo.Filter(xs, func(entity User, index int) bool {
return entity.Bool == _Bool
})
}
// FilterByBoolPtr
func (xs UserInclude) FilterByBoolPtr(_BoolPtr *bool) UserInclude {
return lo.Filter(xs, func(entity User, index int) bool {
return entity.BoolPtr == _BoolPtr
})
}
// FilterByStr
func (xs UserInclude) FilterByStr(_Str string) UserInclude {
return lo.Filter(xs, func(entity User, index int) bool {
return entity.Str == _Str
})
}
// FilterByStrPtr
func (xs UserInclude) FilterByStrPtr(_StrPtr *string) UserInclude {
return lo.Filter(xs, func(entity User, index int) bool {
return entity.StrPtr == _StrPtr
})
}
// FilterByStruct0
func (xs UserInclude) FilterByStruct0(_Struct0 DefinedStruct0) UserInclude {
return lo.Filter(xs, func(entity User, index int) bool {
return entity.Struct0 == _Struct0
})
}
// FilterByStructPtr0
func (xs UserInclude) FilterByStructPtr0(_StructPtr0 *DefinedStruct0) UserInclude {
return lo.Filter(xs, func(entity User, index int) bool {
return entity.StructPtr0 == _StructPtr0
})
}
// FilterByStruct1
func (xs UserInclude) FilterByStruct1(_Struct1 DefinedStruct1) UserInclude {
return lo.Filter(xs, func(entity User, index int) bool {
return entity.Struct1 == _Struct1
})
}
// FilterByStructPtr1
func (xs UserInclude) FilterByStructPtr1(_StructPtr1 *DefinedStruct1) UserInclude {
return lo.Filter(xs, func(entity User, index int) bool {
return entity.StructPtr1 == _StructPtr1
})
}
// FilterByChanSend0
func (xs UserInclude) FilterByChanSend0(_ChanSend0 chan<- int) UserInclude {
return lo.Filter(xs, func(entity User, index int) bool {
return entity.ChanSend0 == _ChanSend0
})
}
// FilterByChanSendPtr0
func (xs UserInclude) FilterByChanSendPtr0(_ChanSendPtr0 *chan<- int) UserInclude {
return lo.Filter(xs, func(entity User, index int) bool {
return entity.ChanSendPtr0 == _ChanSendPtr0
})
}
// -- KeyBy ------------------------------------
// KeyByUserID
func (xs UserInclude) KeyByUserID() map[string]User {
return lo.KeyBy(xs, func(entity User) string {
return entity.UserID
})
}
// KeyByInt
func (xs UserInclude) KeyByInt() map[int]User {
return lo.KeyBy(xs, func(entity User) int {
return entity.Int
})
}
// KeyByIntPtr
func (xs UserInclude) KeyByIntPtr() map[*int]User {
return lo.KeyBy(xs, func(entity User) *int {
return entity.IntPtr
})
}
// KeyByBool
func (xs UserInclude) KeyByBool() map[bool]User {
return lo.KeyBy(xs, func(entity User) bool {
return entity.Bool
})
}
// KeyByBoolPtr
func (xs UserInclude) KeyByBoolPtr() map[*bool]User {
return lo.KeyBy(xs, func(entity User) *bool {
return entity.BoolPtr
})
}
// KeyByStr
func (xs UserInclude) KeyByStr() map[string]User {
return lo.KeyBy(xs, func(entity User) string {
return entity.Str
})
}
// KeyByStrPtr
func (xs UserInclude) KeyByStrPtr() map[*string]User {
return lo.KeyBy(xs, func(entity User) *string {
return entity.StrPtr
})
}
// KeyByStruct0
func (xs UserInclude) KeyByStruct0() map[DefinedStruct0]User {
return lo.KeyBy(xs, func(entity User) DefinedStruct0 {
return entity.Struct0
})
}
// KeyByStructPtr0
func (xs UserInclude) KeyByStructPtr0() map[*DefinedStruct0]User {
return lo.KeyBy(xs, func(entity User) *DefinedStruct0 {
return entity.StructPtr0
})
}
// KeyByStruct1
func (xs UserInclude) KeyByStruct1() map[DefinedStruct1]User {
return lo.KeyBy(xs, func(entity User) DefinedStruct1 {
return entity.Struct1
})
}
// KeyByStructPtr1
func (xs UserInclude) KeyByStructPtr1() map[*DefinedStruct1]User {
return lo.KeyBy(xs, func(entity User) *DefinedStruct1 {
return entity.StructPtr1
})
}
// KeyByChanSend0
func (xs UserInclude) KeyByChanSend0() map[chan<- int]User {
return lo.KeyBy(xs, func(entity User) chan<- int {
return entity.ChanSend0
})
}
// KeyByChanSendPtr0
func (xs UserInclude) KeyByChanSendPtr0() map[*chan<- int]User {
return lo.KeyBy(xs, func(entity User) *chan<- int {
return entity.ChanSendPtr0
})
}