Updated code for Doxygen documentation

This commit is contained in:
Bartek Kryza
2023-06-23 19:39:25 +02:00
parent d8ef12d1c6
commit 321fb177a9
148 changed files with 579 additions and 204 deletions

View File

@@ -194,7 +194,12 @@ struct regex {
{
}
[[nodiscard]] bool operator==(const std::string &v) const
/**
* @brief Regular expression match operator
* @param v Value to match against internal std::regex
* @return True, if the argument matches the regular expression
*/
[[nodiscard]] bool operator%=(const std::string &v) const
{
return std::regex_match(v, regexp);
}