(&mut self)
| 296 | } |
| 297 | |
| 298 | fn evaluate(&mut self) -> Result<ScalarValue> { |
| 299 | let median = calculate_median::<T>(&mut self.all_values); |
| 300 | ScalarValue::new_primitive::<T>(median, &self.data_type) |
| 301 | } |
| 302 | |
| 303 | fn size(&self) -> usize { |
| 304 | size_of_val(self) + self.all_values.capacity() * size_of::<T::Native>() |
nothing calls this directly
no test coverage detected