public Cursor<BindingSet> evaluate(MultiProjection multiProjection, BindingSet bindings)
throws StoreException
{
Cursor<BindingSet> result;
result = this.evaluate(multiProjection.getArg(), bindings);
result = new MultiProjectionCursor(multiProjection, result, bindings);
return result;
}