You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,13 +132,13 @@ The following table presents simplified, short prototypes of the functions in _s
132
132
| | string **replace_first**(string_view sv, string_view what, string_view with) | string with first occurrence of 'what' replaced with 'with' |
133
133
| | string **replace_last**(string_view sv, string_view what, string_view with) | string with last occurrence of 'what' replaced with 'with' |
134
134
| | | |
135
-
|**Combining**| string **append**(string_view front, string_view tail) | string with tail appended to front|
135
+
|**Combining**| string **append**(string_view head, string_view tail) | string with tail appended to head|
136
136
| | string **join**(collection\<string_view\> vec, string_view sep) | string with elements of collection joined with given separator string |
137
137
| | vector\<string_view\>**split**(string_view sv, string_view set) | vector of string_view with elements of string separated by characters from given set |
138
-
| | tuple\<string_view, string_view\>**split_left**(string_view sv, Delimiter delim) | tuple with front and tail string_view on given string as split at left by given delimiter |
139
-
| | tuple\<string_view, string_view\>**split_right**(string_view sv, Delimiter delim) | tuple with front and tail string_view on given string as split at right by given delimiter |
140
-
| | tuple\<string_view, string_view\>**split_left**(string_view sv, string_view set) | tuple with front and tail string_view on given string as split at left by characters in given set |
141
-
| | tuple\<string_view, string_view\>**split_right**(string_view sv, string_view set) | tuple with front and tail string_view on given string as split at right by characters in given set |
138
+
| | tuple\<string_view, string_view\>**split_left**(string_view sv, Delimiter delim) | tuple with head and tail string_view on given string as split at left by given delimiter |
139
+
| | tuple\<string_view, string_view\>**split_right**(string_view sv, Delimiter delim) | tuple with head and tail string_view on given string as split at right by given delimiter |
140
+
| | tuple\<string_view, string_view\>**split_left**(string_view sv, string_view set) | tuple with head and tail string_view on given string as split at left by characters in given set |
141
+
| | tuple\<string_view, string_view\>**split_right**(string_view sv, string_view set) | tuple with head and tail string_view on given string as split at right by characters in given set |
142
142
143
143
<aid="note-1"></a>Note 1: npos: `nonstd::string::std17::string_view::npos`; TODO: provide `nonstd::string::npos`.
0 commit comments