| 1201 | ) -> impl Iterator<Item = &(HighlightPoint, Option<TooltipUiPayload>)> { |
| 1202 | self.hovered_points |
| 1203 | .iter() |
| 1204 | .chain(self.picked_points.iter()) |
| 1205 | .filter_map(|(point_id, point_ctx)| { |
| 1206 | (!self.hidden_shapes.contains(&point_id.series_id)).then_some(point_ctx) |
| 1207 | }) |
| 1208 | } |
| 1209 |
nothing calls this directly
no outgoing calls
no test coverage detected