(
&self,
)
| 83 | /// HistoryTimestampView: A lazy view over HistoryTimestamp objects for each node. |
| 84 | #[getter] |
| 85 | fn t( |
| 86 | &self, |
| 87 | ) -> LazyNodeState< |
| 88 | 'static, |
| 89 | ArrowMap<Map<HistoryOp<'static, DynamicGraph>, PyHistoryTimestamp>, TimeStampsStruct>, |
| 90 | DynamicGraph, |
| 91 | DynamicGraph, |
| 92 | DynNodeFilter, |
| 93 | > { |
| 94 | let op = self.inner.op.clone().map(|hist| hist.t().into()); |
| 95 | LazyNodeState::new(op.into_arrow_node_op(), self.inner.nodes()) |
| 96 | } |
| 97 | |
| 98 | /// Access history events as UTC datetimes. |
| 99 | /// |
no test coverage detected