Searched defs:RegExpMatchResult (Results 1 – 2 of 2) sorted by relevance
24 struct RegExpMatchResult { struct25 uint32_t endIndex = 0;26 uint32_t index = 0;29 PandaVector<std::pair<bool, T>> captures;30 PandaVector<std::pair<uint32_t, uint32_t>> indices;31 bool isSuccess = false;32 bool isWide = false;
36 using RegExpMatchResult = ark::RegExpMatchResult<PandaString>; typedef