public static string Describe <T>(CompositeMatcher <T> Matcher, Func <Matcher <T>, string> Describer) { return(ObjectDescriber.Listify( Matcher.Matchers.Select(Describer), ", ", Matcher.Aggregator == Aggregators.AND ? ", and " : ", or ")); }
public static string Describe(CompositeMatcher <Tile> Matcher) { return(Describe(Matcher, Describe)); }