Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: change slice.Reduce return type #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

scorsi
Copy link

@scorsi scorsi commented May 23, 2022

Hello,

I would like to see slice.Reduce returns a different type than the inner slice type. Example :

type OddEven struct {
	Odd  int
	Even int
}

s := []int{0, 1, 2, 3, 4}

result := slice.Reduce(s2, OddEven{}, func(acc OddEven, i int, s int) OddEven {
	if s%2 == 0 {
		acc.Even++
	} else {
		acc.Odd++
	}
	return acc
})

Thanks,

@scorsi scorsi changed the title feat: change reduce return type feat: change slice.Reduce return type May 23, 2022
@scorsi
Copy link
Author

scorsi commented Jun 23, 2022

@ssoroka up :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant