public static Function MakeIntegerIndices(this Function func)
 {
     var xform = new IntegerIndexTransformer(func.Body);
     return xform.GetAlgorithm();
 }
Example #2
0
        public static Function MakeIntegerIndices(this Function func)
        {
            var xform = new IntegerIndexTransformer(func.Body);

            return(xform.GetAlgorithm());
        }