Example #1
0
 public bool MoveNext()
 {
     if (!host.MoveNext())
     {
         return(false);
     }
     current = ((Node)host.Current).AsKV();
     return(true);
 }
Example #2
0
            public bool MoveNext()
            {
                if (!host.MoveNext())
                {
                    return(false);
                }

                current = ((Node)host.Current).item;
                return(comparer == null || comparer.Compare(upper, current) >= 0);
            }
Example #3
0
 public bool MoveNext()
 {
     return(host.MoveNext());
 }