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

Reduce identity value #11

Open
hal8174 opened this issue Feb 17, 2023 · 0 comments
Open

Reduce identity value #11

hal8174 opened this issue Feb 17, 2023 · 0 comments

Comments

@hal8174
Copy link
Collaborator

hal8174 commented Feb 17, 2023

The reduce function should use an identity value to initialize the accumulator.
Currently, the default constructor is used as the identity. This makes it difficult to change the identity for standard types.
To change the identity of a standard type, you would need to create a wrapping struct.

Options:

  1. The identity value is set by a field in the algorithm struct.
  2. The identity value is passed as an argument
  3. Don't use an identity value and require the reducing function to be commutative.

In my opinion, option 3 is the architecturally prettiest, but it adds uncheckable requirements on the user implemented reducing function.
Option 2 doesn't really work, because the current calling structure prevents the addition of arguments.
Option 1 would be the easy to implement. In addition, this way, the existence of an identity could be checked via concepts.

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

No branches or pull requests

1 participant