예제 #1
0
파일: Matcher.cs 프로젝트: khm1600/CJing
 /// <summary>
 /// Matcher equivalent to (m*)
 /// </summary>
 public static Matcher <T> Repeat <T>(Matcher <T> matcher)
 {
     return(Matcher <T> .Repeat(matcher));
 }
예제 #2
0
 public static Matcher <T> Repeat <T>(Matcher <T> matcher)
 => Matcher <T> .Repeat(matcher);