MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / compareIgnoreCase

Method compareIgnoreCase

JUCE/modules/juce_core/text/juce_String.cpp:608–608  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

606int String::compare (const char* const other) const noexcept { return text.compare (CharPointer_UTF8 (other)); }
607int String::compare (const wchar_t* const other) const noexcept { return text.compare (castToCharPointer_wchar_t (other)); }
608int String::compareIgnoreCase (const String& other) const noexcept { return (text == other.text) ? 0 : text.compareIgnoreCase (other.text); }
609
610static int stringCompareRight (String::CharPointerType s1, String::CharPointerType s2) noexcept
611{

Callers 8

compareFilenamesFunction · 0.45
equalsIgnoreCaseMethod · 0.45
runTestMethod · 0.45
sortMethod · 0.45
getPanningValueForTextFunction · 0.45
compareElementsMethod · 0.45
runJobMethod · 0.45
compareElementsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected