return createArrayVertex(graph, node, newElements);
}
public static Hash createHash(Graph graph, Vertex[] elements) {
Hash hash = new Hash(graph.getRuntime(), elements);
TypeVarVertex k = new TypeVarVertex(hash);
TypeVarVertex v = new TypeVarVertex(hash);
hash.setKeyTypeVarVertex(k);
hash.setValueTypeVarVertex(v);
return hash;
}