< accept, not a regex position
| 659 | static const value_type ANCHOR = 1ULL << 54; ///< marks begin of word (\b,\<,\>) and buffer (\A,^) anchors |
| 660 | static const value_type ACCEPT = 1ULL << 55; ///< accept, not a regex position |
| 661 | Position() : k(NPOS) { } |
| 662 | Position(value_type k) : k(k) { } |
| 663 | Position(const Position& p) : k(p.k) { } |
| 664 | Position& operator=(const Position& p) { k = p.k; return *this; } |
nothing calls this directly
no outgoing calls
no test coverage detected