All rocket landings, grouped by round but in no particular order.
(&self)
| 98 | |
| 99 | /// All rocket landings, grouped by round but in no particular order. |
| 100 | pub fn all_grouped(&self) -> FnvHashMap<Rounds, Vec<RocketLanding>> { |
| 101 | self.landings.clone() |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | #[cfg(test)] |