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