示例#1
0
 /// <summary>
 /// Matcher equivalent to (m_1 ... m_n)
 /// </summary>
 public static Matcher <T> Sequence <T>(params Matcher <T>[] matchers)
 {
     return(Matcher <T> .Sequence(matchers));
 }
示例#2
0
 /// <summary>
 /// Matcher equivalent to (m_1 ... m_n)
 /// </summary>
 public static Matcher <T> Sequence <T>(params Matcher <T>[] matchers)
 => Matcher <T> .Sequence(matchers);