[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang-tools-extra / docs / clang-tidy / checks / readability / use-anyofallof.rst
blobf7bd9ff89345b6ce60702bad4364601329f7d34d
1 .. title:: clang-tidy - readability-use-anyofallof
3 readability-use-anyofallof
4 ==========================
6 Finds range-based for loops that can be replaced by a call to ``std::any_of`` or
7 ``std::all_of``. In C++ 20 mode, suggests ``std::ranges::any_of`` or
8 ``std::ranges::all_of``.
10 Example:
12 .. code-block:: c++
14   bool all_even(std::vector<int> V) {
15     for (int I : V) {
16       if (I % 2)
17         return false;
18     }
19     return true;
20     // Replace loop by
21     // return std::ranges::all_of(V, [](int I) { return I % 2 == 0; });
22   }