| 106 | } |
| 107 | |
| 108 | bool IsLowerWord(const TWtringBuf text) noexcept { |
| 109 | return IsReductionOnSymbolsTrue(text, [](const wchar32 s) { return IsLower(s); }); |
| 110 | } |
| 111 | |
| 112 | bool IsUpperWord(const TWtringBuf text) noexcept { |
| 113 | return IsReductionOnSymbolsTrue(text, [](const wchar32 s) { return IsUpper(s); }); |