mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
More project search filters WIP.
This commit is contained in:
@@ -401,13 +401,13 @@ class EE_API String {
|
||||
/** glob matches a string against a glob
|
||||
** @return True if matches
|
||||
*/
|
||||
static bool globMatch( const std::string& text, const std::string_view& glob,
|
||||
static bool globMatch( const std::string_view& text, const std::string_view& glob,
|
||||
bool caseInsensitive = false );
|
||||
|
||||
/** glob matches a string against a set of globs
|
||||
** @return True if matches
|
||||
*/
|
||||
static bool globMatch( const std::string& text, const std::vector<std::string>& globs,
|
||||
static bool globMatch( const std::string_view& text, const std::vector<std::string>& globs,
|
||||
bool caseInsensitive = false );
|
||||
|
||||
/** @brief Default constructor
|
||||
|
||||
Reference in New Issue
Block a user