public InstructionFactory(IPerformEntryOperations <TEntry> entryOperator, IComparer <TEntry> entryComparer)
 {
     _entryOperator = entryOperator;
     _entryComparer = entryComparer;
 }
Exemple #2
0
 public JumpInstruction(
     int instructionCount, IPerformEntryOperations <TBoardEntry> entryOperator)
 {
     _instructionCount = instructionCount;
     _entryOperator    = entryOperator;
 }