(
&self,
)
| 101 | /// HistoryDateTimeView: A lazy view over HistoryDateTime objects for each node. |
| 102 | #[getter] |
| 103 | fn dt( |
| 104 | &self, |
| 105 | ) -> LazyNodeState< |
| 106 | 'static, |
| 107 | ArrowMap<Map<HistoryOp<'static, DynamicGraph>, PyHistoryDateTime>, DateTimesStruct>, |
| 108 | DynamicGraph, |
| 109 | DynamicGraph, |
| 110 | DynNodeFilter, |
| 111 | > { |
| 112 | let op = self.inner.op.clone().map(|hist| hist.dt().into()); |
| 113 | LazyNodeState::new(op.into_arrow_node_op(), self.inner.nodes()) |
| 114 | } |
| 115 | |
| 116 | /// Access the unique event id of each time entry. |
| 117 | /// |
nothing calls this directly
no test coverage detected