COMMON: Add contains overload for char32_t in String
This commit is contained in:
parent
7b7bea9fe5
commit
23ce3edac9
2 changed files with 9 additions and 0 deletions
|
@ -118,6 +118,9 @@ public:
|
|||
bool contains(const char *x) const;
|
||||
bool contains(char x) const;
|
||||
bool contains(uint32 x) const;
|
||||
#ifdef USE_CXX11
|
||||
bool contains(char32_t x) const;
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Simple DOS-style pattern matching function (understands * and ? like used in DOS).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue