#include <Regex.h>
Definition at line 45 of file Regex.h.
◆ MatchResults()
Regex::MatchResults::MatchResults |
( |
| ) |
|
◆ ~MatchResults()
Regex::MatchResults::~MatchResults |
( |
| ) |
|
Definition at line 47 of file Regex.cpp.
48{
49 if (__results) {
51
52 }
53}
void __matches_free(match_result *_results)
◆ operator[]()
const match_result & Regex::MatchResults::operator[] |
( |
size_t | _index | ) |
const |
Definition at line 66 of file Regex.cpp.
68{
70
71 if (!(_index < __size)) {
72 throw(new InvalidIndexException(0, (ssize_t)(__size - 1), _index));
73 }
74 return __results[_index];
75}
#define __DCL_ASSERT(expr)
◆ size()
size_t Regex::MatchResults::size |
( |
| ) |
const |
|
inline |
◆ Regex
The documentation for this class was generated from the following files: