* @see org.exist.xquery.value.Sequence#toNodeSet()
*/
public NodeSet toNodeSet() throws XPathException {
final ValueSequence seq = new ValueSequence();
seq.add( this );
return( seq.toNodeSet() );
}
public MemoryNodeSet toMemNodeSet() throws XPathException {
return( new ValueSequence( this ).toMemNodeSet() );
}