MCPcopy Create free account
hub / github.com/Redot-Engine/redot-engine / matchn

Method matchn

core/string/ustring.cpp:3807–3812  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3805}
3806
3807bool String::matchn(const String &p_wildcard) const {
3808 if (!p_wildcard.length() || !length()) {
3809 return false;
3810 }
3811 return _wildcard_match(p_wildcard.get_data(), get_data(), false);
3812}
3813
3814String String::format(const Variant &values, const String &placeholder) const {
3815 String new_string = *this;

Callers 10

_action_pressedMethod · 0.80
update_file_listMethod · 0.80
_is_file_matchedMethod · 0.80
_native_dialog_cbMethod · 0.80
_action_pressedMethod · 0.80
update_file_listMethod · 0.80
test_string.hFile · 0.80

Calls 4

_wildcard_matchFunction · 0.85
get_dataFunction · 0.85
lengthMethod · 0.45
get_dataMethod · 0.45

Tested by

no test coverage detected