MCPcopy Create free account
hub / github.com/Pometry/Raphtory / intervals

Method intervals

raphtory/src/python/graph/node_state/node_state_history.rs:139–150  ·  view source on GitHub ↗
(
        &self,
    )

Source from the content-addressed store, hash-verified

137 /// IntervalsView: A lazy view over Intervals objects for each node.
138 #[getter]
139 fn intervals(
140 &self,
141 ) -> LazyNodeState<
142 'static,
143 ArrowMap<Map<HistoryOp<'static, DynamicGraph>, PyIntervals>, IntervalsStruct>,
144 DynamicGraph,
145 DynamicGraph,
146 DynNodeFilter,
147 > {
148 let op = self.inner.op.clone().map(|hist| hist.intervals().into());
149 LazyNodeState::new(op.into_arrow_node_op(), self.inner.nodes())
150 }
151
152 /// Get the earliest time entry.
153 ///

Callers

nothing calls this directly

Calls 8

into_arrow_node_opMethod · 0.80
mapMethod · 0.45
cloneMethod · 0.45
intoMethod · 0.45
nodesMethod · 0.45
iter_valuesMethod · 0.45
graphMethod · 0.45
idsMethod · 0.45

Tested by

no test coverage detected