package org.vertexium.cypher.functions.aggregate; import org.vertexium.cypher.VertexiumCypherQueryContext; import org.vertexium.cypher.ast.model.CypherAstBase; import org.vertexium.cypher.exceptions.VertexiumCypherNotImplemented; import org.vertexium.cypher.executor.ExpressionScope; public class StandardDeviationFunction extends AggregationFunction { @Override public Object invoke(VertexiumCypherQueryContext ctx, CypherAstBase[] arguments, ExpressionScope scope) { throw new VertexiumCypherNotImplemented("" + this.getClass().getName()); } }