MCPcopy Create free account
hub / github.com/OpenStarbound/OpenStarbound / equals

Method equals

source/core/StarString.cpp:731–733  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

729}
730
731bool String::equals(String const& s, CaseSensitivity cs) const {
732 return compare(s, cs) == 0;
733}
734
735bool String::equalsIgnoreCase(String const& s) const {
736 return compare(s, CaseInsensitive) == 0;

Callers 7

spawnNpcMethod · 0.45
itemSlotHandlerMethod · 0.45
itemGridHandlerMethod · 0.45
renderMethod · 0.45
addHistoryMethod · 0.45
stringToAnimationModeMethod · 0.45
processRequestMethod · 0.45

Calls 1

compareFunction · 0.85

Tested by

no test coverage detected