| 199 | |
| 200 | template <class T> |
| 201 | [[nodiscard]] static inline T StripStringRight(const T& from) { |
| 202 | return TStripImpl<false, true>::StripString(from); |
| 203 | } |
| 204 | |
| 205 | template <typename TChar, typename TTraits> |
| 206 | [[nodiscard]] static inline TBasicStringBuf<TChar, TTraits> StripStringRight(const TBasicStringBuf<TChar, TTraits> from Y_LIFETIME_BOUND) { |
no test coverage detected