raphtory 0.17.0

raphtory, a temporal graph library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[macro_export]
macro_rules! add_functions {
    ($module:expr, $($func:ident),* $(,)?) => {
        $(
            $module.add_function(pyo3::wrap_pyfunction!($func, $module)?)?;
        )*
    };
}
#[macro_export]
macro_rules! add_classes {
    ($module:expr, $($cls:ty),* $(,)?) => {
        $(
            $module.add_class::<$cls>()?;
        )*
    };
}