Package cc.redberry.transformation

Examples of cc.redberry.transformation.Transformer


    public static Transformation createCollectByPattern(String collectPattern) {
        return new PatternCollectManager(CollectPatternParser.parse(collectPattern));
    }

    public static Transformation createCollectAllScalars() {
        return new Transformer(CollectAllScalars.INSTANCE);
    }
View Full Code Here


        (new IndexMappingImpl(new int[0],im)).apply(newTo);
        return newTo;
    }
   
    public static Transformation create(Expression expr) {
        return new Transformer(new NaiveSubstitution(expr));
    }
View Full Code Here

        }
        return tensor;
    }

    public static Transformer getTransformer() {
        return new Transformer(INSTANCE);
    }
View Full Code Here

TOP

Related Classes of cc.redberry.transformation.Transformer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.