(mut self, orders: impl IntoIterator<Item = Order>)
| 167 | |
| 168 | impl SimulationBuilder { |
| 169 | pub fn with_orders(mut self, orders: impl IntoIterator<Item = Order>) -> Self { |
| 170 | self.orders = orders.into_iter().collect(); |
| 171 | self |
| 172 | } |
| 173 | |
| 174 | pub fn append_pre_interactions( |
| 175 | mut self, |