| 4076 | } |
| 4077 | |
| 4078 | bool String::match(const String& p_wildcard) const |
| 4079 | { |
| 4080 | if (!p_wildcard.length() || !length()) |
| 4081 | { |
| 4082 | return false; |
| 4083 | } |
| 4084 | |
| 4085 | return _wildcard_match(p_wildcard.get_data(), get_data(), true); |
| 4086 | } |
| 4087 | |
| 4088 | bool String::matchn(const String& p_wildcard) const |
| 4089 | { |
nothing calls this directly
no test coverage detected