Skip to main content

rust_igraph/algorithms/io/
mod.rs

1//! File I/O for graphs. Phase 0 only ships `edgelist`.
2
3// `pub(crate)` to keep rustdoc focused on the function re-export.
4pub(crate) mod edgelist;
5
6pub use edgelist::read_edgelist;