Add new and extend existing til::string helpers #16772
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
wstring_case_insensitive_compare
is not a great name for what itdoes as it's incorrect to use for regular (human readable) strings.
This PR thus renames it to
env_key_sorter
.compare_string_ordinal
was renamed tocompare_ordinal_insensitive
to make sure callers know that the comparison is insensitive
(this may otherwise be incorrect in certain contexts after all).
The return value was changed to match
memcmp
so that the APIis detached from its underlying implementation (= NLS).
compare_linguistic_insensitive
andcontains_linguistic_insensitive
were added to sort and filter human-readable strings respectively.
prefix_split
was extended to allow for needles that are just asingle character. This significantly improves the generated assembly
and is also usually what someone would want to actually use.
I've left the string-as-needle variant in just in case.
This PR is prep-work for #2664