MCPcopy Create free account
hub / github.com/audacity/audacity / IsPrefixedInsensitive

Function IsPrefixedInsensitive

libraries/lib-string-utils/StringUtils.h:146–149  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

144
145template <typename HayType, typename PrefixType>
146bool IsPrefixedInsensitive(const HayType& hay, const PrefixType& prefix)
147{
148 return IsPrefixed(ToLower(hay), ToLower(prefix));
149}

Callers 2

HandleLinkURIMethod · 0.85

Calls 2

IsPrefixedFunction · 0.85
ToLowerFunction · 0.85

Tested by

no test coverage detected