protected QueryIterator execOneList(Binding binding,
Node listNode, Node predicate, List<Node> objectArgs,
ExecutionContext execCxt)
{
if ( Var.isVar(listNode) )
throw new ExprEvalException("ListIndex : subject not a list or variable bound to a list") ;
if ( objectArgs.size() != 2 )
throw new ExprEvalException("ListIndex : object not a list of length 2") ;
Node indexNode = objectArgs.get(0) ;
Node memberNode = objectArgs.get(1) ;
Graph graph = execCxt.getActiveGraph() ;