| 184 | |
| 185 | template <class T> |
| 186 | [[nodiscard]] static inline T StripStringLeft(const T& from) { |
| 187 | return TStripImpl<true, false>::StripString(from); |
| 188 | } |
| 189 | |
| 190 | template <typename TChar, typename TTraits> |
| 191 | [[nodiscard]] static inline TBasicStringBuf<TChar, TTraits> StripStringLeft(const TBasicStringBuf<TChar, TTraits> from Y_LIFETIME_BOUND) { |
no test coverage detected