| 119 | constexpr inline TBasicStringBuf(const TCharType* beg Y_LIFETIME_BOUND, const TCharType* end Y_LIFETIME_BOUND) noexcept |
| 120 | #if __cplusplus >= 202002L && __cpp_lib_string_view >= 201803L && !defined(_LIBCPP_HAS_NO_CONCEPTS) |
| 121 | : TStringView(beg, end) |
| 122 | #else |
| 123 | : TStringView(beg, NonNegativeDistance(beg, end)) |
| 124 | #endif |
| 125 | { |
| 126 | } |
| 127 | |
| 128 | template <typename D, typename T> |
| 129 | inline TBasicStringBuf(const TStringBase<D, TCharType, T>& str) noexcept |
nothing calls this directly
no test coverage detected