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

Implement copy_if_while and copy_if_until #100

Merged
merged 1 commit into from
Jun 29, 2022

Conversation

jgopel
Copy link
Contributor

@jgopel jgopel commented May 11, 2022

Problem:

  • There is no way to signal that a copy should proceed, selecting
    elements by a predicate until some condition is met. This is useful
    for patterns along the lines of "copy selected elements until there
    are n total elements in the output".

Solution:

  • Introduce copy_if_while() and copy_if_until().

Copy link
Contributor

@tzlaine tzlaine left a comment

Choose a reason for hiding this comment

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

@jgopel This needs documentation. The inline Doxygen comments are important, but you're missing the tutorial-level docs, like these: https://www.boost.org/doc/libs/1_79_0/libs/algorithm/doc/html/algorithm/Misc.html . See one of my PRs for how to add to the docs.

@jgopel
Copy link
Contributor Author

jgopel commented May 29, 2022

@tzlaine Thanks for the feedback Zach - I've added documentation using the existing documentation for copy_while and copy_until as a template. Please let me know if there's anything that I can do to improve that 🙂

The documentation that I have is certainly not as thorough as your documentation is on #47 or on #99. I viewed this as a tradeoff between consistency and thoroughness. In my experience, consistency in documentation is very important, so I decided to prioritize that over thoroughness. I could have had both consistency and thoroughness by updating the existing documentation to be more thorough, but that felt out of scope for this PR. If that's something that would be a welcome addition, I would be more than happy to address that in another PR!

@jgopel jgopel requested a review from mclow May 29, 2022 21:40
@tzlaine
Copy link
Contributor

tzlaine commented May 31, 2022

Docs LGTM. Marshall gets the final say, of course.

@jgopel jgopel changed the title ✨ [copy_if] Implement copy_if_while and copy_if_until Implement copy_if_while and copy_if_until Jun 5, 2022
@@ -126,6 +126,82 @@ copy_until ( const Range &r, OutputIterator result, Predicate p )
return boost::algorithm::copy_until (boost::begin (r), boost::end(r), result, p);
}

/// \fn copy_if_while ( InputIterator first, InputIterator last, OutputIterator result, CopyPredicate copy_pred, TerminatePred term_pred )
/// \brief Copies all the elements from the input range that satisfy the
Copy link
Collaborator

Choose a reason for hiding this comment

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

You missed something here; shouldn't this be:
Copies all the elements from the input range that satisfy the predicate while the termination predicate is satisfied.

also, is TerminatePred the correct term to use here?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I fixed the missing documentation here.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I'm not sure if TerminatePred is correct - I definitely struggled with naming of the predicates to indicate what they were and how they were different - these were the best that I could come up with. If you have a better name, I am more than happy to make changes!

Copy link
Collaborator

@mclow mclow left a comment

Choose a reason for hiding this comment

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

This looks really good to me; just a couple bits of doxygen copy-pasta.

Sorry this took so long; my hand is healing very slowly

Problem:
- There is no way to signal that a copy should proceed, selecting
  elements by a predicate until some condition is met. This is useful
  for patterns along the lines of "copy selected elements until there
  are n total elements in the output".

Solution:
- Introduce `copy_if_while()` and `copy_if_until()`.
@jgopel
Copy link
Contributor Author

jgopel commented Jun 24, 2022

This looks really good to me; just a couple bits of doxygen copy-pasta.

Sorry this took so long; my hand is healing very slowly

Thanks for the feedback! I'm sorry to hear your hand is healing slowly 😞 No rush on responding to the one comment that I had - if you need to wait out the hand that's totally fine, I'll be here and be motivated when you're ready!

@mclow mclow merged commit 12ade33 into boostorg:develop Jun 29, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants