Skip to content

Commit 3b4d1f5

Browse files
committed
Add starts_with_all_of(), starts_with_any_of(), starts_with_none_of()
1 parent 04f01e1 commit 3b4d1f5

File tree

3 files changed

+308
-215
lines changed

3 files changed

+308
-215
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,9 @@ The following table presents types, values and simplified, short prototypes of t
121121
|   | bool **contains_none_of**(string_view sv, string_view set) | true if string contains no character of set |
122122
|   |   |   |
123123
|  starts_with | bool **starts_with**(string_view sv, string_view what) | true if string starts with given string |
124+
|   | bool **starts_with_all_of**(string_view sv, string_view set) | true if string starts with all characters of set |
125+
|   | bool **starts_with_any_of**(string_view sv, string_view set) | true if string starts with any character of set |
126+
|   | bool **starts_with_none_of**(string_view sv, string_view set) | true if string starts with no character of set |
124127
|   |   |   |
125128
|  ends_with | bool **ends_with**(string_view sv, string_view what) | true if string ends with given string |
126129
|   |   |   |

0 commit comments

Comments
 (0)