| 19 | std::find_if(s.begin(), s.end(), [](unsigned char ch) { return !std::isspace(ch); })); |
| 20 | } |
| 21 | static inline void rtrim(std::string& s) |
| 22 | { |
| 23 | s.erase( |
| 24 | std::find_if(s.rbegin(), s.rend(), [](unsigned char ch) { return !std::isspace(ch); }).base(), |
| 25 | s.end()); |
| 26 | } |
| 27 | VTK_ABI_NAMESPACE_END |
| 28 | } |
| 29 |