You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When parser can return the next occurrence of their pattern, this could be used by TextBefore (check others) to skip a block of characters. For instance AnyOf using SearchValues we can find the next occurrence of any char in the list. TextBefore(Char('c')) or TextBefore(AnyOf("(){}"))
interface IFastForward
{
bool TrySeek(ParserContext context, out var index);
}
Returns -1 if there are no matches.
The text was updated successfully, but these errors were encountered:
When parser can return the next occurrence of their pattern, this could be used by
TextBefore
(check others) to skip a block of characters. For instanceAnyOf
usingSearchValues
we can find the next occurrence of any char in the list.TextBefore(Char('c'))
orTextBefore(AnyOf("(){}"))
Returns
-1
if there are no matches.The text was updated successfully, but these errors were encountered: