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

Examples for Iterator::rposition(F) do not differentiate it from ::position(F) #101095

Closed
plaukiu opened this issue Aug 27, 2022 · 1 comment · Fixed by #102263
Closed

Examples for Iterator::rposition(F) do not differentiate it from ::position(F) #101095

plaukiu opened this issue Aug 27, 2022 · 1 comment · Fixed by #102263
Labels
A-docs Area: Documentation for any part of the project, including the compiler, standard library, and tools

Comments

@plaukiu
Copy link

plaukiu commented Aug 27, 2022

https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.rposition
Description should provide a clear meaning for 'index' – index within the collection, or index as number of iteration?
Examples for rposition should demonstrate a clear difference from position.

Here's the example of rposition with an added comparison with the result of the situation with position.

let a = [1, 2, 3];

let mut iter_p = a.iter();
let mut iter_r = a.iter();

assert_eq!(iter_p.position(|&x| x == 2), iter_r.rposition(|&x| x == 2));

My proposition: use the same example as position(F)

let a = [1, 2, 3, 4];

let mut iter = a.iter();

assert_eq!(iter.rposition(|&x| x >= 2), Some(3));
@ehuss ehuss transferred this issue from rust-lang/reference Aug 27, 2022
@ehuss
Copy link
Contributor

ehuss commented Aug 27, 2022

Transferred to rust-lang/rust. The documentation of the standard library is part of the standard library itself which lives here.

@ehuss ehuss added the A-docs Area: Documentation for any part of the project, including the compiler, standard library, and tools label Aug 27, 2022
@bors bors closed this as completed in beb2240 Sep 26, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-docs Area: Documentation for any part of the project, including the compiler, standard library, and tools
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants