Esempio n. 1
0
 private static Cmd?GetNext(Func <int, Cmd?> getCommandAt, Cmd nextCommand) => getCommandAt(nextCommand.Index + 1);
Esempio n. 2
0
 private static Cmd?GetJump(Func <int, Cmd?> getCommandAt, Cmd nextCommand) =>
 getCommandAt(nextCommand.Index + nextCommand.Value);