1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-10 15:52: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

@@ -460,6 +460,23 @@ func ExampleReduce() {
// 6
}
func ExampleReduceBy() {
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)
})
fmt.Println(result1)
fmt.Println(result2)
// Output:
// 10
// 1234
}
func ExampleReplace() {
strs := []string{"a", "b", "c", "a"}