| 31 | } |
| 32 | |
| 33 | Lazy<int> CountLineChar(const std::string &line, char c) { |
| 34 | auto ret = std::count(line.begin(), line.end(), c); |
| 35 | co_return static_cast<int>(ret); |
| 36 | } |
| 37 | |
| 38 | Lazy<int> CountTextChar(const Texts &Content, char c) { |
| 39 | int Result = 0; |
no test coverage detected