Rolls a list of dice and returns a list of dice rolls.
static List<DiceRoll> rollMany(List<Dice> dice) => dice.map((d) => roll(d)).toList();