MCPcopy Create free account
hub / github.com/Genivia/ugrep / Position

Method Position

include/reflex/pattern.h:661–661  ·  view source on GitHub ↗

< accept, not a regex position

Source from the content-addressed store, hash-verified

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; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected