Exemplo n.º 1
0
 /// <summary>
 /// Matcher equivalent to (m*)
 /// </summary>
 public static Matcher <T> Repeat <T>(Matcher <T> matcher)
 {
     return(Matcher <T> .Repeat(matcher));
 }
Exemplo n.º 2
0
 public static Matcher <T> Repeat <T>(Matcher <T> matcher)
 => Matcher <T> .Repeat(matcher);