updateReward method

GameState<E, T> updateReward(
  1. List<double> update(
    1. List<double>
    )
)

Implementation

GameState<E, T> updateReward(List<double> Function(List<double>) update) =>
    copyWith(rewards: update(rewards));