示例#1
0
        private static object SumSq(List <Expression> p)
        {
            var t = new Tally(p);

            return(t.Numerics().Sum(v => Math.Pow(v, 2)));
        }