We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Add a functor to the DSL that takes any collection and turns it into a collection of buckets.
There's a lot of wiggle room and experimentation here to figure out how this should work exactly.
Some ideas:
database.projects.map_into(Buckets(project::Commits, Count(commit::Authors), UniformWidth(10)) database.projects.map_into(Buckets(project::Commits, Count(commit::Authors), LogWidth) database.projects.map_into(Buckets(project::Commits, |commit| commit.authors() % 10)
The buckets should be usable within the DSL somehow.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add a functor to the DSL that takes any collection and turns it into a collection of buckets.
There's a lot of wiggle room and experimentation here to figure out how this should work exactly.
Some ideas:
The buckets should be usable within the DSL somehow.
The text was updated successfully, but these errors were encountered: