sinistra 0.1.0-202603071957

A generic graph framework with pluggable storage and topology and streaming graph algorithms.
Documentation
1
2
3
4
5
use crate::graph::{EdgeHandle, VertexHandle, topology::EdgeTopology};

pub trait EndpointTopology: EdgeTopology {
    fn edge_endpoints(&self, edge: EdgeHandle) -> Option<(VertexHandle, VertexHandle)>;
}