bitdag 0.1.4

A crate to deconstruct the hierrachie of a DAG into a Bitmatrix for fast child-parent-queries.
Documentation
1
2
3
4
5
use crate::edge::Edge;

pub trait ToEdges {
    fn edges(&self, root_node: &str) -> crate::Result<Vec<Edge>>;
}