11package fp
22
3- // DropInt returns a new list after dropping the given item
3+ // DropIntPtr returns a new list after dropping the given item
44func DropIntPtr (num * int , list []* int ) []* int {
55 var newList []* int
66 for _ , v := range list {
@@ -11,7 +11,7 @@ func DropIntPtr(num *int, list []*int) []*int {
1111 return newList
1212}
1313
14- // DropInts returns a new list after dropping the given items
14+ // DropIntsPtr returns a new list after dropping the given items
1515func DropIntsPtr (nums []* int , list []* int ) []* int {
1616 var newList []* int
1717 for _ , v := range list {
@@ -22,7 +22,7 @@ func DropIntsPtr(nums []*int, list []*int) []*int {
2222 return newList
2323}
2424
25- // DropInt64 returns a new list after dropping the given item
25+ // DropInt64Ptr returns a new list after dropping the given item
2626func DropInt64Ptr (num * int64 , list []* int64 ) []* int64 {
2727 var newList []* int64
2828 for _ , v := range list {
@@ -33,7 +33,7 @@ func DropInt64Ptr(num *int64, list []*int64) []*int64 {
3333 return newList
3434}
3535
36- // DropInts returns a new list after dropping the given items
36+ // DropInts64Ptr returns a new list after dropping the given items
3737func DropInts64Ptr (nums []* int64 , list []* int64 ) []* int64 {
3838 var newList []* int64
3939 for _ , v := range list {
@@ -44,7 +44,7 @@ func DropInts64Ptr(nums []*int64, list []*int64) []*int64 {
4444 return newList
4545}
4646
47- // DropInt32 returns a new list after dropping the given item
47+ // DropInt32Ptr returns a new list after dropping the given item
4848func DropInt32Ptr (num * int32 , list []* int32 ) []* int32 {
4949 var newList []* int32
5050 for _ , v := range list {
@@ -55,7 +55,7 @@ func DropInt32Ptr(num *int32, list []*int32) []*int32 {
5555 return newList
5656}
5757
58- // DropInts returns a new list after dropping the given items
58+ // DropInts32Ptr returns a new list after dropping the given items
5959func DropInts32Ptr (nums []* int32 , list []* int32 ) []* int32 {
6060 var newList []* int32
6161 for _ , v := range list {
@@ -66,7 +66,7 @@ func DropInts32Ptr(nums []*int32, list []*int32) []*int32 {
6666 return newList
6767}
6868
69- // DropInt16 returns a new list after dropping the given item
69+ // DropInt16Ptr returns a new list after dropping the given item
7070func DropInt16Ptr (num * int16 , list []* int16 ) []* int16 {
7171 var newList []* int16
7272 for _ , v := range list {
@@ -77,7 +77,7 @@ func DropInt16Ptr(num *int16, list []*int16) []*int16 {
7777 return newList
7878}
7979
80- // DropInts returns a new list after dropping the given items
80+ // DropInts16Ptr returns a new list after dropping the given items
8181func DropInts16Ptr (nums []* int16 , list []* int16 ) []* int16 {
8282 var newList []* int16
8383 for _ , v := range list {
@@ -88,7 +88,7 @@ func DropInts16Ptr(nums []*int16, list []*int16) []*int16 {
8888 return newList
8989}
9090
91- // DropInt8 returns a new list after dropping the given item
91+ // DropInt8Ptr returns a new list after dropping the given item
9292func DropInt8Ptr (num * int8 , list []* int8 ) []* int8 {
9393 var newList []* int8
9494 for _ , v := range list {
@@ -99,7 +99,7 @@ func DropInt8Ptr(num *int8, list []*int8) []*int8 {
9999 return newList
100100}
101101
102- // DropInts returns a new list after dropping the given items
102+ // DropInts8Ptr returns a new list after dropping the given items
103103func DropInts8Ptr (nums []* int8 , list []* int8 ) []* int8 {
104104 var newList []* int8
105105 for _ , v := range list {
@@ -110,7 +110,7 @@ func DropInts8Ptr(nums []*int8, list []*int8) []*int8 {
110110 return newList
111111}
112112
113- // DropUint returns a new list after dropping the given item
113+ // DropUintPtr returns a new list after dropping the given item
114114func DropUintPtr (num * uint , list []* uint ) []* uint {
115115 var newList []* uint
116116 for _ , v := range list {
@@ -121,7 +121,7 @@ func DropUintPtr(num *uint, list []*uint) []*uint {
121121 return newList
122122}
123123
124- // DropInts returns a new list after dropping the given items
124+ // DropUintsPtr returns a new list after dropping the given items
125125func DropUintsPtr (nums []* uint , list []* uint ) []* uint {
126126 var newList []* uint
127127 for _ , v := range list {
@@ -132,7 +132,7 @@ func DropUintsPtr(nums []*uint, list []*uint) []*uint {
132132 return newList
133133}
134134
135- // DropUint64 returns a new list after dropping the given item
135+ // DropUint64Ptr returns a new list after dropping the given item
136136func DropUint64Ptr (num * uint64 , list []* uint64 ) []* uint64 {
137137 var newList []* uint64
138138 for _ , v := range list {
@@ -143,7 +143,7 @@ func DropUint64Ptr(num *uint64, list []*uint64) []*uint64 {
143143 return newList
144144}
145145
146- // DropInts returns a new list after dropping the given items
146+ // DropUint64sPtr returns a new list after dropping the given items
147147func DropUint64sPtr (nums []* uint64 , list []* uint64 ) []* uint64 {
148148 var newList []* uint64
149149 for _ , v := range list {
@@ -154,7 +154,7 @@ func DropUint64sPtr(nums []*uint64, list []*uint64) []*uint64 {
154154 return newList
155155}
156156
157- // DropUint32 returns a new list after dropping the given item
157+ // DropUint32Ptr returns a new list after dropping the given item
158158func DropUint32Ptr (num * uint32 , list []* uint32 ) []* uint32 {
159159 var newList []* uint32
160160 for _ , v := range list {
@@ -165,7 +165,7 @@ func DropUint32Ptr(num *uint32, list []*uint32) []*uint32 {
165165 return newList
166166}
167167
168- // DropInts returns a new list after dropping the given items
168+ // DropUints32Ptr returns a new list after dropping the given items
169169func DropUints32Ptr (nums []* uint32 , list []* uint32 ) []* uint32 {
170170 var newList []* uint32
171171 for _ , v := range list {
@@ -176,7 +176,7 @@ func DropUints32Ptr(nums []*uint32, list []*uint32) []*uint32 {
176176 return newList
177177}
178178
179- // DropUint16 returns a new list after dropping the given item
179+ // DropUint16Ptr returns a new list after dropping the given item
180180func DropUint16Ptr (num * uint16 , list []* uint16 ) []* uint16 {
181181 var newList []* uint16
182182 for _ , v := range list {
@@ -187,7 +187,7 @@ func DropUint16Ptr(num *uint16, list []*uint16) []*uint16 {
187187 return newList
188188}
189189
190- // DropInts returns a new list after dropping the given items
190+ // DropUints16Ptr returns a new list after dropping the given items
191191func DropUints16Ptr (nums []* uint16 , list []* uint16 ) []* uint16 {
192192 var newList []* uint16
193193 for _ , v := range list {
@@ -198,7 +198,7 @@ func DropUints16Ptr(nums []*uint16, list []*uint16) []*uint16 {
198198 return newList
199199}
200200
201- // DropUint8 returns a new list after dropping the given item
201+ // DropUint8Ptr returns a new list after dropping the given item
202202func DropUint8Ptr (num * uint8 , list []* uint8 ) []* uint8 {
203203 var newList []* uint8
204204 for _ , v := range list {
@@ -209,7 +209,7 @@ func DropUint8Ptr(num *uint8, list []*uint8) []*uint8 {
209209 return newList
210210}
211211
212- // DropInts returns a new list after dropping the given items
212+ // DropUints8Ptr returns a new list after dropping the given items
213213func DropUints8Ptr (nums []* uint8 , list []* uint8 ) []* uint8 {
214214 var newList []* uint8
215215 for _ , v := range list {
@@ -220,7 +220,7 @@ func DropUints8Ptr(nums []*uint8, list []*uint8) []*uint8 {
220220 return newList
221221}
222222
223- // DropStr returns a new list after dropping the given item
223+ // DropStrPtr returns a new list after dropping the given item
224224func DropStrPtr (num * string , list []* string ) []* string {
225225 var newList []* string
226226 for _ , v := range list {
@@ -231,7 +231,7 @@ func DropStrPtr(num *string, list []*string) []*string {
231231 return newList
232232}
233233
234- // DropInts returns a new list after dropping the given items
234+ // DropStrsPtr returns a new list after dropping the given items
235235func DropStrsPtr (nums []* string , list []* string ) []* string {
236236 var newList []* string
237237 for _ , v := range list {
@@ -242,7 +242,7 @@ func DropStrsPtr(nums []*string, list []*string) []*string {
242242 return newList
243243}
244244
245- // DropBool returns a new list after dropping the given item
245+ // DropBoolPtr returns a new list after dropping the given item
246246func DropBoolPtr (num * bool , list []* bool ) []* bool {
247247 var newList []* bool
248248 for _ , v := range list {
@@ -253,7 +253,7 @@ func DropBoolPtr(num *bool, list []*bool) []*bool {
253253 return newList
254254}
255255
256- // DropInts returns a new list after dropping the given items
256+ // DropBoolsPtr returns a new list after dropping the given items
257257func DropBoolsPtr (nums []* bool , list []* bool ) []* bool {
258258 var newList []* bool
259259 for _ , v := range list {
@@ -264,7 +264,7 @@ func DropBoolsPtr(nums []*bool, list []*bool) []*bool {
264264 return newList
265265}
266266
267- // DropFloat32 returns a new list after dropping the given item
267+ // DropFloat32Ptr returns a new list after dropping the given item
268268func DropFloat32Ptr (num * float32 , list []* float32 ) []* float32 {
269269 var newList []* float32
270270 for _ , v := range list {
@@ -275,7 +275,7 @@ func DropFloat32Ptr(num *float32, list []*float32) []*float32 {
275275 return newList
276276}
277277
278- // DropInts returns a new list after dropping the given items
278+ // DropFloat32sPtr returns a new list after dropping the given items
279279func DropFloat32sPtr (nums []* float32 , list []* float32 ) []* float32 {
280280 var newList []* float32
281281 for _ , v := range list {
@@ -286,7 +286,7 @@ func DropFloat32sPtr(nums []*float32, list []*float32) []*float32 {
286286 return newList
287287}
288288
289- // DropFloat64 returns a new list after dropping the given item
289+ // DropFloat64Ptr returns a new list after dropping the given item
290290func DropFloat64Ptr (num * float64 , list []* float64 ) []* float64 {
291291 var newList []* float64
292292 for _ , v := range list {
@@ -297,7 +297,7 @@ func DropFloat64Ptr(num *float64, list []*float64) []*float64 {
297297 return newList
298298}
299299
300- // DropInts returns a new list after dropping the given items
300+ // DropFloat64sPtr returns a new list after dropping the given items
301301func DropFloat64sPtr (nums []* float64 , list []* float64 ) []* float64 {
302302 var newList []* float64
303303 for _ , v := range list {
0 commit comments