-
Notifications
You must be signed in to change notification settings - Fork 314
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
Add tuple_permutations
#1001
Comments
It may be easier to add |
That's true and in general probably nicer to use than tuples, thanks for the pointer! |
It seems possible to share most of the code from impl<T> PoolIndex<T> for Box<[usize]> {
type Item = Vec<T>;
...
} and then make |
Canonically we use |
There is the
combinations()
andtuple_combinations()
functions, I'm however missing thetuple_permutations()
function.Is there a reason this couldn't exist?
If not, I might even be open to implementing it depending on how much macro hackery is needed
The text was updated successfully, but these errors were encountered: