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

Ranges Algorithms Modernization - Return #13091

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from

Commits on Oct 5, 2024

  1. Modernize std::mismatch with ranges

    The new return value is `std::ranges::mismatch_result`, an alias for the pair-like type `std::ranges::in_in_result`.
    mitaclaw committed Oct 5, 2024
    Configuration menu
    Copy the full SHA
    541e8f0 View commit details
    Browse the repository at this point in the history
  2. Modernize std::search with ranges

    The new return value is `std::ranges::subrange`.
    mitaclaw committed Oct 5, 2024
    Configuration menu
    Copy the full SHA
    ca92bc9 View commit details
    Browse the repository at this point in the history
  3. Modernize std::remove with ranges

    The new return value is `std::ranges::subrange`.
    mitaclaw committed Oct 5, 2024
    Configuration menu
    Copy the full SHA
    af1641d View commit details
    Browse the repository at this point in the history
  4. Modernize std::unique with ranges

    The new return value is `std::ranges::subrange`.
    mitaclaw committed Oct 5, 2024
    Configuration menu
    Copy the full SHA
    124c9ba View commit details
    Browse the repository at this point in the history
  5. Modernize std::partition with ranges

    The new return value is `std::ranges::subrange`.
    mitaclaw committed Oct 5, 2024
    Configuration menu
    Copy the full SHA
    d4cc0aa View commit details
    Browse the repository at this point in the history