raphtory-core 0.18.5

Raphtory core components
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::storage::locked_view::LockedView;
use raphtory_api::python::repr::Repr;
use std::ops::Deref;

mod time;

impl<'a, T: Repr> Repr for LockedView<'a, T> {
    fn repr(&self) -> String {
        self.deref().repr()
    }
}