-
Notifications
You must be signed in to change notification settings - Fork 508
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
rayon and itertools #993
Comments
hi, not sure exactly what you are looking for but if it's a 'tuple' adaptor I have one here : https://github.com/wagnerf42/diam |
I will look at your adapter but in my example I would like to replace
into_iter() with into_par_iter().tuples() and that doesn't work
because there is no implementation
2022-11-21 13:28 GMT+01:00, wagnerf42 ***@***.***>:
… hi, not sure exactly what you are looking for but if it's a 'tuple' adaptor
I have one here : https://github.com/wagnerf42/diam
if your question is something else, you should maybe be more explicit.
--
Reply to this email directly or view it on GitHub:
#993 (comment)
You are receiving this because you authored the thread.
Message ID: ***@***.***>
|
I think arrays are going to be a better way to handle this, like #974, since we can make that truly generic in length, vs. needing variadic types for tuples even though the elements are all the same type. (Or lacking variadics, then having manual implementations for different lengths.) wagnerf42's crate looks fine to give you |
hello on this link which will be at the end of this post i have some methods that i would like to speedup with itertools and rayon and i would like to ask if there is something i can do?
https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=6ddc6873616f259bc999fae1ed1aaba2
The text was updated successfully, but these errors were encountered: