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
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -174,8 +174,6 @@ The following table presents types, values and simplified, short prototypes of t
174
174
| | string **join**(collection\<string_view\> vec, string_view sep) | string with elements of collection joined with given separator string |
175
175
| | | |
176
176
|**Separating**| vector\<string_view\>**split**(string_view sv, string_view set) | vector of string_view with elements of string separated by characters from given set |
177
-
| | 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 |
178
-
| | 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 |
179
177
| | 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 |
180
178
| | 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 |
181
179
@@ -284,8 +282,8 @@ strip_right: string with characters in set removed from right of string [" \t\n"
284
282
strip: string with characters in set removed from left and right of string [" \t\n"]
285
283
join: string with strings from collection joined separated by given separator
286
284
split: split string into vector of string_view given delimiter - literal_delimiter
287
-
split_left: split string into two-element tuple given delimiter - forward - literal_delimiter
288
-
split_right: split string into two-element tuple given delimiter - reverse - literal_delimiter[TODO]
285
+
split_left: split string into two-element tuple given set of delimiter characters - forward
286
+
split_right: split string into two-element tuple given set of delimiter characters - reverse
289
287
compare: negative, zero or positive for lsh is less than, equal to or greater than rhs
290
288
operator==(): true if lhs string is equal to rhs string
291
289
operator!=(): true if lhs string is not equal to rhs string
0 commit comments