Example #1
0
 public BufferedNodeIterator(XQueryNodeIterator src, bool clone)
 {
     this.src = clone ? src.Clone() : src;
     buffer = new ItemList();
 }        
Example #2
0
 internal Iterator(ItemList list)
 {
     owner = list;
     pos = 0;
     current = null;
 }