MCPcopy Create free account
hub / github.com/SakuraEngine/SakuraEngine / matchn

Method matchn

modules/gui/gui/src/backend/text_server/ustring.cpp:4088–4095  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4086}
4087
4088bool String::matchn(const String& p_wildcard) const
4089{
4090 if (!p_wildcard.length() || !length())
4091 {
4092 return false;
4093 }
4094 return _wildcard_match(p_wildcard.get_data(), get_data(), false);
4095}
4096
4097String String::replace(const String& p_key, const String& p_with) const
4098{

Callers

nothing calls this directly

Calls 5

_wildcard_matchFunction · 0.85
lengthFunction · 0.50
get_dataFunction · 0.50
lengthMethod · 0.45
get_dataMethod · 0.45

Tested by

no test coverage detected