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