graphlib 0.2.1

Graphlib is a simple and powerful rust library for the graph data-structure.
Documentation
1
2
3
4
5
6
/// Find the minimum of a set of numbers
#[macro_export]
macro_rules! min {
    ($x: expr) => ($x);
    ($x: expr, $($z: expr),+) => (::std::cmp::min($x, min!($($z),*)));
}