diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2024-11-11 12:28:09 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2024-11-11 12:28:09 +0100 |
commit | cb001bb8056869f98e9a62248bdd509a69d08faf (patch) | |
tree | ec5e83ac39e4e5cec0ab9494da2d0edaafe72d89 /src/util | |
parent | 1bbf886bafc680c56ddd5e27ddd803b4e03685df (diff) | |
parent | 5b7b3b1dfd5ce7c275881098310667b09562ad27 (diff) |
Update upstream source from tag 'upstream/0.32.10'
Update to upstream version '0.32.10'
with Debian dir 4a4ccaeec66d543745486a1cf408bbaa58c6e02f
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/string.vala | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/util/string.vala b/src/util/string.vala index 976f8ee..5ca4680 100644 --- a/src/util/string.vala +++ b/src/util/string.vala @@ -177,30 +177,6 @@ public inline bool contains_char(string haystack, unichar needle) { return haystack.index_of_char(needle) >= 0; } -public inline bool contains_str(string haystack, string needle) { - return haystack.index_of(needle) >= 0; -} - -public inline string? sliced_at(string str, int index) { - return (index >= 0) ? str[index:str.length] : null; -} - -public inline string? sliced_at_first_str(string haystack, string needle, int start_index = 0) { - return sliced_at(haystack, haystack.index_of(needle, start_index)); -} - -public inline string? sliced_at_last_str(string haystack, string needle, int start_index = 0) { - return sliced_at(haystack, haystack.last_index_of(needle, start_index)); -} - -public inline string? sliced_at_first_char(string haystack, unichar ch, int start_index = 0) { - return sliced_at(haystack, haystack.index_of_char(ch, start_index)); -} - -public inline string? sliced_at_last_char(string haystack, unichar ch, int start_index = 0) { - return sliced_at(haystack, haystack.last_index_of_char(ch, start_index)); -} - // Note that this method currently turns a word of all zeros into empty space ("000" -> "") public string strip_leading_zeroes(string str) { StringBuilder stripped = new StringBuilder(); |