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

array zip_map feature #94413

Closed
wants to merge 17 commits into from
Closed

Conversation

conradludgate
Copy link
Contributor

As discussed on zulip.

Introduces a new zip method on arrays that is considerably faster than the existing methods.

@rust-highfive
Copy link
Contributor

r? @m-ou-se

(rust-highfive has picked a reviewer for you, use r? to override)

@rust-highfive rust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Feb 27, 2022
@rust-log-analyzer

This comment has been minimized.

@slanterns
Copy link
Contributor

slanterns commented Feb 27, 2022

Would it be better if this zip_map can be extended to general iterators, not just arrays (the current implementation might prevent other iterators to implement zip_map)? Since it seems to be a public api, it feels more consistent to me if it can be used on all iterators (like zipWith in other languages).

@rust-log-analyzer

This comment has been minimized.

@m-ou-se
Copy link
Member

m-ou-se commented Mar 9, 2022

While this seems reasonable, I'm worried about this leading us on a path towards a large amount of iterator-like functions on the array type. What are other iterator-like functions that anybody might want on the array type? Is zip_map more important or special than those? Where should we draw the line?

@m-ou-se m-ou-se added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Mar 9, 2022
@conradludgate
Copy link
Contributor Author

Where should we draw the line?

That is certainly a valid point. I feel like we might have already crossed that line with the existing map and zip methods.

I'll try @slanterns suggestion and see how well it optimised with some iterator adapters. If it does optimise well, maybe we can push for array: IntoIterator more.

@conradludgate
Copy link
Contributor Author

Alternatively, my goal was to provide some convenient Add, Sub, Mul, etc methods that would be based on this impl.

I thought getting this PR in would be easier than an RFC regarding implementing these traits onto arrays, but maybe I'll start the RFC now

@JohnCSimon
Copy link
Member

@conradludgate
Ping from triage: Can you please post the status of this PR?
Thank you.

@conradludgate
Copy link
Contributor Author

Can you please post the status of this PR?

Still waiting for me to attempt the iterator adapter form to see if they can meet similar optimisations

@JohnCSimon JohnCSimon added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels May 8, 2022
@bors
Copy link
Collaborator

bors commented May 14, 2022

☔ The latest upstream changes (presumably #95602) made this pull request unmergeable. Please resolve the merge conflicts.

F: FnMut(T, U) -> R,
{
// If any of the items need drop, take the 'slow' path that ensures all drop
// handlers are called in case of panic.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Assuming this is worth doing, I think it should happen in try_collect_into_array instead (

fn try_collect_into_array<I, T, R, const N: usize>(iter: &mut I) -> Option<R::TryType>
), so that the other functions can benefit from doing it too

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, as I said in my other comment, it doesn't actually seem to do much here. Although my new private methods on IntoIter make this much simpler to implement and share the drop checking code

@conradludgate
Copy link
Contributor Author

I finally got some time to look into this more. I attempted adding a ZipMap iterator adapter and tried to use the arrays with those but I didn't get the results I was looking for.

Similarly, adding the drop check skip code to try_collect_into_array didn't do the job either.

It's a little disappointing but I guess this isn't worth it then if it can't generalise better. I'll focus on maintaining my crate

@apiraino apiraino added the T-libs Relevant to the library team, which will review and decide on the PR/issue. label May 19, 2022
@JohnCSimon
Copy link
Member

@conradludgate
ping from triage - can you post your status on this PR? can this be closed?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. T-libs Relevant to the library team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

9 participants