13 template<
class char_t,
class traits_t>
16 assign(nSymbols, chSymbol);
19 template<
class char_t,
class traits_t>
22 assign(pszSource, nSymbols);
25 template<
class char_t,
class traits_t>
31 template<
class char_t,
class traits_t>
34 assign(std::move(sAnother));
37 template<
class char_t,
class traits_t>
43 template<
class char_t,
class traits_t>
44 template<
class fwd_it_t>
47 assign(itFirst, itLast);
50 template<
class char_t,
class traits_t>
51 template<range_of_t_c<
char_t>
string_t>
57 template<
class char_t,
class traits_t>
63 template<
class char_t,
class traits_t>
66 if (_resize(nSymbols))
67 std::fill(begin(), end(), chSymbol);
70 template<
class char_t,
class traits_t>
73 if (pszSource && _resize(nSymbols))
74 std::memmove(data(), pszSource, nSymbols *
sizeof(value_type));
77 template<
class char_t,
class traits_t>
80 if (pszSource != data())
81 assign(pszSource, traits_t::length(pszSource));
84 template<
class char_t,
class traits_t>
87 std::swap(m_Data, sAnother.m_Data);
90 template<
class char_t,
class traits_t>
93 if (sAnother.data() != data())
94 assign(sAnother.data());
97 template<
class char_t,
class traits_t>
98 template<
class fwd_it_t>
101 if (_resize(std::distance(itFirst, itLast)))
103 fwd_it_t itOther = itFirst;
106 while (itOther != itLast)
115 template<
class char_t,
class traits_t>
116 template<range_of_t_c<
char_t>
string_t>
119 assign(sAnother.cbegin(), sAnother.cend());
122 template<
class char_t,
class traits_t>
123 template<
class... args_t>
124 requires format_acceptable_args<char_t, args_t...>
127 vformat(sFormat.get(), args...);
130 template<
class char_t,
class traits_t>
131 template<
class... args_t>
132 requires format_acceptable_args<char_t, args_t...>
134 format_string_type<args_t...> sFormat,
135 const args_t&... args)
137 return static_vformat(sFormat.get(), args...);
140 template<
class char_t,
class traits_t>
141 template<
class... args_t>
142 requires format_acceptable_args<char_t, args_t...>
145 append_vformat(sFormat.get(), args...);
148 template<
class char_t,
class traits_t>
149 template<
class... args_t>
150 requires format_acceptable_args<char_t, args_t...>
154 append_vformat(svFormat, args...);
157 template<
class char_t,
class traits_t>
158 template<
class... args_t>
159 requires format_acceptable_args<char_t, args_t...>
161 string_view svFormat,
162 const args_t&... args)
165 sTemp.
vformat(svFormat, args...);
169 template<
class char_t,
class traits_t>
170 template<
class... args_t>
171 requires format_acceptable_args<char_t, args_t...>
174 if (!svFormat.empty())
175 traits_t::format_to(std::back_inserter(*
this), svFormat, args...);
178 template<
class char_t,
class traits_t>
181 std::swap(m_Data, sOther.m_Data);
184 template<
class char_t,
class traits_t>
186 size_type nCapacity) noexcept
188 if (nCapacity > capacity())
189 _resize(nCapacity, string_resize_type::reserve);
194 template<
class char_t,
class traits_t>
197 if (!m_Data.is_small() && capacity() > size())
198 _resize(size(), string_resize_type::shrink_to_fit);
201 template<
class char_t,
class traits_t>
207 template<
class char_t,
class traits_t>
210 size_type nSymbols)
const noexcept
212 return string_view(data() + nPos, nSymbols != npos ? nSymbols : size() - nPos);
215 template<
class char_t,
class traits_t>
218 for (value_type& ch : *
this)
219 ch = traits_t::to_lower(ch);
222 template<
class char_t,
class traits_t>
225 for (value_type& ch : *
this)
226 ch = traits_t::to_upper(ch);
229 template<
class char_t,
class traits_t>
235 template<
class char_t,
class traits_t>
238 return at(size() - 1);
241 template<
class char_t,
class traits_t>
247 template<
class char_t,
class traits_t>
253 template<
class char_t,
class traits_t>
256 return m_Data.capacity();
259 template<
class char_t,
class traits_t>
262 return std::numeric_limits<size_type>::max() - 1
266 template<
class char_t,
class traits_t>
270 std::optional<to_t> optResult = std::nullopt;
273 std::is_trivial_v<to_t> && std::is_standard_layout_v<to_t> || std::is_pointer_v<to_t>
274 || std::is_same_v<to_t, std::nullptr_t>)
276 if constexpr (std::is_same_v<to_t, std::nullptr_t>)
278 if (compare(
QX_STR_PREFIX(
typename traits_t::value_type,
"nullptr")) == 0)
283 else if constexpr (std::is_same_v<to_t, bool>)
285 if (compare(
QX_STR_PREFIX(
typename traits_t::value_type,
"true")) == 0)
289 else if (compare(
QX_STR_PREFIX(
typename traits_t::value_type,
"false")) == 0)
294 else if (
const auto pszSelectedFormat = pszFormat ? pszFormat : get_format_specifier<value_type, to_t>())
297 const int nConvertedArgs = traits_t::sscanf(data(), pszSelectedFormat, &result);
299 if (nConvertedArgs == 1)
306 sstream_type ss(data());
314 template<
class char_t,
class traits_t>
318 size_type nPos)
const noexcept
320 size_type nCharsToCopy = 0;
322 if (pDest && nCount > 0 && nPos < size())
324 nCharsToCopy = std::min(nPos + nCount, size()) - nPos;
325 std::memcpy(pDest, data() + nPos, nCharsToCopy *
sizeof(value_type));
331 template<
class char_t,
class traits_t>
332 template<
class from_t>
336 std::is_trivial_v<from_t> && std::is_standard_layout_v<from_t> || std::is_pointer_v<from_t>
337 || std::is_same_v<from_t, std::nullptr_t>)
339 if constexpr (std::is_same_v<from_t, std::nullptr_t>)
341 assign(
QX_STR_PREFIX(
typename traits_t::value_type,
"nullptr"));
343 else if constexpr (std::is_same_v<from_t, bool>)
351 format(
QX_STR_PREFIX(
typename traits_t::value_type,
"{}"), data);
362 template<
class char_t,
class traits_t>
363 template<
class from_t>
368 return std::move(sTemp);
371 template<
class char_t,
class traits_t>
377 template<
class char_t,
class traits_t>
382 const size_type nSize = size();
383 const size_type nSizeSource = nSymbols == npos ? traits_t::length(pszStr) : nSymbols;
385 if (_resize(nSize + nSizeSource))
386 std::memcpy(data() + nSize, pszStr, nSizeSource *
sizeof(value_type));
390 template<
class char_t,
class traits_t>
393 append(sStr.data(), sStr.size());
396 template<
class char_t,
class traits_t>
397 template<
class fwd_it_t>
400 for (
auto it = itBegin; it != itEnd; ++it)
404 template<
class char_t,
class traits_t>
405 template<range_of_t_c<
char_t>
string_t>
408 append(sStr.cbegin(), sStr.cend());
411 template<
class char_t,
class traits_t>
414 value_type chSymbol) noexcept
416 return insert(nPos, &chSymbol, 1);
419 template<
class char_t,
class traits_t>
422 const_pointer pszWhat,
423 size_type nSymbols) noexcept
427 const size_type nSize = size();
428 const size_type nSizeSource = nSymbols == npos ? traits_t::length(pszWhat) : nSymbols;
430 if (nSizeSource > 0 && _resize(nSize + nSizeSource))
432 std::memmove(data() + nPos + nSizeSource, data() + nPos, (nSize - nPos) *
sizeof(value_type));
433 std::memcpy(data() + nPos, pszWhat, nSizeSource *
sizeof(value_type));
434 return nPos + nSizeSource;
441 template<
class char_t,
class traits_t>
442 template<
class fwd_it_t>
445 fwd_it_t itWhatBegin,
446 fwd_it_t itWhatEnd) noexcept
448 if constexpr (is_random_access_iterator<fwd_it_t>)
450 return insert(nPos, itWhatBegin.operator->(),
static_cast<size_type
>(itWhatEnd - itWhatBegin));
454 size_type nWhatSize = 0;
455 for (
auto it = itWhatBegin; it != itWhatEnd; ++it)
458 size_type nStartSymbols = size();
459 if (nWhatSize > 0 && _resize(nStartSymbols + nWhatSize))
461 std::memmove(data() + nPos + nWhatSize, data() + nPos, (nStartSymbols - nPos) *
sizeof(value_type));
463 size_type nWhatPos = 0;
464 for (
auto it = itWhatBegin; it != itWhatEnd; ++it)
466 at(nPos + nWhatPos) = *it;
470 return nPos + nWhatSize;
479 template<
class char_t,
class traits_t>
484 return insert(nPos, sWhat.data(), sWhat.size());
487 template<
class char_t,
class traits_t>
488 template<range_of_t_c<
char_t>
string_t>
491 string_t sWhat) noexcept
493 return insert(
static_cast<size_type
>(nPos), sWhat.cbegin(), sWhat.cend());
496 template<
class char_t,
class traits_t>
499 value_type chSymbol) noexcept
501 return insert(
static_cast<size_type
>(itPos - cbegin()), chSymbol);
504 template<
class char_t,
class traits_t>
507 const_pointer pszWhat,
508 size_type nSymbols) noexcept
510 return insert(
static_cast<size_type
>(itPos - cbegin()), pszWhat, nSymbols);
513 template<
class char_t,
class traits_t>
518 return insert(
static_cast<size_type
>(itPos - cbegin()), sWhat.data(), sWhat.size());
521 template<
class char_t,
class traits_t>
522 template<
class fwd_it_t>
525 fwd_it_t itWhatBegin,
526 fwd_it_t itWhatEnd) noexcept
528 return insert(
static_cast<size_type
>(itPos - begin()), itWhatBegin, itWhatEnd);
531 template<
class char_t,
class traits_t>
532 template<range_of_t_c<
char_t>
string_t>
535 string_t sWhat) noexcept
537 return insert(
static_cast<size_type
>(itPos - begin()), sWhat.cbegin(), sWhat.cend());
540 template<
class char_t,
class traits_t>
543 insert(size(), &chSymbol, 1);
546 template<
class char_t,
class traits_t>
549 insert(0, &chSymbol, 1);
552 template<
class char_t,
class traits_t>
555 if (
const typename iterator::difference_type nCharsToErase = itLast - itFirst; nCharsToErase > 0)
557 const size_type nStartSize = size();
558 const size_type nSymbolsToCopy = itLast != end() ? traits_t::length(itLast.operator->()) : 0;
560 if (nSymbolsToCopy > 0)
562 std::memmove(itFirst.operator->(), itLast.operator->(), nSymbolsToCopy *
sizeof(value_type));
565 if (
static_cast<typename iterator::difference_type
>(nStartSize) >= nCharsToErase)
567 _resize(nStartSize - nCharsToErase);
572 template<
class char_t,
class traits_t>
575 erase(itPos, itPos + 1);
578 template<
class char_t,
class traits_t>
584 template<
class char_t,
class traits_t>
590 template<
class char_t,
class traits_t>
593 value_type chRet = back();
598 template<
class char_t,
class traits_t>
601 value_type chRet = front();
606 template<
class char_t,
class traits_t>
612 return traits_t::is_space(ch);
616 template<
class char_t,
class traits_t>
618 value_type chSymbol) noexcept
621 [chSymbol](value_type ch)
623 return ch == chSymbol;
627 template<
class char_t,
class traits_t>
629 const_pointer pszStr) noexcept
634 [pszStr](value_type ch)
651 template<
class char_t,
class traits_t>
653 const_pointer pszStr,
654 size_type nStrSize) noexcept
659 [pszStr, nStrSize](value_type ch)
661 for (size_type j = 0; j < nStrSize; ++j)
674 template<
class char_t,
class traits_t>
678 return trim_left(sStr.data(), sStr.size());
681 template<
class char_t,
class traits_t>
682 template<
class fwd_it_t>
685 fwd_it_t itEnd) noexcept
688 [itBegin, itEnd](
auto ch)
690 for (
auto it = itBegin; it != itEnd; ++it)
698 template<
class char_t,
class traits_t>
699 template<range_of_t_c<
char_t>
string_t>
701 const string_t& sStr) noexcept
703 return trim_left(sStr.cbegin(), sStr.cend());
706 template<
class char_t,
class traits_t>
712 return traits_t::is_space(ch);
716 template<
class char_t,
class traits_t>
718 value_type chSymbol) noexcept
721 [chSymbol](value_type ch)
723 return ch == chSymbol;
727 template<
class char_t,
class traits_t>
729 const_pointer pszStr) noexcept
734 [pszStr](value_type ch)
736 for (size_type j = 0; pszStr[j] !=
QX_CHAR_PREFIX(value_type,
'\0'); ++j)
751 template<
class char_t,
class traits_t>
753 const_pointer pszStr,
754 size_type nStrSize) noexcept
759 [pszStr, nStrSize](value_type ch)
761 for (size_type j = 0; j < nStrSize; ++j)
774 template<
class char_t,
class traits_t>
778 return trim_right(sStr.data(), sStr.size());
781 template<
class char_t,
class traits_t>
782 template<
class fwd_it_t>
785 fwd_it_t itEnd) noexcept
788 [itBegin, itEnd](
auto ch)
790 for (
auto it = itBegin; it != itEnd; ++it)
798 template<
class char_t,
class traits_t>
799 template<range_of_t_c<
char_t>
string_t>
801 const string_t& sStr) noexcept
803 return trim_right(sStr.cbegin(), sStr.cend());
806 template<
class char_t,
class traits_t>
812 return traits_t::is_space(ch);
816 template<
class char_t,
class traits_t>
818 value_type chSymbol) noexcept
821 [chSymbol](value_type ch)
823 return ch == chSymbol;
827 template<
class char_t,
class traits_t>
829 const_pointer pszStr) noexcept
834 [pszStr](value_type ch)
836 for (size_type j = 0; pszStr[j] !=
QX_CHAR_PREFIX(value_type,
'\0'); ++j)
851 template<
class char_t,
class traits_t>
853 const_pointer pszStr,
854 size_type nStrSize) noexcept
859 [pszStr, nStrSize](value_type ch)
861 for (size_type j = 0; j < nStrSize; ++j)
874 template<
class char_t,
class traits_t>
878 return trim(sStr.data(), sStr.size());
881 template<
class char_t,
class traits_t>
882 template<
class fwd_it_t>
885 fwd_it_t itEnd) noexcept
888 [itBegin, itEnd](
auto ch)
890 for (
auto it = itBegin; it != itEnd; ++it)
898 template<
class char_t,
class traits_t>
899 template<range_of_t_c<
char_t>
string_t>
901 const string_t& sStr) noexcept
903 return trim(sStr.cbegin(), sStr.cend());
906 template<
class char_t,
class traits_t>
910 size_type nEnd) noexcept
912 size_type nPos = find(chSymbol, nBegin, nEnd);
920 template<
class char_t,
class traits_t>
922 const_pointer pszStr,
925 size_type nStrSize) noexcept
929 const size_type nLocalStrSize = nStrSize != npos ? nStrSize : traits_t::length(pszStr);
930 const size_type nPos = find(pszStr, nBegin, nLocalStrSize, nEnd);
933 erase(nPos, nLocalStrSize);
943 template<
class char_t,
class traits_t>
947 size_type nEnd) noexcept
949 const size_type nPos = find(sStr, nBegin, nEnd);
952 erase(nPos, sStr.size());
957 template<
class char_t,
class traits_t>
958 template<
class fwd_it_t>
963 size_type nEnd) noexcept
965 const size_type nPos = find(itBegin, itEnd, nBegin, nEnd);
968 erase(nPos,
static_cast<size_type
>(std::distance(itBegin, itEnd)));
973 template<
class char_t,
class traits_t>
974 template<range_of_t_c<
char_t>
string_t>
976 const string_t& sStr,
978 size_type nEnd) noexcept
980 return remove(sStr.cbegin(), sStr.cend(), nBegin, nEnd);
983 template<
class char_t,
class traits_t>
986 return remove(chSymbol,
static_cast<size_type
>(0),
static_cast<size_type
>(1)) != npos;
989 template<
class char_t,
class traits_t>
992 return remove(pszStr,
static_cast<size_type
>(0), nStrSize, nStrSize) != npos;
995 template<
class char_t,
class traits_t>
998 return remove(sStr,
static_cast<size_type
>(0), sStr.size()) != npos;
1001 template<
class char_t,
class traits_t>
1002 template<
class fwd_it_t>
1005 return remove(itBegin, itEnd,
static_cast<size_type
>(0),
static_cast<size_type
>(std::distance(itBegin, itEnd)))
1009 template<
class char_t,
class traits_t>
1010 template<range_of_t_c<
char_t>
string_t>
1013 return remove_prefix(sStr.cbegin(), sStr.cend());
1016 template<
class char_t,
class traits_t>
1019 const size_type nSize = size();
1020 return remove(chSymbol, nSize - 1, nSize) != npos;
1023 template<
class char_t,
class traits_t>
1028 const size_type nSize = size();
1029 const size_type nLocalStrSize = nStrSize != npos ? nStrSize : traits_t::length(pszStr);
1031 return remove(pszStr, nSize - nLocalStrSize, nSize, nLocalStrSize) != npos;
1039 template<
class char_t,
class traits_t>
1042 return remove_suffix(sStr.data(), sStr.size());
1045 template<
class char_t,
class traits_t>
1046 template<
class fwd_it_t>
1049 const size_type nSize = size();
1050 return remove(itBegin, itEnd, nSize -
static_cast<size_type
>(std::distance(itBegin, itEnd)), nSize) != npos;
1053 template<
class char_t,
class traits_t>
1054 template<range_of_t_c<
char_t>
string_t>
1057 return remove_suffix(sStr.cbegin(), sStr.cend());
1060 template<
class char_t,
class traits_t>
1062 value_type chSymbol,
1064 size_type nEnd) noexcept
1066 size_type nOccurrences = 0;
1067 size_type nLastOccurrencePos = nBegin;
1072 nLastOccurrencePos = remove(chSymbol, nLastOccurrencePos, nEnd);
1073 }
while (nLastOccurrencePos != npos);
1075 return nOccurrences - 1;
1078 template<
class char_t,
class traits_t>
1080 const_pointer pszStr,
1083 size_type nStrSize) noexcept
1087 size_type nOccurrences = 0;
1088 size_type nLastOccurrencePos = nBegin;
1093 nLastOccurrencePos = remove(pszStr, nLastOccurrencePos, nEnd, nStrSize);
1094 }
while (nLastOccurrencePos != npos);
1096 return nOccurrences - 1;
1104 template<
class char_t,
class traits_t>
1108 size_type nEnd) noexcept
1110 return remove_all(sStr.data(), nBegin, nEnd, sStr.size());
1113 template<
class char_t,
class traits_t>
1114 template<
class fwd_it_t>
1119 size_type nEnd) noexcept
1121 size_type nOccurrences = 0;
1122 size_type nLastOccurrencePos = nBegin;
1127 nLastOccurrencePos = remove(itFirst, itLast, nLastOccurrencePos, nEnd);
1128 }
while (nLastOccurrencePos != npos);
1130 return nOccurrences - 1;
1133 template<
class char_t,
class traits_t>
1134 template<range_of_t_c<
char_t>
string_t>
1136 const string_t& sStr,
1138 size_type nEnd) noexcept
1140 return remove_all(sStr.cbegin(), sStr.cend(), nBegin, nEnd);
1143 template<
class char_t,
class traits_t>
1144 template<
class find_
string_t,
class replace_
string_t>
1146 const find_string_t& sFind,
1147 const replace_string_t& sReplace,
1149 size_type nEnd) noexcept
1151 auto get_size = []<
class T>(const T& val) -> size_type
1153 if constexpr (std::is_same_v<T, value_type>)
1157 else if constexpr (std::is_same_v<T, const_pointer>)
1159 return traits_t::length(val);
1161 else if constexpr (range_of_t_c<T, char_t>)
1167 QX_STATIC_ASSERT_NO_INSTANTIATION(
"Unexpected type");
1172 auto get_data = []<
class T>(const T& val) -> const_pointer
1174 if constexpr (std::is_same_v<T, value_type>)
1178 else if constexpr (std::is_same_v<T, const_pointer>)
1182 else if constexpr (range_of_t_c<T, char_t>)
1188 QX_STATIC_ASSERT_NO_INSTANTIATION(
"Unexpected type");
1193 if (size_type nPos = find(sFind, nBegin, nEnd); nPos != npos)
1195 const size_type nStartSize = size();
1196 const size_type nFindSize = get_size(sFind);
1197 const size_type nReplaceSize = get_size(sReplace);
1198 const size_type nNewSize = nStartSize - nFindSize + nReplaceSize;
1200 _resize(nNewSize, string_resize_type::reserve);
1203 data() + nPos + nReplaceSize,
1204 data() + nPos + nFindSize,
1205 (nStartSize - nPos - nFindSize) *
sizeof(value_type));
1207 std::memcpy(data() + nPos, get_data(sReplace), nReplaceSize *
sizeof(value_type));
1211 return nPos + nReplaceSize;
1219 template<
class char_t,
class traits_t>
1220 template<
class find_
string_t,
class replace_
string_t>
1222 const find_string_t& sFind,
1223 const replace_string_t& sReplace,
1225 size_type nEnd) noexcept
1227 size_type nOccurrences = 0;
1228 size_type nPos = nBegin;
1232 nPos = replace(sFind, sReplace, nPos, nEnd);
1235 }
while (nPos != npos);
1237 return nOccurrences;
1240 template<
class char_t,
class traits_t>
1243 return compare(&chSymbol, 1);
1246 template<
class char_t,
class traits_t>
1249 return traits_t::compare(data(), pszStr);
1252 template<
class char_t,
class traits_t>
1255 return traits_t::compare_n(data(), pStr, nSymbols);
1258 template<
class char_t,
class traits_t>
1261 return compare(sStr.data(), sStr.size());
1264 template<
class char_t,
class traits_t>
1265 template<
class fwd_it_t>
1268 return iter_strcmp(cbegin(), cend(), itBegin, itEnd);
1271 template<
class char_t,
class traits_t>
1272 template<range_of_t_c<
char_t>
string_t>
1275 return compare(sStr.cbegin(), sStr.cend());
1278 template<
class char_t,
class traits_t>
1280 value_type chSymbol,
1282 size_type nEnd)
const noexcept
1287 [chSymbol](const_pointer pCurrentChar)
1289 return *pCurrentChar == chSymbol;
1293 template<
class char_t,
class traits_t>
1295 const_pointer pszWhat,
1297 size_type nWhatSize,
1298 size_type nEnd)
const noexcept
1302 const size_type nLocalWhatSize = nWhatSize != npos ? nWhatSize : traits_t::length(pszWhat);
1307 [pszWhat, nLocalWhatSize](const_pointer pCurrentChar)
1309 return !traits_t::compare_n(pszWhat, pCurrentChar, nLocalWhatSize);
1318 template<
class char_t,
class traits_t>
1322 size_type nEnd)
const noexcept
1324 return find(sWhat.data(), nBegin, sWhat.size(), nEnd);
1327 template<
class char_t,
class traits_t>
1328 template<
class fwd_it_t>
1330 fwd_it_t itWhatBegin,
1333 size_type nEnd)
const noexcept
1338 [
this, itWhatBegin, itWhatEnd, nEnd](const_pointer pCurrentChar)
1348 template<
class char_t,
class traits_t>
1349 template<range_of_t_c<
char_t>
string_t>
1353 size_type nEnd)
const noexcept
1355 return find(sWhat.cbegin(), sWhat.cend(), nBegin, nEnd);
1358 template<
class char_t,
class traits_t>
1360 value_type chSymbol,
1362 size_type nEnd)
const noexcept
1367 [chSymbol](const_pointer pCurrentChar)
1369 return *pCurrentChar == chSymbol;
1373 template<
class char_t,
class traits_t>
1375 const_pointer pszWhat,
1377 size_type nWhatSize,
1378 size_type nEnd)
const noexcept
1382 const size_type nLocalWhatSize = nWhatSize != npos ? nWhatSize : traits_t::length(pszWhat);
1387 [pszWhat, nLocalWhatSize](const_pointer pCurrentChar)
1389 return !traits_t::compare_n(pszWhat, pCurrentChar, nLocalWhatSize);
1398 template<
class char_t,
class traits_t>
1402 size_type nEnd)
const noexcept
1404 return rfind(sWhat.data(), nBegin, sWhat.size(), nEnd);
1407 template<
class char_t,
class traits_t>
1408 template<
class fwd_it_t>
1410 fwd_it_t itWhatBegin,
1413 size_type nEnd)
const noexcept
1418 [
this, itWhatBegin, itWhatEnd, nEnd](const_pointer pCurrentChar)
1421 const_iterator(
this,
static_cast<size_type
>(pCurrentChar - data())),
1428 template<
class char_t,
class traits_t>
1429 template<range_of_t_c<
char_t>
string_t>
1433 size_type nEnd)
const noexcept
1435 return rfind(sWhat.cbegin(), sWhat.cend(), nBegin, nEnd);
1438 template<
class char_t,
class traits_t>
1440 value_type chSymbol,
1441 size_type nBegin)
const noexcept
1443 return find(chSymbol, nBegin);
1446 template<
class char_t,
class traits_t>
1448 const_pointer pszWhat,
1450 size_type nWhatSize)
const noexcept
1454 return _find_first_of(
1456 pszWhat + nWhatSize,
1458 [](const_pointer pChar)
1469 template<
class char_t,
class traits_t>
1471 const_pointer pszWhat,
1472 size_type nBegin)
const noexcept
1476 return _find_first_of(
1478 static_cast<const_pointer
>(
nullptr),
1480 [](const_pointer pChar)
1482 return *(pChar + 1) !=
QX_CHAR_PREFIX(value_type,
'\0') ? pChar + 1 :
nullptr;
1491 template<
class char_t,
class traits_t>
1494 size_type nBegin)
const noexcept
1496 return find_first_of(sWhat.data(), nBegin, sWhat.size());
1499 template<
class char_t,
class traits_t>
1500 template<
class fwd_it_t>
1502 fwd_it_t itWhatBegin,
1504 size_type nBegin)
const noexcept
1506 return _find_first_of(
1516 template<
class char_t,
class traits_t>
1517 template<range_of_t_c<
char_t>
string_t>
1520 size_type nBegin)
const noexcept
1522 return find_first_of(sWhat.cbegin(), sWhat.cend(), nBegin);
1525 template<
class char_t,
class traits_t>
1527 value_type chSymbol,
1528 size_type nEnd)
const noexcept
1530 return rfind(chSymbol, npos, nEnd);
1533 template<
class char_t,
class traits_t>
1535 const_pointer pszWhat,
1537 size_type nWhatSize)
const noexcept
1541 return _find_last_of(
1543 pszWhat + nWhatSize,
1545 [](const_pointer pChar)
1556 template<
class char_t,
class traits_t>
1558 const_pointer pszWhat,
1559 size_type nEnd)
const noexcept
1563 return _find_last_of(
1565 static_cast<const_pointer
>(
nullptr),
1567 [](const_pointer pChar)
1569 return *(pChar + 1) !=
QX_CHAR_PREFIX(value_type,
'\0') ? pChar + 1 :
nullptr;
1578 template<
class char_t,
class traits_t>
1581 size_type nEnd)
const noexcept
1583 return find_last_of(sWhat.data(), nEnd, sWhat.size());
1586 template<
class char_t,
class traits_t>
1587 template<
class fwd_it_t>
1589 fwd_it_t itWhatBegin,
1591 size_type nEnd)
const noexcept
1593 return _find_last_of(
1603 template<
class char_t,
class traits_t>
1604 template<range_of_t_c<
char_t>
string_t>
1607 size_type nEnd)
const noexcept
1609 return find_last_of(sWhat.cbegin(), sWhat.cend(), nEnd);
1612 template<
class char_t,
class traits_t>
1614 value_type chSymbol,
1615 size_type nBegin)
const noexcept
1620 [chSymbol](const_pointer pCurrentChar)
1622 return *pCurrentChar != chSymbol;
1626 template<
class char_t,
class traits_t>
1628 const_pointer pszWhat,
1630 size_type nWhatSize)
const noexcept
1634 return _find_first_not_of(
1636 pszWhat + nWhatSize,
1638 [](const_pointer pChar)
1649 template<
class char_t,
class traits_t>
1651 const_pointer pszWhat,
1652 size_type nBegin)
const noexcept
1656 return _find_first_not_of(
1658 static_cast<const_pointer
>(
nullptr),
1660 [](const_pointer pChar)
1662 return *(pChar + 1) !=
QX_CHAR_PREFIX(value_type,
'\0') ? pChar + 1 :
nullptr;
1671 template<
class char_t,
class traits_t>
1674 size_type nBegin)
const noexcept
1676 return find_first_not_of(sWhat.data(), nBegin, sWhat.size());
1679 template<
class char_t,
class traits_t>
1680 template<
class fwd_it_t>
1682 fwd_it_t itWhatBegin,
1684 size_type nBegin)
const noexcept
1686 return _find_first_not_of(
1696 template<
class char_t,
class traits_t>
1697 template<range_of_t_c<
char_t>
string_t>
1700 size_type nBegin)
const noexcept
1702 return find_first_not_of(sWhat.cbegin(), sWhat.cend(), nBegin);
1705 template<
class char_t,
class traits_t>
1707 value_type chSymbol,
1708 size_type nEnd)
const noexcept
1713 [chSymbol](const_pointer pCurrentChar)
1715 return *pCurrentChar != chSymbol;
1719 template<
class char_t,
class traits_t>
1721 const_pointer pszWhat,
1723 size_type nWhatSize)
const noexcept
1727 return _find_last_not_of(
1729 pszWhat + nWhatSize,
1731 [](const_pointer pChar)
1742 template<
class char_t,
class traits_t>
1744 const_pointer pszWhat,
1745 size_type nEnd)
const noexcept
1749 return _find_last_not_of(
1751 static_cast<const_pointer
>(
nullptr),
1753 [](const_pointer pChar)
1755 return *(pChar + 1) !=
QX_CHAR_PREFIX(value_type,
'\0') ? pChar + 1 :
nullptr;
1764 template<
class char_t,
class traits_t>
1767 size_type nEnd)
const noexcept
1769 return find_last_not_of(sWhat.data(), nEnd, sWhat.size());
1772 template<
class char_t,
class traits_t>
1773 template<
class fwd_it_t>
1775 fwd_it_t itWhatBegin,
1777 size_type nEnd)
const noexcept
1779 return _find_last_not_of(
1789 template<
class char_t,
class traits_t>
1790 template<range_of_t_c<
char_t>
string_t>
1793 size_type nEnd)
const noexcept
1795 return find_last_not_of(sWhat.cbegin(), sWhat.cend(), nEnd);
1798 template<
class char_t,
class traits_t>
1800 const value_type chSeparator)
const noexcept
1804 size_type nStart = 0;
1806 while ((nEnd = find(chSeparator, nStart)) != npos)
1808 tokens.emplace_back(substr(nStart, nEnd - nStart));
1810 while (traits_t::compare_n(data() + nStart, &chSeparator, 1) == 0)
1814 if (nStart != size())
1815 tokens.emplace_back(substr(nStart));
1817 return std::move(tokens);
1820 template<
class char_t,
class traits_t>
1822 const_pointer pszSeparator,
1823 size_type nSepLen)
const noexcept
1830 if (nSepLen == npos)
1831 nSepLen = traits_t::length(pszSeparator);
1833 size_type nStart = 0;
1835 while ((nEnd = find(pszSeparator, nStart, nSepLen, npos)) != npos)
1837 tokens.emplace_back(substr(nStart, nEnd - nStart));
1839 while (traits_t::compare_n(data() + nStart, pszSeparator, nSepLen) == 0)
1843 if (nStart != size())
1844 tokens.emplace_back(substr(nStart));
1849 template<
class char_t,
class traits_t>
1853 return split(sSeparator.data(), sSeparator.size());
1856 template<
class char_t,
class traits_t>
1857 template<
class fwd_it_t>
1859 fwd_it_t itSepFirst,
1860 fwd_it_t itSepLast)
const noexcept
1864 const size_type nSepLen =
static_cast<size_type
>(std::distance(itSepFirst, itSepLast));
1866 size_type nStart = 0;
1868 while ((nEnd = find(itSepFirst, itSepLast, nStart)) != npos)
1870 tokens.emplace_back(substr(nStart, nEnd - nStart));
1871 nStart = nEnd + nSepLen;
1873 tokens.emplace_back(substr(nStart));
1878 template<
class char_t,
class traits_t>
1879 template<range_of_t_c<
char_t>
string_t>
1881 const string_t& sSeparator)
const noexcept
1883 return split(sSeparator.cbegin(), sSeparator.cend());
1886 template<
class char_t,
class traits_t>
1890 return at(0) == chSymbol;
1895 template<
class char_t,
class traits_t>
1900 if (size_type nThisSize = size(); nThisSize > 0)
1902 if (nStrSize == npos)
1903 nStrSize = traits_t::length(pszStr);
1905 if (nStrSize <= nThisSize)
1906 return traits_t::compare_n(data(), pszStr, nStrSize) == 0;
1913 template<
class char_t,
class traits_t>
1916 return starts_with(sStr.data(), sStr.size());
1919 template<
class char_t,
class traits_t>
1920 template<
class fwd_it_t>
1923 auto nStrSize = std::distance(itBegin, itEnd);
1924 return iter_strcmp(cbegin(), cbegin() +
static_cast<size_type
>(nStrSize), itBegin, itEnd) == 0;
1927 template<
class char_t,
class traits_t>
1928 template<range_of_t_c<
char_t>
string_t>
1931 return starts_with(sStr.cbegin(), sStr.cend());
1934 template<
class char_t,
class traits_t>
1937 const size_type nSize = size();
1939 return at(nSize - 1) == chSymbol;
1944 template<
class char_t,
class traits_t>
1949 if (size_type nThisSize = size(); nThisSize > 0)
1951 if (nStrSize == npos)
1952 nStrSize = traits_t::length(pszStr);
1954 if (nStrSize <= nThisSize)
1955 return traits_t::compare_n(data() + nThisSize - nStrSize, pszStr, nStrSize) == 0;
1962 template<
class char_t,
class traits_t>
1965 return ends_with(sStr.data(), sStr.size());
1968 template<
class char_t,
class traits_t>
1969 template<
class fwd_it_t>
1972 return iter_strcmp(cend() -
static_cast<size_type
>(std::distance(itBegin, itEnd)), cend(), itBegin, itEnd) == 0;
1975 template<
class char_t,
class traits_t>
1976 template<range_of_t_c<
char_t>
string_t>
1979 return ends_with(sStr.cbegin(), sStr.cend());
1982 template<
class char_t,
class traits_t>
1985 return find(chSymbol) != npos;
1988 template<
class char_t,
class traits_t>
1991 return find(pszStr, 0, nStrSize) != npos;
1994 template<
class char_t,
class traits_t>
1997 return find(sStr) != npos;
2000 template<
class char_t,
class traits_t>
2001 template<
class fwd_it_t>
2004 return find(itBegin, itEnd) != npos;
2007 template<
class char_t,
class traits_t>
2008 template<range_of_t_c<
char_t>
string_t>
2011 return find(sStr) != npos;
2014 template<
class char_t,
class traits_t>
2021 template<
class char_t,
class traits_t>
2022 inline basic_string<char_t, traits_t>& basic_string<char_t, traits_t>::operator=(basic_string&& sStr) noexcept
2024 assign(std::move(sStr));
2028 template<
class char_t,
class traits_t>
2029 inline basic_string<char_t, traits_t>& basic_string<char_t, traits_t>::operator=(
const basic_string& sStr) noexcept
2035 template<
class char_t,
class traits_t>
2036 template<range_of_t_c<
char_t>
string_t>
2037 inline basic_string<char_t, traits_t>& basic_string<char_t, traits_t>::operator=(
const string_t& sStr) noexcept
2043 template<
class char_t,
class traits_t>
2044 inline basic_string<char_t, traits_t>& basic_string<char_t, traits_t>::operator+=(value_type chSymbol) noexcept
2050 template<
class char_t,
class traits_t>
2051 inline basic_string<char_t, traits_t>& basic_string<char_t, traits_t>::operator+=(const_pointer pszSource) noexcept
2054 append(pszSource, traits_t::length(pszSource));
2059 template<
class char_t,
class traits_t>
2060 inline basic_string<char_t, traits_t>& basic_string<char_t, traits_t>::operator+=(
const basic_string& sStr) noexcept
2062 append(sStr.data(), sStr.size());
2066 template<
class char_t,
class traits_t>
2067 template<range_of_t_c<
char_t>
string_t>
2068 inline basic_string<char_t, traits_t>& basic_string<char_t, traits_t>::operator+=(
const string_t& sStr) noexcept
2070 append(sStr.cbegin(), sStr.cend());
2074 template<
class char_t,
class traits_t>
2075 inline bool basic_string<char_t, traits_t>::operator==(value_type chSymbol)
const noexcept
2077 return size() == 1 && at(0) == chSymbol;
2080 template<
class char_t,
class traits_t>
2081 inline bool basic_string<char_t, traits_t>::operator==(const_pointer pszSource)
const noexcept
2083 return compare(pszSource) == 0;
2086 template<
class char_t,
class traits_t>
2087 inline bool basic_string<char_t, traits_t>::operator==(
const basic_string& sStr)
const noexcept
2089 return size() == sStr.size() && compare(sStr.data(), sStr.size()) == 0;
2092 template<
class char_t,
class traits_t>
2093 template<range_of_t_c<
char_t>
string_t>
2094 inline bool basic_string<char_t, traits_t>::operator==(
const string_t& sStr)
const noexcept
2096 return iter_strcmp(cbegin(), cend(), sStr.cbegin(), sStr.cend()) == 0;
2099 template<
class char_t,
class traits_t>
2100 inline bool basic_string<char_t, traits_t>::operator!=(value_type chSymbol)
const noexcept
2102 return !operator==(chSymbol);
2105 template<
class char_t,
class traits_t>
2106 inline bool basic_string<char_t, traits_t>::operator!=(const_pointer pszSource)
const noexcept
2108 return !operator==(pszSource);
2111 template<
class char_t,
class traits_t>
2112 inline bool basic_string<char_t, traits_t>::operator!=(
const basic_string& sStr)
const noexcept
2114 return !operator==(sStr);
2117 template<
class char_t,
class traits_t>
2118 template<range_of_t_c<
char_t>
string_t>
2119 inline bool basic_string<char_t, traits_t>::operator!=(
const string_t& sStr)
const noexcept
2121 return !operator==(sStr);
2124 template<
class char_t,
class traits_t>
2125 inline bool basic_string<char_t, traits_t>::operator<(value_type chSymbol)
const noexcept
2127 return compare(&chSymbol, 1) < 0;
2130 template<
class char_t,
class traits_t>
2131 inline bool basic_string<char_t, traits_t>::operator<(const_pointer pszSource)
const noexcept
2133 return compare(pszSource) < 0;
2136 template<
class char_t,
class traits_t>
2137 inline bool basic_string<char_t, traits_t>::operator<(
const basic_string& sStr)
const noexcept
2139 return compare(sStr.data(), sStr.size()) < 0;
2142 template<
class char_t,
class traits_t>
2143 template<range_of_t_c<
char_t>
string_t>
2144 inline bool basic_string<char_t, traits_t>::operator<(
const string_t& sStr)
const noexcept
2146 return iter_strcmp(cbegin(), cend(), sStr.cbegin(), sStr.cend()) < 0;
2149 template<
class char_t,
class traits_t>
2150 inline bool basic_string<char_t, traits_t>::operator<=(value_type chSymbol)
const noexcept
2152 return compare(&chSymbol, 1) <= 0;
2155 template<
class char_t,
class traits_t>
2156 inline bool basic_string<char_t, traits_t>::operator<=(const_pointer pszSource)
const noexcept
2158 return compare(pszSource) <= 0;
2161 template<
class char_t,
class traits_t>
2162 inline bool basic_string<char_t, traits_t>::operator<=(
const basic_string& sStr)
const noexcept
2164 return compare(sStr.data(), sStr.size()) <= 0;
2167 template<
class char_t,
class traits_t>
2168 template<range_of_t_c<
char_t>
string_t>
2169 inline bool basic_string<char_t, traits_t>::operator<=(
const string_t& sStr)
const noexcept
2171 return iter_strcmp(cbegin(), cend(), sStr.cbegin(), sStr.cend()) <= 0;
2174 template<
class char_t,
class traits_t>
2175 inline bool basic_string<char_t, traits_t>::operator>(value_type chSymbol)
const noexcept
2177 return compare(&chSymbol, 1) > 0;
2180 template<
class char_t,
class traits_t>
2181 inline bool basic_string<char_t, traits_t>::operator>(const_pointer pszSource)
const noexcept
2183 return compare(pszSource) > 0;
2186 template<
class char_t,
class traits_t>
2187 inline bool basic_string<char_t, traits_t>::operator>(
const basic_string& sStr)
const noexcept
2189 return compare(sStr.data(), sStr.size()) > 0;
2192 template<
class char_t,
class traits_t>
2193 template<range_of_t_c<
char_t>
string_t>
2194 inline bool basic_string<char_t, traits_t>::operator>(
const string_t& sStr)
const noexcept
2196 return iter_strcmp(cbegin(), cend(), sStr.cbegin(), sStr.cend()) > 0;
2199 template<
class char_t,
class traits_t>
2200 inline bool basic_string<char_t, traits_t>::operator>=(value_type chSymbol)
const noexcept
2202 return compare(&chSymbol, 1) >= 0;
2205 template<
class char_t,
class traits_t>
2206 inline bool basic_string<char_t, traits_t>::operator>=(const_pointer pszSource)
const noexcept
2208 return compare(pszSource) >= 0;
2211 template<
class char_t,
class traits_t>
2212 inline bool basic_string<char_t, traits_t>::operator>=(
const basic_string& sStr)
const noexcept
2214 return compare(sStr.data(), sStr.size()) >= 0;
2217 template<
class char_t,
class traits_t>
2218 template<range_of_t_c<
char_t>
string_t>
2219 inline bool basic_string<char_t, traits_t>::operator>=(
const string_t& sStr)
const noexcept
2221 return iter_strcmp(cbegin(), cend(), sStr.cbegin(), sStr.cend()) >= 0;
2224 template<
class char_t,
class traits_t>
2225 inline typename basic_string<char_t, traits_t>::reference basic_string<char_t, traits_t>::operator[](
2226 size_type nSymbol) noexcept
2231 template<
class char_t,
class traits_t>
2232 inline typename basic_string<char_t, traits_t>::const_reference basic_string<char_t, traits_t>::operator[](
2233 size_type nSymbol)
const noexcept
2238 template<
class char_t,
class traits_t>
2239 inline basic_string<char_t, traits_t>::operator std::basic_string_view<
2240 typename basic_string<char_t, traits_t>::value_type>()
const noexcept
2242 return string_view(data(), size());
2245 template<
class char_t,
class traits_t>
2246 inline basic_string<char_t, traits_t>::operator bool() const noexcept
2251 template<
class char_t,
class traits_t>
2252 inline bool basic_string<char_t, traits_t>::_resize(size_type nSymbols, string_resize_type eType) noexcept
2255 m_Data.resize(nSymbols, eType == string_resize_type::shrink_to_fit ? 0 : traits_t::align(), eType);
2257 if (bRet && eType == string_resize_type::common)
2258 at(nSymbols) =
QX_CHAR_PREFIX(
typename traits_t::value_type,
'\0');
2263 template<
class char_t,
class traits_t>
2264 template<
class searcher_t>
2265 inline typename basic_string<char_t, traits_t>::size_type basic_string<char_t, traits_t>::_trim_left(
2266 const searcher_t& searcher) noexcept
2268 size_type nSymbols = 0;
2270 for (size_type i = 0; i < size(); ++i)
2272 if (searcher(at(i)))
2282 template<
class char_t,
class traits_t>
2283 template<
class searcher_t>
2284 inline typename basic_string<char_t, traits_t>::size_type basic_string<char_t, traits_t>::_trim_right(
2285 const searcher_t& searcher) noexcept
2287 size_type nSymbols = 0;
2288 size_type nSize = size();
2290 for (size_type i = nSize - 1; i != std::numeric_limits<size_type>::max(); --i)
2292 if (searcher(at(i)))
2298 erase(nSize - nSymbols, nSymbols);
2302 template<
class char_t,
class traits_t>
2303 template<
class searcher_t>
2304 inline typename basic_string<char_t, traits_t>::size_type basic_string<char_t, traits_t>::_trim(
2305 const searcher_t& searcher) noexcept
2307 const size_type nSize = size();
2308 size_type nStartPos = 0;
2309 size_type nEndPos = nSize;
2311 while (nStartPos < nSize && searcher(at(nStartPos)))
2314 while (nEndPos > nStartPos && searcher(at(nEndPos - 1)))
2317 size_type nNewSize = nEndPos - nStartPos;
2319 std::memmove(data(), data() + nStartPos, nNewSize *
sizeof(value_type));
2322 return nSize - nNewSize;
2325 template<
class char_t,
class traits_t>
2326 template<
class comparator_t>
2327 inline typename basic_string<char_t, traits_t>::size_type basic_string<char_t, traits_t>::_find(
2330 const comparator_t& comparator)
const noexcept
2335 const_pointer pData = data();
2336 const_pointer pCurrentChar = pData + nBegin;
2337 const_pointer pEnd = pData + nEnd;
2339 while (pCurrentChar < pEnd)
2341 if (comparator(pCurrentChar))
2342 return static_cast<size_type
>(pCurrentChar - pData);
2350 template<
class char_t,
class traits_t>
2351 template<
class comparator_t>
2352 inline typename basic_string<char_t, traits_t>::size_type basic_string<char_t, traits_t>::_rfind(
2355 const comparator_t& comparator)
const noexcept
2358 nBegin = size() - 1;
2360 const_pointer pData = data();
2361 const_pointer pCurrentChar = pData + nBegin;
2362 const_pointer pEnd = pData + nEnd;
2364 while (pCurrentChar >= pEnd)
2366 if (comparator(pCurrentChar))
2367 return static_cast<size_type
>(pCurrentChar - pData);
2375 template<
class char_t,
class traits_t>
2376 template<
class incrementer_t,
class fwd_it_t>
2377 inline typename basic_string<char_t, traits_t>::size_type basic_string<char_t, traits_t>::_find_first_of(
2381 const incrementer_t& incrementer)
const noexcept
2383 for (size_type i = nBegin; i < size(); ++i)
2384 for (fwd_it_t it = itBegin; it != itEnd; it = incrementer(it))
2391 template<
class char_t,
class traits_t>
2392 template<
class incrementer_t,
class fwd_it_t>
2393 inline typename basic_string<char_t, traits_t>::size_type basic_string<char_t, traits_t>::_find_last_of(
2397 const incrementer_t& incrementer)
const noexcept
2399 for (size_type i = size() - 1; i != nEnd - 1; --i)
2400 for (fwd_it_t it = itBegin; it != itEnd; it = incrementer(it))
2407 template<
class char_t,
class traits_t>
2408 template<
class incrementer_t,
class fwd_it_t>
2409 inline typename basic_string<char_t, traits_t>::size_type basic_string<char_t, traits_t>::_find_first_not_of(
2413 const incrementer_t& incrementer)
const noexcept
2415 for (size_type i = nBegin; i < size(); ++i)
2417 bool bFoundOneOf =
false;
2418 for (fwd_it_t it = itBegin; !bFoundOneOf && it != itEnd; it = incrementer(it))
2419 bFoundOneOf |= *it == at(i);
2428 template<
class char_t,
class traits_t>
2429 template<
class incrementer_t,
class fwd_it_t>
2430 inline typename basic_string<char_t, traits_t>::size_type basic_string<char_t, traits_t>::_find_last_not_of(
2434 const incrementer_t& incrementer)
const noexcept
2436 for (size_type i = size() - 1; i != nEnd - 1; --i)
2438 bool bFoundOneOf =
false;
2439 for (fwd_it_t it = itBegin; !bFoundOneOf && it != itEnd; it = incrementer(it))
2440 bFoundOneOf |= *it == at(i);
2449 template<
class char_t,
class traits_t>
2450 basic_string<char_t, traits_t> operator+(
2451 const basic_string<char_t, traits_t>& lhs,
2452 const basic_string<char_t, traits_t>& rhs) noexcept
2454 basic_string<char_t, traits_t> str(lhs);
2459 template<
class char_t,
class traits_t>
2460 basic_string<char_t, traits_t> operator+(
2461 basic_string<char_t, traits_t>&& lhs,
2462 const basic_string<char_t, traits_t>& rhs) noexcept
2464 basic_string<char_t, traits_t> str(std::move(lhs));
2469 template<
class char_t,
class traits_t>
2470 basic_string<char_t, traits_t> operator+(
2471 const basic_string<char_t, traits_t>& lhs,
2472 typename traits_t::const_pointer rhs) noexcept
2474 basic_string<char_t, traits_t> str(lhs);
2479 template<
class char_t,
class traits_t>
2480 basic_string<char_t, traits_t> operator+(
2481 basic_string<char_t, traits_t>&& lhs,
2482 typename traits_t::const_pointer rhs) noexcept
2484 basic_string<char_t, traits_t> str(std::move(lhs));
2489 template<
class char_t,
class traits_t>
2490 basic_string<char_t, traits_t> operator+(
2491 typename traits_t::const_pointer lhs,
2492 const basic_string<char_t, traits_t>& rhs) noexcept
2494 basic_string<char_t, traits_t> str(lhs);
2499 template<
class char_t,
class traits_t>
2500 basic_string<char_t, traits_t> operator+(
2501 const basic_string<char_t, traits_t>& lhs,
2502 typename traits_t::value_type rhs) noexcept
2504 basic_string<char_t, traits_t> str(lhs);
2509 template<
class char_t,
class traits_t>
2510 basic_string<char_t, traits_t> operator+(
2511 basic_string<char_t, traits_t>&& lhs,
2512 typename traits_t::value_type rhs) noexcept
2514 basic_string<char_t, traits_t> str(std::move(lhs));
2519 template<
class char_t,
class traits_t>
2520 basic_string<char_t, traits_t> operator+(
2521 typename traits_t::value_type lhs,
2522 const basic_string<char_t, traits_t>& rhs) noexcept
2524 basic_string<char_t, traits_t> str(&lhs, 1);
2529 template<
class char_t,
class traits_t, range_of_t_c<
char_t>
string_t>
2530 basic_string<char_t, traits_t> operator+(
const basic_string<char_t, traits_t>& lhs,
const string_t& rhs) noexcept
2532 basic_string<char_t, traits_t> str(lhs);
2537 template<
class char_t,
class traits_t, range_of_t_c<
char_t>
string_t>
2538 basic_string<char_t, traits_t> operator+(basic_string<char_t, traits_t>&& lhs,
const string_t& rhs) noexcept
2540 basic_string<char_t, traits_t> str(std::move(lhs));
2545 template<
class char_t,
class traits_t, range_of_t_c<
char_t>
string_t>
2546 basic_string<char_t, traits_t> operator+(
const string_t& lhs,
const basic_string<char_t, traits_t>& rhs) noexcept
2548 basic_string<char_t, traits_t> str(lhs);
2557 template<
class char_t,
class traits_t>
2558 inline typename basic_string<char_t, traits_t>::size_type basic_string<char_t, traits_t>::size() const noexcept
2560 return m_Data.size();
2567 template<
class char_t,
class traits_t>
2568 inline typename basic_string<char_t, traits_t>::pointer basic_string<char_t, traits_t>::data() noexcept
2570 return m_Data.data();
2578 template<
class char_t,
class traits_t>
2579 inline typename basic_string<char_t, traits_t>::reference basic_string<char_t, traits_t>::at(size_type nIndex) noexcept
2581 return data()[nIndex];
2587 template<
class char_t,
class traits_t>
2588 inline void basic_string<char_t, traits_t>::clear() noexcept
2602 template<
class char_t,
class traits_t>
2603 struct hash<qx::basic_string<char_t, traits_t>>
2607 return traits_t::hash_function(str.data(), traits_t::hash_seed(), str.size());
2613 template<
class char_t,
class traits_t>
2621 template<
class char_t,
class traits_t>
2624 template<
class format_context_type>
2636 template<
class char_t,
class traits_t>
2637 qx::details::ostream<char_t>& operator<<(
2638 qx::details::ostream<char_t>& os,
2645 template<
class char_t,
class traits_t>
2648 typename qx::details::istream<traits_t>::iostate ret_bit = qx::details::istream<traits_t>::goodbit;
2650 auto try_push_back = [&str, &is, &ret_bit](char_t ch)
2652 typename traits_t::size_type nCurrentSize = str.size();
2653 if (str._resize(nCurrentSize + 1))
2655 str[nCurrentSize] = ch;
2661 ret_bit |= qx::details::istream<traits_t>::failbit;
2672 if (!traits_t::is_space(ch))
2682 if (!traits_t::is_space(ch))
2684 if (!try_push_back(ch))
2694 is.setstate(ret_bit);
void push_back(value_type chSymbol) noexcept
Insert char in the end of the string.
void erase(iterator itFirst, iterator itLast) noexcept
Erase substring.
size_type find(value_type chSymbol, size_type nBegin=0, size_type nEnd=npos) const noexcept
Find substring.
bool remove_prefix(value_type chSymbol) noexcept
Remove string prefix if matches.
requires format_acceptable_args< char_t, args_t... > void append_format(format_string_type< args_t... > sFormat, const args_t &... args)
Append the formatted string to the current one.
size_type remove_all(value_type chSymbol, size_type nBegin=0, size_type nEnd=npos) noexcept
Remove all occurrences of a substring in a string.
std::optional< to_t > to(const_pointer pszFormat=nullptr) const noexcept
Convert string to specified type.
int compare(value_type chSymbol) const noexcept
Performs a binary comparison of the characters.
requires format_acceptable_args< char_t, args_t... > void append_vformat(string_view svFormat, const args_t &... args)
Append the formatted string to the current one.
size_type find_last_of(value_type chSymbol, size_type nEnd=0) const noexcept
Find last position of character.
requires static format_acceptable_args< char_t, args_t... > basic_string static_vformat(string_view svFormat, const args_t &... args)
Create a string by formatting it with the format string and the args.
void push_front(value_type chSymbol) noexcept
Insert char in the beginning of the string.
size_type capacity() const noexcept
Get allocated memory size (including null terminator)
value_type pop_back() noexcept
Erase last char and return it.
size_type copy(pointer pDest, size_type nCount, size_type nPos=0) const noexcept
Copies a substring [nPos, nPos + nCount) to character string pointed to by pDest.
views split(const value_type chSeparator) const noexcept
Split string by separator.
size_type rfind(value_type chSymbol, size_type nBegin=npos, size_type nEnd=0) const noexcept
Find substring (reverse direction)
size_type length() const noexcept
Get string length.
void free() noexcept
Clear string and free allocated memory.
void from(const from_t &data)
Construct string from custom type.
size_type trim_right() noexcept
Trim the string to the right (whitespace characters)
void assign(size_type nSymbols, value_type chSymbol) noexcept
Assign by filling.
size_type replace_all(const find_string_t &sFind, const replace_string_t &sReplace, size_type nBegin=0, size_type nEnd=npos) noexcept
Replace all occurrences of sFind with sReplace.
bool ends_with(value_type chSymbol) const noexcept
Check if current string ends with char.
void swap(basic_string &sOther) noexcept
Swap this str and other.
value_type pop_front() noexcept
Erase first char and return it.
void append(value_type chSymbol) noexcept
Append char.
bool contains(value_type chSymbol) const noexcept
Check if string contains char.
size_type trim() noexcept
Trim the string to the both sides (whitespace characters)
void to_upper() noexcept
Convert string to uppercase.
void shrink_to_fit() noexcept
Fit allocated size to string's actual size.
static basic_string static_from(const from_t &data)
Construct string from custom type and get it.
requires static format_acceptable_args< char_t, args_t... > basic_string static_format(format_string_type< args_t... > sFormat, const args_t &... args)
Create a string by formatting it with the format string and the args.
size_type replace(const find_string_t &sFind, const replace_string_t &sReplace, size_type nBegin=0, size_type nEnd=npos) noexcept
Replace first occurrence of sFind with sReplace.
size_type find_last_not_of(value_type chSymbol, size_type nEnd=0) const noexcept
Finds the last character not equal to chSymbol.
size_type trim_left() noexcept
Trim the string to the left (whitespace characters)
size_type reserve(size_type nCapacity) noexcept
Reserve memory for the string.
string_view substr(size_type nPos, size_type nSymbols=npos) const noexcept
Get substring.
void to_lower() noexcept
Convert string to lowercase.
requires format_acceptable_args< char_t, args_t... > void format(format_string_type< args_t... > sFormat, const args_t &... args)
Clear the string and format it with the format string and the args.
size_type insert(size_type nPos, value_type chSymbol) noexcept
Insert substring.
bool remove_suffix(value_type chSymbol) noexcept
Remove string suffix if matches.
const_pointer c_str() const noexcept
Get pointer to string zero terminated.
size_type remove(value_type chSymbol, size_type nBegin=0, size_type nEnd=npos) noexcept
Remove the first occurrence of a substring in a string.
static constexpr size_type max_size() noexcept
Get the theoretical maximum of string size.
bool starts_with(value_type chSymbol) const noexcept
Check if current string starts with char.
value_type front() const noexcept
Get first char of the string.
value_type back() const noexcept
Get last char of the string.
size_type find_first_of(value_type chSymbol, size_type nBegin=0) const noexcept
Find first position of character.
requires format_acceptable_args< char_t, args_t... > void vformat(string_view svFormat, const args_t &... args)
Clear the string and format it with the format string and the args.
size_type find_first_not_of(value_type chSymbol, size_type nBegin=0) const noexcept
Finds the first character not equal to chSymbol.
Const random access iterator type.
Non-const random access iterator type.
#define QX_CHAR_PREFIX(value_t, ch)
Chose witch of prefixes add to char : L or none.
constexpr int iter_strcmp(fwd_it_1_t itBegin1, fwd_it_1_t itEnd1, fwd_it_2_t itBegin2, fwd_it_2_t itEnd2) noexcept
Compares string 1 with string 2.
#define QX_STR_PREFIX(value_t, str)
Chose witch of prefixes add to string : L or none.