Public Member Functions | |
const cmt_regexp::iterator | match (const cmt_string &text, int pos) const |
void | dump () const |
|
Reimplemented from cmt_regexp_node. Definition at line 524 of file cmt_regexp.cxx. References tab().
00525 { 00526 tab (); cout << "any (" << this << ") " << endl; 00527 } |
|
Reimplemented from cmt_regexp_node. Definition at line 513 of file cmt_regexp.cxx. References cmt_regexp::iterator::null(), and cmt_string::size().
00515 { 00516 if ((pos < 0) | (pos >= text.size ())) 00517 { 00518 return (cmt_regexp::iterator::null ()); 00519 } 00520 00521 return (cmt_regexp::iterator (pos, 1)); 00522 } |