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