-
Notifications
You must be signed in to change notification settings - Fork 39
/
operation_chainable_implementation.go
4013 lines (3305 loc) · 110 KB
/
operation_chainable_implementation.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
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
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package gubrak
import (
"errors"
"fmt"
"math/rand"
"reflect"
"strconv"
"strings"
"time"
)
// Chunk function creates a slice of elements split into groups the length of `size`. If `data` can't be split evenly, the final chunk will be the remaining elements.
//
// Parameters
//
// This function requires single mandatory parameter:
// size int // ==> description: the length of each chunk
//
// Return values
//
// Chain with these methods to get result:
// .Result() interface{} // ==> description: returns the result after operation
// .ResultAndError() (interface{}, error) // ==> description: returns the result after operation, and error object
// .Error() error // ==> description: returns error object
// .IsError() bool // ==> description: return `true` on error, otherwise `false`
//
// Examples
//
// List of examples available:
func (g *Chainable) Chunk(size int) IChainable {
g.lastOperation = OperationChunk
if g.IsError() || g.shouldReturn() {
return g
}
err := (error)(nil)
result := func(err *error) interface{} {
defer catch(err)
if !isNonNilData(err, "data", g.data) {
return nil
}
dataValue, dataType, _, dataValueLen := inspectData(g.data)
if !isSlice(err, "data", dataValue) {
return nil
}
if !isZeroOrPositiveNumber(err, "size", size) {
return nil
}
result := makeSlice(reflect.SliceOf(dataType))
if dataValueLen == 0 {
return result.Interface()
}
eachResult := makeSlice(dataType)
if size > 0 {
forEachSlice(dataValue, dataValueLen, func(each reflect.Value, i int) {
eachSize := eachResult.Len()
if eachSize < size {
eachResult = reflect.Append(eachResult, each)
}
if (eachSize+1) == size || (i+1) == dataValueLen {
result = reflect.Append(result, eachResult)
eachResult = reflect.MakeSlice(dataType, 0, 0)
}
})
}
return result.Interface()
}(&err)
if err != nil {
return g.markError(result, err)
}
return g.markResult(result)
}
// Compact function creates a slice with all falsey values removed from the `data`. These values: `false`, `nil`, `0`, `""`, `(*string)(nil)`, and other nil-able types are considered to be falsey.
//
// Parameters
//
// This function does not requires any parameter.
//
// Return values
//
// Chain with these methods to get result:
// .Result() interface{} // ==> description: returns the result after operation
// .ResultAndError() (interface{}, error) // ==> description: returns the result after operation, and error object
// .Error() error // ==> description: returns error object
// .IsError() bool // ==> description: return `true` on error, otherwise `false`
//
// Examples
//
// List of examples available:
func (g *Chainable) Compact() IChainable {
g.lastOperation = OperationCompact
if g.IsError() || g.shouldReturn() {
return g
}
err := (error)(nil)
result := func(err *error) interface{} {
defer catch(err)
if !isNonNilData(err, "data", g.data) {
return nil
}
dataValue, dataType, _, dataValueLen := inspectData(g.data)
if !isSlice(err, "data", dataValue) {
return nil
}
result := makeSlice(dataType)
if dataValueLen == 0 {
return result.Interface()
}
forEachSlice(dataValue, dataValueLen, func(each reflect.Value, i int) {
target := each
if target.Kind() == reflect.Ptr || target.Kind() == reflect.Interface {
if target.IsNil() {
return
}
target = target.Elem()
}
if target.Kind() == reflect.Ptr {
if target.IsNil() {
return
}
}
ok := false
switch target.Kind() {
case reflect.Bool:
ok = target.Bool()
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
ok = target.Int() != 0
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
ok = target.Uint() != 0
case reflect.Float32, reflect.Float64:
ok = target.Float() != 0
case reflect.Complex64, reflect.Complex128:
ok = target.Complex() != 0
case reflect.String:
ok = target.String() != ""
default: // case reflect.Chan, reflect.Func, reflect.Interface, reflect.Map, reflect.Ptr, reflect.Slice, reflect.Struct, reflect.UnsafePointer:
ok = !target.IsNil()
}
if ok {
result = reflect.Append(result, each)
}
})
return result.Interface()
}(&err)
if err != nil {
return g.markError(result, err)
}
return g.markResult(result)
}
// Concat function creates a new slice concatenating `data` with any additional slice.
//
// Parameters
//
// This function requires single mandatory parameter:
// sliceToConcat interface{} // ==> description: the slice to concatenate
//
// Return values
//
// Chain with these methods to get result:
// .Result() interface{} // ==> description: returns the result after operation
// .ResultAndError() (interface{}, error) // ==> description: returns the result after operation, and error object
// .Error() error // ==> description: returns error object
// .IsError() bool // ==> description: return `true` on error, otherwise `false`
//
// Examples
//
// List of examples available:
func (g *Chainable) Concat(sliceToConcat interface{}) IChainable {
g.lastOperation = OperationConcat
if g.IsError() || g.shouldReturn() {
return g
}
err := (error)(nil)
result := _concat(&err, g.data, sliceToConcat)
if err != nil {
return g.markError(result, err)
}
return g.markResult(result)
}
// ConcatMany function creates a new slice concatenating `data` with any additional slices (the 2nd parameter and rest).
//
// Parameters
//
// This function requires optional variadic parameters:
// sliceToConcat1 interface{} // ==> description: the slice to concatenate
// sliceToConcat2 interface{} // ==> description: the slice to concatenate
// sliceToConcat3 interface{} // ==> description: the slice to concatenate
// ...
//
// Return values
//
// Chain with these methods to get result:
// .Result() interface{} // ==> description: returns the result after operation
// .ResultAndError() (interface{}, error) // ==> description: returns the result after operation, and error object
// .Error() error // ==> description: returns error object
// .IsError() bool // ==> description: return `true` on error, otherwise `false`
//
// Examples
//
// List of examples available:
func (g *Chainable) ConcatMany(slicesToConcat ...interface{}) IChainable {
g.lastOperation = OperationConcatMany
if g.IsError() || g.shouldReturn() {
return g
}
err := (error)(nil)
result := _concat(&err, g.data, slicesToConcat...)
if err != nil {
return g.markError(result, err)
}
return g.markResult(result)
}
func _concat(err *error, data interface{}, slicesToConcat ...interface{}) interface{} {
defer catch(err)
if !isNonNilData(err, "data", data) {
return nil
}
dataValue, dataType, _, dataValueLen := inspectData(data)
if !isSlice(err, "data", dataValue) {
return nil
}
result := makeSlice(dataType)
forEachSlice(dataValue, dataValueLen, func(each reflect.Value, i int) {
result = reflect.Append(result, each)
})
for i, eachConcatenableData := range slicesToConcat {
eachLabel := fmt.Sprintf("concat data %d", (i + 1))
eachValue, eachType, _, eachValueLen := inspectData(eachConcatenableData)
if !isSlice(err, eachLabel, eachValue) {
return nil
}
if !isTypeEqual(err, "data", dataType.Elem(), eachLabel, eachType.Elem()) {
return nil
}
if eachValueLen == 0 {
continue
}
forEachSlice(eachValue, eachValueLen, func(each reflect.Value, i int) {
result = reflect.Append(result, each)
})
}
return result.Interface()
}
// Contains function checks if value is in data. If data is a string, it's checked for a substring of value, otherwise SameValueZero is used for equality comparisons. If `fromIndex` is negative, it's used as the offset from the end of data.
//
// Parameters
//
// This function requires single mandatory parameter:
// search interface{} // ==> description: the value to search for.
// fromIndex int // ==> optional
// // description: The index to search from
// // default value: 0
//
// Return values
//
// Chain with these methods to get result:
// .Result() bool // ==> description: returns true if value is found, else false
// .ResultAndError() (bool, error) // ==> description: returns true if value is found, else false, and error object
// .Error() error // ==> description: returns error object
// .IsError() bool // ==> description: return `true` on error, otherwise `false`
//
// Examples
//
// List of examples available:
func (g *Chainable) Contains(search interface{}, args ...int) IChainableBoolResult {
g.lastOperation = OperationContains
if g.IsError() || g.shouldReturn() {
return &resultContains{chainable: g}
}
err := (error)(nil)
result := func(err *error) bool {
defer catch(err)
if dataValue, dataOK := g.data.(string); dataOK {
if searchValue, searchOK := search.(string); searchOK {
return strings.Contains(dataValue, searchValue)
}
return false
}
if !isNonNilData(err, "data", g.data) {
return false
}
dataValue, _, dataValueKind, dataValueLen := inspectData(g.data)
startIndex := 0
if len(args) > 0 {
startIndex = args[0]
}
if !isZeroOrPositiveNumber(err, "start index", startIndex) {
return false
}
if !isSlice(err, "data", dataValue) {
if dataValueKind == reflect.Map {
*err = nil
return _containsCollection(err, dataValue, search, startIndex)
}
*err = errors.New((*err).Error() + ", map, or a string")
return false
}
return _containsSlice(err, dataValue, dataValueLen, search, startIndex)
}(&err)
if err != nil {
return &resultContains{chainable: g.markError(result, err)}
}
return &resultContains{chainable: g.markResult(result)}
}
func _containsSlice(err *error, dataValue reflect.Value, dataValueLen int, search interface{}, startIndex int) bool {
isFound := false
forEachSliceStoppable(dataValue, dataValueLen, func(each reflect.Value, i int) bool {
if i < startIndex {
return true
}
eachActualValue := each.Interface()
if eachActualValue == search {
isFound = true
return false
}
return true
})
return isFound
}
func _containsCollection(err *error, dataValue reflect.Value, search interface{}, startIndex int) bool {
isFound := false
counter := 0
dataValueMapKeys := dataValue.MapKeys()
forEachCollectionStoppable(dataValue, dataValueMapKeys, func(value reflect.Value, key reflect.Value, i int) bool {
defer func() {
counter++
}()
if counter < startIndex {
return true
}
eachActualValue := value.Interface()
if eachActualValue == search && !isFound {
isFound = true
return false
}
return true
})
return isFound
}
// Count get the length of `data`.
//
// Parameters
//
// This function does not requires any parameter.
//
// Return values
//
// Chain with these methods to get result:
// .Result() int // ==> description: returns length of data
// .ResultAndError() (int, error) // ==> description: returns length of data, and error object
// .Error() error // ==> description: returns error object
// .IsError() bool // ==> description: return `true` on error, otherwise `false`
//
// Examples
//
// List of examples available:
func (g *Chainable) Count() IChainableNumberResult {
g.lastOperation = OperationCount
if g.IsError() || g.shouldReturn() {
return &resultCount{chainable: g}
}
err := (error)(nil)
result := _count(&err, g.data, nil)
if err != nil {
return &resultCount{chainable: g.markError(result, err)}
}
return &resultCount{chainable: g.markResult(result)}
}
// CountBy get the length of `data` filtered by `iteratee`.
//
// Parameters
//
// This function requires single mandatory parameter:
// iteratee interface{} // ==> type: `func(each anyType, i int)bool` or
// // `func(value anyType, key anyType, i int)bool`
// // description: the function invoked per iteration
//
// Return values
//
// Chain with these methods to get result:
// .Result() int // ==> description: returns the result after operation
// .ResultAndError() (int, error) // ==> description: returns the result after operation, and error object
// .Error() error // ==> description: returns error object
// .IsError() bool // ==> description: return `true` on error, otherwise `false`
//
// Examples
//
// List of examples available:
func (g *Chainable) CountBy(iteratee interface{}) IChainableNumberResult {
g.lastOperation = OperationCountBy
if g.IsError() || g.shouldReturn() {
return &resultCount{chainable: g}
}
err := (error)(nil)
result := _count(&err, g.data, iteratee)
if err != nil {
return &resultCount{chainable: g.markError(result, err)}
}
return &resultCount{chainable: g.markResult(result)}
}
func _count(err *error, data, predicate interface{}) int {
defer catch(err)
if !isNonNilData(err, "data", data) {
return 0
}
dataValue, dataValueType, dataValueKind, dataValueLen := inspectData(data)
if !isSlice(err, "data", dataValue) {
if dataValueKind == reflect.Map {
*err = nil
return _countCollection(err, dataValue, dataValueType, dataValueKind, dataValueLen, predicate)
}
return 0
}
return _countSlice(err, dataValue, dataValueType, dataValueKind, dataValueLen, predicate)
}
func _countSlice(err *error, dataValue reflect.Value, dataValueType reflect.Type, dataValueKind reflect.Kind, dataValueLen int, callback interface{}) int {
var callbackValue reflect.Value
var callbackType reflect.Type
var callbackTypeNumIn int
if callback == nil {
return dataValueLen
}
callbackValue, callbackType = inspectFunc(err, callback)
if *err != nil {
return 0
}
callbackTypeNumIn = validateFuncInputForSliceLoop(err, callbackType, dataValue)
if *err != nil {
return 0
}
validateFuncOutputOneVarBool(err, callbackType, true)
if *err != nil {
return 0
}
resultCounter := 0
forEachSlice(dataValue, dataValueLen, func(each reflect.Value, i int) {
res := callFuncSliceLoop(callbackValue, each, i, callbackTypeNumIn)
if res[0].Bool() {
resultCounter++
}
})
return resultCounter
}
func _countCollection(err *error, dataValue reflect.Value, dataValueType reflect.Type, dataValueKind reflect.Kind, dataValueLen int, callback interface{}) int {
var callbackValue reflect.Value
var callbackType reflect.Type
var callbackTypeNumIn int
if callback == nil {
return dataValueLen
}
callbackValue, callbackType = inspectFunc(err, callback)
if *err != nil {
return 0
}
callbackTypeNumIn = validateFuncInputForCollectionLoop(err, callbackType, dataValue)
if *err != nil {
return 0
}
validateFuncOutputOneVarBool(err, callbackType, true)
if *err != nil {
return 0
}
resultCounter := 0
dataValueMapKeys := dataValue.MapKeys()
forEachCollection(dataValue, dataValueMapKeys, func(value, key reflect.Value, i int) {
res := callFuncCollectionLoop(callbackValue, value, key, callbackTypeNumIn)
if res[0].Bool() {
resultCounter++
}
})
return resultCounter
}
// Difference function creates a slice of `data` that values not included in the other given slice. The order and references of result values are determined by the first slice.
//
// Parameters
//
// This function requires single mandatory parameter:
// dataToCompare interface{} // ==> description: the slice to differentiate
//
// Return values
//
// Chain with these methods to get result:
// .Result() interface{} // ==> description: returns the result after operation
// .ResultAndError() (interface{}, error) // ==> description: returns the result after operation, and error object
// .Error() error // ==> description: returns error object
// .IsError() bool // ==> description: return `true` on error, otherwise `false`
//
// Examples
//
// List of examples available:
func (g *Chainable) Difference(dataToCompare interface{}) IChainable {
g.lastOperation = OperationDifferenceMany
if g.IsError() || g.shouldReturn() {
return g
}
err := (error)(nil)
result := _difference(&err, g.data, dataToCompare)
if err != nil {
return g.markError(result, err)
}
return g.markResult(result)
}
// DifferenceMany function creates a slice of `data` that values not included in the other given slices. The order and references of result values are determined by the first slice.
//
// Parameters
//
// This function requires optional variadic parameters:
// datasToCompare1 interface{} // ==> description: the slice to differentiate
// datasToCompare2 interface{} // ==> description: the slice to differentiate
// datasToCompare3 interface{} // ==> description: the slice to differentiate
// ...
//
// Return values
//
// Chain with these methods to get result:
// .Result() interface{} // ==> description: returns the result after operation
// .ResultAndError() (interface{}, error) // ==> description: returns the result after operation, and error object
// .Error() error // ==> description: returns error object
// .IsError() bool // ==> description: return `true` on error, otherwise `false`
//
// Examples
//
// List of examples available:
func (g *Chainable) DifferenceMany(datasToCompare ...interface{}) IChainable {
g.lastOperation = OperationDifferenceMany
if g.IsError() || g.shouldReturn() {
return g
}
if len(datasToCompare) == 0 {
return g.markError(nil, errors.New("data to compare cannot be empty"))
}
err := (error)(nil)
result := _difference(&err, g.data, datasToCompare...)
if err != nil {
return g.markError(result, err)
}
return g.markResult(result)
}
func _difference(err *error, data interface{}, dataToCompare ...interface{}) interface{} {
defer catch(err)
if !isNonNilData(err, "data", data) {
return nil
}
dataValue, dataType, _, dataValueLen := inspectData(data)
if !isSlice(err, "data", dataValue) {
return nil
}
result := makeSlice(dataType)
if dataValueLen == 0 {
return result.Interface()
}
dataToCompareMap := make(map[reflect.Value]int)
for i, each := range dataToCompare {
eachLabel := fmt.Sprintf("difference data %d", (i + 1))
eachValue, eachType, _, eachValueLen := inspectData(each)
if !isSlice(err, eachLabel, eachValue) {
return nil
}
if !isTypeEqual(err, "data", dataType, eachLabel, eachType) {
return nil
}
dataToCompareMap[eachValue] = eachValueLen
}
forEachSlice(dataValue, dataValueLen, func(each reflect.Value, i int) {
isFound := false
for compareValue, compareValueLen := range dataToCompareMap {
forEachSliceStoppable(compareValue, compareValueLen, func(inner reflect.Value, j int) bool {
if each.Interface() == inner.Interface() {
isFound = true
return false
}
return true
})
}
if !isFound {
result = reflect.Append(result, each)
}
})
return result.Interface()
}
// Drop function creates a slice of `data` with `n` elements dropped from the beginning.
//
// Parameters
//
// This function requires single mandatory parameter:
// size int // ==> description: the number of elements to drop
//
// Return values
//
// Chain with these methods to get result:
// .Result() interface{} // ==> description: returns the result after operation
// .ResultAndError() (interface{}, error) // ==> description: returns the result after operation, and error object
// .Error() error // ==> description: returns error object
// .IsError() bool // ==> description: return `true` on error, otherwise `false`
//
// Examples
//
// List of examples available:
func (g *Chainable) Drop(size int) IChainable {
g.lastOperation = OperationDrop
if g.IsError() || g.shouldReturn() {
return g
}
err := (error)(nil)
result := func(err *error) interface{} {
defer catch(err)
if !isNonNilData(err, "data", g.data) {
return nil
}
dataValue, dataType, _, dataValueLen := inspectData(g.data)
if !isSlice(err, "data", dataValue) {
return nil
}
if !isZeroOrPositiveNumber(err, "size", size) {
return g.data
}
if size == 0 {
return g.data
}
result := makeSlice(dataType)
if dataValueLen == 0 {
return result.Interface()
}
forEachSlice(dataValue, dataValueLen, func(each reflect.Value, i int) {
if i < size {
return
}
result = reflect.Append(result, each)
})
return result.Interface()
}(&err)
if err != nil {
return g.markError(result, err)
}
return g.markResult(result)
}
// DropRight function creates a slice of `data` with `n` elements dropped from the end.
//
// Parameters
//
// This function requires single mandatory parameter:
// size int // ==> description: the number of elements to drop
//
// Return values
//
// Chain with these methods to get result:
// .Result() interface{} // ==> description: returns the result after operation
// .ResultAndError() (interface{}, error) // ==> description: returns the result after operation, and error object
// .Error() error // ==> description: returns error object
// .IsError() bool // ==> description: return `true` on error, otherwise `false`
//
// Examples
//
// List of examples available:
func (g *Chainable) DropRight(size int) IChainable {
g.lastOperation = OperationDropRight
if g.IsError() || g.shouldReturn() {
return g
}
err := (error)(nil)
result := func(err *error) interface{} {
defer catch(err)
if !isNonNilData(err, "data", g.data) {
return nil
}
dataValue, dataType, _, dataValueLen := inspectData(g.data)
if !isSlice(err, "data", dataValue) {
return nil
}
if !isZeroOrPositiveNumber(err, "size", size) {
return g.data
}
if size == 0 {
return g.data
}
result := makeSlice(dataType)
if dataValueLen == 0 {
return result.Interface()
}
forEachSlice(dataValue, dataValueLen, func(each reflect.Value, i int) {
if i < (dataValueLen - size) {
result = reflect.Append(result, each)
}
})
return result.Interface()
}(&err)
if err != nil {
return g.markError(result, err)
}
return g.markResult(result)
}
// Each iterates over elements of `data` and invokes `iteratee` for each element. Iteratee functions may exit iteration early by explicitly returning false
//
// Parameters
//
// This function requires single mandatory parameter:
// iteratee interface{} // ==> type: `func(each anyType, i int)` or
// // `func(each anyType, i int)bool` or
// // `func(value anyType, key anyType, i int)` or
// // `func(value anyType, key anyType, i int)bool`
// // ==> description: the function invoked per iteration.
// // for slice, the 2nd argument represents index of each element, and it's optional.
// // for struct object/map, the 2nd and 3rd arguments represent key and index of each item respectively,
// // and both are optional.
// // if return value is provided then the next iteration is controlled by returned value.
// // `return true` will make the iteration continue, meanwhile `return false` will stop it
//
// Return values
//
// Chain with these methods to get result:
// .Error() error // ==> description: returns error object
// .IsError() bool // ==> description: return `true` on error, otherwise `false`
//
// Examples
//
// List of examples available:
func (g *Chainable) Each(iteratee interface{}) IChainableNoReturnValueResult {
g.lastOperation = OperationEach
if g.IsError() || g.shouldReturn() {
return &resultEach{chainable: g}
}
err := (error)(nil)
_each(&err, g.data, iteratee, true)
if err != nil {
return &resultEach{chainable: g.markError(nil, err)}
}
return &resultEach{chainable: g.markResult(nil)}
}
// EachRight iterates over elements of `data` from tail to head, and invokes `iteratee` for each element. Iteratee functions may exit iteration early by explicitly returning false
//
// Parameters
//
// This function requires single mandatory parameter:
// iteratee interface{} // ==> type: `func(each anyType, i int)` or
// // `func(each anyType, i int)bool` or
// // `func(value anyType, key anyType, i int)` or
// // `func(value anyType, key anyType, i int)bool`
// // ==> description: the function invoked per iteration.
// // for slice, the 2nd argument represents index of each element, and it's optional.
// // for struct object/map, the 2nd and 3rd arguments represent key and index of each item respectively,
// // and both are optional.
// // if return value is provided then the next iteration is controlled by returned value.
// // `return true` will make the iteration continue, meanwhile `return false` will stop it
//
// Return values
//
// Chain with these methods to get result:
// .Error() error // ==> description: returns error object
// .IsError() bool // ==> description: return `true` on error, otherwise `false`
//
// Examples
//
// List of examples available:
func (g *Chainable) EachRight(iteratee interface{}) IChainableNoReturnValueResult {
g.lastOperation = OperationEachRight
if g.IsError() || g.shouldReturn() {
return &resultEach{chainable: g}
}
err := (error)(nil)
_each(&err, g.data, iteratee, true)
if err != nil {
return &resultEach{chainable: g.markError(nil, err)}
}
return &resultEach{chainable: g.markResult(nil)}
}
func _each(err *error, data, iteratee interface{}, isForward bool) {
defer catch(err)
if !isNonNilData(err, "data", data) {
return
}
dataValue, dataValueType, dataValueKind, dataValueLen := inspectData(data)
if !isSlice(err, "data", dataValue) {
if dataValueKind == reflect.Map {
*err = nil
_eachCollection(err, dataValue, dataValueType, dataValueKind, dataValueLen, iteratee, isForward)
}
return
}
_eachSlice(err, dataValue, dataValueType, dataValueKind, dataValueLen, iteratee, isForward)
}
func _eachSlice(err *error, dataValue reflect.Value, dataValueType reflect.Type, dataValueKind reflect.Kind, dataValueLen int, callback interface{}, isLoopIncremental bool) {
callbackValue, callbackType := inspectFunc(err, callback)
if *err != nil {
return
}
callbackTypeNumIn := validateFuncInputForSliceLoop(err, callbackType, dataValue)
if *err != nil {
return
}
validateFuncOutputOneVarBool(err, callbackType, false)
if *err != nil {
return
}
if dataValueLen == 0 {
return
}
forEachSliceStoppable(dataValue, dataValueLen, func(each reflect.Value, i int) bool {
var res []reflect.Value
if isLoopIncremental {
res = callFuncSliceLoop(callbackValue, each, i, callbackTypeNumIn)
} else {
indexFromRight := dataValueLen - i - 1
eachFromRight := dataValue.Index(indexFromRight)
res = callFuncSliceLoop(callbackValue, eachFromRight, indexFromRight, callbackTypeNumIn)
}
if len(res) > 0 {
return res[0].Bool()
}
return true
})
}
func _eachCollection(err *error, dataValue reflect.Value, dataValueType reflect.Type, dataValueKind reflect.Kind, dataValueLen int, callback interface{}, isLoopIncremental bool) {
callbackValue, callbackType := inspectFunc(err, callback)
if *err != nil {
return
}
callbackTypeNumIn := validateFuncInputForCollectionLoop(err, callbackType, dataValue)
if *err != nil {
return
}
validateFuncOutputNone(err, callbackType)
if *err != nil {
return