| 255 | |
| 256 | template <typename T> |
| 257 | inline void StripInPlace(T& s) { |
| 258 | StripString(s, s); |
| 259 | } |
| 260 | |
| 261 | /// Returns a copy of the given string with removed leading and trailing spaces. |
| 262 | [[nodiscard]] inline TString Strip(const TString& s) { |
no test coverage detected