The following statement does the same independent of the value of player2Min:
result.getValues()[newOffset] = player2Min ? previousResult.get().values.getValues()[oldOffset] : previousResult.get().values.getValues()[oldOffset];
What is the correct behavior?
(revealed by clang-tidy checks I performed locally)
The following statement does the same independent of the value of
player2Min:What is the correct behavior?
(revealed by clang-tidy checks I performed locally)