Esempio n. 1
0
 internal Enumerator(InputHistory <I> history, bool full)
 {
     startIndex   = history.oldestIndex;
     inputs       = history.inputs;
     endIndex     = full ? history.newestIndex : history.currentIndex;
     currentIndex = -1;
 }
 public Enumerator(InputHistory <I> inputHistory, bool full)
 {
     StartElement = inputHistory.oldest;
     EndElement   = full ? inputHistory.newest : inputHistory.current;
     current      = null;
 }