It would be nice to have this for arithmetics, for example:
For example:
var s = rdf.NodeFactory.createVar("s");
var p = rdf.NodeFactory.createVar("p");
filter = new sparql.ElementBindAs(s + "/ 1000",p);
console.log(filter.toString()); // logs BIND ((?s / 1000) AS ?p )
It would be nice to have this for arithmetics, for example: For example: