Ejemplo n.º 1
0
 // utility for tallying statistics
 static Tally GetTally(List<Expression> p, bool numbersOnly)
 {
     var tally = new Tally(numbersOnly);
     foreach (Expression e in p)
     {
         tally.Add(e);
     }
     return tally;
 }