mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-22 17:40:34 +00:00
now that we are allowed to use C++23. we now have the luxury of using `std::ranges::all_of` and `std::ranges::any_of` in this change, we replace `boost::algorithm::all_of` and `boost::algorithm::any_of` with `std::ranges::all_of` and `std::ranges::any_of` respectively. to reduce the dependency to boost for better maintainability, and leverage standard library features for better long-term support. this change is part of our ongoing effort to modernize our codebase and reduce external dependencies where possible. --- it's a cleanup, hence no need to backport. Closes scylladb/scylladb#21411 * github.com:scylladb/scylladb: treewide: s/boost::algorithm::any_of/std::ranges::any_of/ treewide: s/boost::algorithm::all_of/std::ranges::all_of/