-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathint.go
More file actions
965 lines (864 loc) · 18.4 KB
/
int.go
File metadata and controls
965 lines (864 loc) · 18.4 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
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
// This file was automatically generated by genny.
// Any changes will be lost if this file is regenerated.
// see https://github.com/cheekybits/genny
package xslice
// ContainInt8 check if target is in ss
func ContainInt8(s []int8, target int8) bool {
for _, val := range s {
if val == target {
return true
}
}
return false
}
// RemoveInt8 remove empty target elements from ss
func RemoveInt8(s []int8, target int8) []int8 {
var offset int
for index, val := range s {
if val == target {
s[offset], s[index] = s[index], s[offset]
offset++
}
}
return s[offset:]
}
// ReverseInt8 reverse the input slice
func ReverseInt8(s []int8) []int8 {
if len(s) < 2 {
return s
}
start := 0
end := len(s) - 1
for start < end {
tmp := s[start]
s[start] = s[end]
s[end] = tmp
start++
end--
}
return s
}
// DiffInt8 computes the difference of two slices
// return a slice containing all the entries from s1 but not in s2
func DiffInt8(s1 []int8, s2 []int8) []int8 {
ret := make([]int8, 0)
for _, val := range s1 {
if !ContainInt8(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// IntersectInt8 computes the intersection of two slices
// return a slice containing the entries exist in s1 and s2
func IntersectInt8(s1 []int8, s2 []int8) []int8 {
ret := make([]int8, 0)
for _, val := range s1 {
if ContainInt8(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// UniqueInt8 Removes duplicate values from slice
func UniqueInt8(s1 []int8) []int8 {
unique := make(map[int8]interface{})
for _, val := range s1 {
unique[val] = nil
}
ret := make([]int8, 0, len(unique))
for key := range unique {
ret = append(ret, key)
}
return ret
}
// MergeInt8 merge one or more arrays
func MergeInt8(s1 []int8, s2 ...[]int8) []int8 {
if len(s2) == 0 {
return s1
}
size := len(s1)
for _, s := range s2 {
size += len(s)
}
ret := make([]int8, 0, size)
ret = append(ret, s1...)
for _, s := range s2 {
ret = append(ret, s...)
}
return ret
}
// ContainUint8 check if target is in ss
func ContainUint8(s []uint8, target uint8) bool {
for _, val := range s {
if val == target {
return true
}
}
return false
}
// RemoveUint8 remove empty target elements from ss
func RemoveUint8(s []uint8, target uint8) []uint8 {
var offset int
for index, val := range s {
if val == target {
s[offset], s[index] = s[index], s[offset]
offset++
}
}
return s[offset:]
}
// ReverseUint8 reverse the input slice
func ReverseUint8(s []uint8) []uint8 {
if len(s) < 2 {
return s
}
start := 0
end := len(s) - 1
for start < end {
tmp := s[start]
s[start] = s[end]
s[end] = tmp
start++
end--
}
return s
}
// DiffUint8 computes the difference of two slices
// return a slice containing all the entries from s1 but not in s2
func DiffUint8(s1 []uint8, s2 []uint8) []uint8 {
ret := make([]uint8, 0)
for _, val := range s1 {
if !ContainUint8(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// IntersectUint8 computes the intersection of two slices
// return a slice containing the entries exist in s1 and s2
func IntersectUint8(s1 []uint8, s2 []uint8) []uint8 {
ret := make([]uint8, 0)
for _, val := range s1 {
if ContainUint8(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// UniqueUint8 Removes duplicate values from slice
func UniqueUint8(s1 []uint8) []uint8 {
unique := make(map[uint8]interface{})
for _, val := range s1 {
unique[val] = nil
}
ret := make([]uint8, 0, len(unique))
for key := range unique {
ret = append(ret, key)
}
return ret
}
// MergeUint8 merge one or more arrays
func MergeUint8(s1 []uint8, s2 ...[]uint8) []uint8 {
if len(s2) == 0 {
return s1
}
size := len(s1)
for _, s := range s2 {
size += len(s)
}
ret := make([]uint8, 0, size)
ret = append(ret, s1...)
for _, s := range s2 {
ret = append(ret, s...)
}
return ret
}
// ContainInt16 check if target is in ss
func ContainInt16(s []int16, target int16) bool {
for _, val := range s {
if val == target {
return true
}
}
return false
}
// RemoveInt16 remove empty target elements from ss
func RemoveInt16(s []int16, target int16) []int16 {
var offset int
for index, val := range s {
if val == target {
s[offset], s[index] = s[index], s[offset]
offset++
}
}
return s[offset:]
}
// ReverseInt16 reverse the input slice
func ReverseInt16(s []int16) []int16 {
if len(s) < 2 {
return s
}
start := 0
end := len(s) - 1
for start < end {
tmp := s[start]
s[start] = s[end]
s[end] = tmp
start++
end--
}
return s
}
// DiffInt16 computes the difference of two slices
// return a slice containing all the entries from s1 but not in s2
func DiffInt16(s1 []int16, s2 []int16) []int16 {
ret := make([]int16, 0)
for _, val := range s1 {
if !ContainInt16(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// IntersectInt16 computes the intersection of two slices
// return a slice containing the entries exist in s1 and s2
func IntersectInt16(s1 []int16, s2 []int16) []int16 {
ret := make([]int16, 0)
for _, val := range s1 {
if ContainInt16(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// UniqueInt16 Removes duplicate values from slice
func UniqueInt16(s1 []int16) []int16 {
unique := make(map[int16]interface{})
for _, val := range s1 {
unique[val] = nil
}
ret := make([]int16, 0, len(unique))
for key := range unique {
ret = append(ret, key)
}
return ret
}
// MergeInt16 merge one or more arrays
func MergeInt16(s1 []int16, s2 ...[]int16) []int16 {
if len(s2) == 0 {
return s1
}
size := len(s1)
for _, s := range s2 {
size += len(s)
}
ret := make([]int16, 0, size)
ret = append(ret, s1...)
for _, s := range s2 {
ret = append(ret, s...)
}
return ret
}
// ContainUint16 check if target is in ss
func ContainUint16(s []uint16, target uint16) bool {
for _, val := range s {
if val == target {
return true
}
}
return false
}
// RemoveUint16 remove empty target elements from ss
func RemoveUint16(s []uint16, target uint16) []uint16 {
var offset int
for index, val := range s {
if val == target {
s[offset], s[index] = s[index], s[offset]
offset++
}
}
return s[offset:]
}
// ReverseUint16 reverse the input slice
func ReverseUint16(s []uint16) []uint16 {
if len(s) < 2 {
return s
}
start := 0
end := len(s) - 1
for start < end {
tmp := s[start]
s[start] = s[end]
s[end] = tmp
start++
end--
}
return s
}
// DiffUint16 computes the difference of two slices
// return a slice containing all the entries from s1 but not in s2
func DiffUint16(s1 []uint16, s2 []uint16) []uint16 {
ret := make([]uint16, 0)
for _, val := range s1 {
if !ContainUint16(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// IntersectUint16 computes the intersection of two slices
// return a slice containing the entries exist in s1 and s2
func IntersectUint16(s1 []uint16, s2 []uint16) []uint16 {
ret := make([]uint16, 0)
for _, val := range s1 {
if ContainUint16(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// UniqueUint16 Removes duplicate values from slice
func UniqueUint16(s1 []uint16) []uint16 {
unique := make(map[uint16]interface{})
for _, val := range s1 {
unique[val] = nil
}
ret := make([]uint16, 0, len(unique))
for key := range unique {
ret = append(ret, key)
}
return ret
}
// MergeUint16 merge one or more arrays
func MergeUint16(s1 []uint16, s2 ...[]uint16) []uint16 {
if len(s2) == 0 {
return s1
}
size := len(s1)
for _, s := range s2 {
size += len(s)
}
ret := make([]uint16, 0, size)
ret = append(ret, s1...)
for _, s := range s2 {
ret = append(ret, s...)
}
return ret
}
// ContainInt check if target is in ss
func ContainInt(s []int, target int) bool {
for _, val := range s {
if val == target {
return true
}
}
return false
}
// RemoveInt remove empty target elements from ss
func RemoveInt(s []int, target int) []int {
var offset int
for index, val := range s {
if val == target {
s[offset], s[index] = s[index], s[offset]
offset++
}
}
return s[offset:]
}
// ReverseInt reverse the input slice
func ReverseInt(s []int) []int {
if len(s) < 2 {
return s
}
start := 0
end := len(s) - 1
for start < end {
tmp := s[start]
s[start] = s[end]
s[end] = tmp
start++
end--
}
return s
}
// DiffInt computes the difference of two slices
// return a slice containing all the entries from s1 but not in s2
func DiffInt(s1 []int, s2 []int) []int {
ret := make([]int, 0)
for _, val := range s1 {
if !ContainInt(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// IntersectInt computes the intersection of two slices
// return a slice containing the entries exist in s1 and s2
func IntersectInt(s1 []int, s2 []int) []int {
ret := make([]int, 0)
for _, val := range s1 {
if ContainInt(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// UniqueInt Removes duplicate values from slice
func UniqueInt(s1 []int) []int {
unique := make(map[int]interface{})
for _, val := range s1 {
unique[val] = nil
}
ret := make([]int, 0, len(unique))
for key := range unique {
ret = append(ret, key)
}
return ret
}
// MergeInt merge one or more arrays
func MergeInt(s1 []int, s2 ...[]int) []int {
if len(s2) == 0 {
return s1
}
size := len(s1)
for _, s := range s2 {
size += len(s)
}
ret := make([]int, 0, size)
ret = append(ret, s1...)
for _, s := range s2 {
ret = append(ret, s...)
}
return ret
}
// ContainUint check if target is in ss
func ContainUint(s []uint, target uint) bool {
for _, val := range s {
if val == target {
return true
}
}
return false
}
// RemoveUint remove empty target elements from ss
func RemoveUint(s []uint, target uint) []uint {
var offset int
for index, val := range s {
if val == target {
s[offset], s[index] = s[index], s[offset]
offset++
}
}
return s[offset:]
}
// ReverseUint reverse the input slice
func ReverseUint(s []uint) []uint {
if len(s) < 2 {
return s
}
start := 0
end := len(s) - 1
for start < end {
tmp := s[start]
s[start] = s[end]
s[end] = tmp
start++
end--
}
return s
}
// DiffUint computes the difference of two slices
// return a slice containing all the entries from s1 but not in s2
func DiffUint(s1 []uint, s2 []uint) []uint {
ret := make([]uint, 0)
for _, val := range s1 {
if !ContainUint(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// IntersectUint computes the intersection of two slices
// return a slice containing the entries exist in s1 and s2
func IntersectUint(s1 []uint, s2 []uint) []uint {
ret := make([]uint, 0)
for _, val := range s1 {
if ContainUint(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// UniqueUint Removes duplicate values from slice
func UniqueUint(s1 []uint) []uint {
unique := make(map[uint]interface{})
for _, val := range s1 {
unique[val] = nil
}
ret := make([]uint, 0, len(unique))
for key := range unique {
ret = append(ret, key)
}
return ret
}
// MergeUint merge one or more arrays
func MergeUint(s1 []uint, s2 ...[]uint) []uint {
if len(s2) == 0 {
return s1
}
size := len(s1)
for _, s := range s2 {
size += len(s)
}
ret := make([]uint, 0, size)
ret = append(ret, s1...)
for _, s := range s2 {
ret = append(ret, s...)
}
return ret
}
// ContainInt32 check if target is in ss
func ContainInt32(s []int32, target int32) bool {
for _, val := range s {
if val == target {
return true
}
}
return false
}
// RemoveInt32 remove empty target elements from ss
func RemoveInt32(s []int32, target int32) []int32 {
var offset int
for index, val := range s {
if val == target {
s[offset], s[index] = s[index], s[offset]
offset++
}
}
return s[offset:]
}
// ReverseInt32 reverse the input slice
func ReverseInt32(s []int32) []int32 {
if len(s) < 2 {
return s
}
start := 0
end := len(s) - 1
for start < end {
tmp := s[start]
s[start] = s[end]
s[end] = tmp
start++
end--
}
return s
}
// DiffInt32 computes the difference of two slices
// return a slice containing all the entries from s1 but not in s2
func DiffInt32(s1 []int32, s2 []int32) []int32 {
ret := make([]int32, 0)
for _, val := range s1 {
if !ContainInt32(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// IntersectInt32 computes the intersection of two slices
// return a slice containing the entries exist in s1 and s2
func IntersectInt32(s1 []int32, s2 []int32) []int32 {
ret := make([]int32, 0)
for _, val := range s1 {
if ContainInt32(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// UniqueInt32 Removes duplicate values from slice
func UniqueInt32(s1 []int32) []int32 {
unique := make(map[int32]interface{})
for _, val := range s1 {
unique[val] = nil
}
ret := make([]int32, 0, len(unique))
for key := range unique {
ret = append(ret, key)
}
return ret
}
// MergeInt32 merge one or more arrays
func MergeInt32(s1 []int32, s2 ...[]int32) []int32 {
if len(s2) == 0 {
return s1
}
size := len(s1)
for _, s := range s2 {
size += len(s)
}
ret := make([]int32, 0, size)
ret = append(ret, s1...)
for _, s := range s2 {
ret = append(ret, s...)
}
return ret
}
// ContainUint32 check if target is in ss
func ContainUint32(s []uint32, target uint32) bool {
for _, val := range s {
if val == target {
return true
}
}
return false
}
// RemoveUint32 remove empty target elements from ss
func RemoveUint32(s []uint32, target uint32) []uint32 {
var offset int
for index, val := range s {
if val == target {
s[offset], s[index] = s[index], s[offset]
offset++
}
}
return s[offset:]
}
// ReverseUint32 reverse the input slice
func ReverseUint32(s []uint32) []uint32 {
if len(s) < 2 {
return s
}
start := 0
end := len(s) - 1
for start < end {
tmp := s[start]
s[start] = s[end]
s[end] = tmp
start++
end--
}
return s
}
// DiffUint32 computes the difference of two slices
// return a slice containing all the entries from s1 but not in s2
func DiffUint32(s1 []uint32, s2 []uint32) []uint32 {
ret := make([]uint32, 0)
for _, val := range s1 {
if !ContainUint32(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// IntersectUint32 computes the intersection of two slices
// return a slice containing the entries exist in s1 and s2
func IntersectUint32(s1 []uint32, s2 []uint32) []uint32 {
ret := make([]uint32, 0)
for _, val := range s1 {
if ContainUint32(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// UniqueUint32 Removes duplicate values from slice
func UniqueUint32(s1 []uint32) []uint32 {
unique := make(map[uint32]interface{})
for _, val := range s1 {
unique[val] = nil
}
ret := make([]uint32, 0, len(unique))
for key := range unique {
ret = append(ret, key)
}
return ret
}
// MergeUint32 merge one or more arrays
func MergeUint32(s1 []uint32, s2 ...[]uint32) []uint32 {
if len(s2) == 0 {
return s1
}
size := len(s1)
for _, s := range s2 {
size += len(s)
}
ret := make([]uint32, 0, size)
ret = append(ret, s1...)
for _, s := range s2 {
ret = append(ret, s...)
}
return ret
}
// ContainInt64 check if target is in ss
func ContainInt64(s []int64, target int64) bool {
for _, val := range s {
if val == target {
return true
}
}
return false
}
// RemoveInt64 remove empty target elements from ss
func RemoveInt64(s []int64, target int64) []int64 {
var offset int
for index, val := range s {
if val == target {
s[offset], s[index] = s[index], s[offset]
offset++
}
}
return s[offset:]
}
// ReverseInt64 reverse the input slice
func ReverseInt64(s []int64) []int64 {
if len(s) < 2 {
return s
}
start := 0
end := len(s) - 1
for start < end {
tmp := s[start]
s[start] = s[end]
s[end] = tmp
start++
end--
}
return s
}
// DiffInt64 computes the difference of two slices
// return a slice containing all the entries from s1 but not in s2
func DiffInt64(s1 []int64, s2 []int64) []int64 {
ret := make([]int64, 0)
for _, val := range s1 {
if !ContainInt64(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// IntersectInt64 computes the intersection of two slices
// return a slice containing the entries exist in s1 and s2
func IntersectInt64(s1 []int64, s2 []int64) []int64 {
ret := make([]int64, 0)
for _, val := range s1 {
if ContainInt64(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// UniqueInt64 Removes duplicate values from slice
func UniqueInt64(s1 []int64) []int64 {
unique := make(map[int64]interface{})
for _, val := range s1 {
unique[val] = nil
}
ret := make([]int64, 0, len(unique))
for key := range unique {
ret = append(ret, key)
}
return ret
}
// MergeInt64 merge one or more arrays
func MergeInt64(s1 []int64, s2 ...[]int64) []int64 {
if len(s2) == 0 {
return s1
}
size := len(s1)
for _, s := range s2 {
size += len(s)
}
ret := make([]int64, 0, size)
ret = append(ret, s1...)
for _, s := range s2 {
ret = append(ret, s...)
}
return ret
}
// ContainUint64 check if target is in ss
func ContainUint64(s []uint64, target uint64) bool {
for _, val := range s {
if val == target {
return true
}
}
return false
}
// RemoveUint64 remove empty target elements from ss
func RemoveUint64(s []uint64, target uint64) []uint64 {
var offset int
for index, val := range s {
if val == target {
s[offset], s[index] = s[index], s[offset]
offset++
}
}
return s[offset:]
}
// ReverseUint64 reverse the input slice
func ReverseUint64(s []uint64) []uint64 {
if len(s) < 2 {
return s
}
start := 0
end := len(s) - 1
for start < end {
tmp := s[start]
s[start] = s[end]
s[end] = tmp
start++
end--
}
return s
}
// DiffUint64 computes the difference of two slices
// return a slice containing all the entries from s1 but not in s2
func DiffUint64(s1 []uint64, s2 []uint64) []uint64 {
ret := make([]uint64, 0)
for _, val := range s1 {
if !ContainUint64(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// IntersectUint64 computes the intersection of two slices
// return a slice containing the entries exist in s1 and s2
func IntersectUint64(s1 []uint64, s2 []uint64) []uint64 {
ret := make([]uint64, 0)
for _, val := range s1 {
if ContainUint64(s2, val) {
ret = append(ret, val)
}
}
return ret
}
// UniqueUint64 Removes duplicate values from slice
func UniqueUint64(s1 []uint64) []uint64 {
unique := make(map[uint64]interface{})
for _, val := range s1 {
unique[val] = nil
}
ret := make([]uint64, 0, len(unique))
for key := range unique {
ret = append(ret, key)
}
return ret
}
// MergeUint64 merge one or more arrays
func MergeUint64(s1 []uint64, s2 ...[]uint64) []uint64 {
if len(s2) == 0 {
return s1
}
size := len(s1)
for _, s := range s2 {
size += len(s)
}
ret := make([]uint64, 0, size)
ret = append(ret, s1...)
for _, s := range s2 {
ret = append(ret, s...)
}
return ret
}