Iterable<String> getCommandsNeedingWarmup(Iterable<String> allCommands, Set<String> existingSnapshots) { return allCommands.where((cmd) => !existingSnapshots.contains(cmd)); }