(&mut self, y: Vec<f64>)
| 313 | } |
| 314 | |
| 315 | fn insert_image(&mut self, y: Vec<f64>) -> &mut Self { |
| 316 | if let Some(x) = self.options.get_mut(&Images) { |
| 317 | *x = true |
| 318 | } |
| 319 | self.images.push(y); |
| 320 | self |
| 321 | } |
| 322 | |
| 323 | fn insert_pair(&mut self, xy: (Vec<f64>, Vec<f64>)) -> &mut Self { |
| 324 | if let Some(t) = self.options.get_mut(&Pairs) { |