Ejemplo n.º 1
0
 public IEnumerable <KeyValuePair <T, int> > Enumerate(T fromkey)//, bool includeDuplicates, int start, int count)
 {
     lock (_lock)
     {
         // generate a list from the start key using forward only pages
         return(_index.Enumerate(fromkey));//, includeDuplicates, start, count);
     }
 }
Ejemplo n.º 2
0
 public IEnumerable <KeyValuePair <T, int> > Enumerate(T fromkey)
 {
     // generate a list from the start key using forward only pages
     return(_index.Enumerate(fromkey));
 }