1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-14 01:32:27 +08:00

feat: add ReduceBy

This commit is contained in:
dudaodong
2023-04-04 17:41:37 +08:00
parent 8bdd46bda4
commit f198191063
5 changed files with 122 additions and 0 deletions

View File

@@ -405,6 +405,22 @@ func TestReduce(t *testing.T) {
}
}
func TestReduceBy(t *testing.T) {
assert := internal.NewAssert(t, "TestReduce2")
result1 := ReduceBy([]int{1, 2, 3, 4}, 0, func(_ int, item int, agg int) int {
return agg + item
})
result2 := ReduceBy([]int{1, 2, 3, 4}, "", func(_ int, item int, agg string) string {
return agg + fmt.Sprintf("%v", item)
})
assert.Equal(10, result1)
assert.Equal("1234", result2)
}
func TestIntSlice(t *testing.T) {
var nums []any
nums = append(nums, 1, 2, 3)