Skip to content

Commit 2807c1c

Browse files
committed
rid dead code
1 parent a6493dc commit 2807c1c

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

raphtory/src/db/api/properties/temporal_props.rs

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ use std::{
1313
sync::Arc,
1414
};
1515

16-
use raphtory_api::core::storage::timeindex::AsTime;
1716
#[cfg(feature = "arrow")]
1817
use {arrow_array::ArrayRef, raphtory_api::core::entities::properties::prop::PropArrayUnwrap};
1918

@@ -92,18 +91,6 @@ impl<P: InternalPropertiesOps> TemporalPropertyView<P> {
9291
self.props.temporal_iter(self.id)
9392
}
9493

95-
#[inline]
96-
pub fn iter_window(&self, start: i64, end: i64) -> impl Iterator<Item = (i64, Prop)> + '_ {
97-
self.iter_indexed()
98-
.filter(move |(ti, _)| ti.t() >= start && ti.t() < end)
99-
.map(|(ti, p)| (ti.t(), p))
100-
}
101-
102-
#[inline]
103-
pub fn values_window(&self, start: i64, end: i64) -> impl Iterator<Item = Prop> + '_ {
104-
self.iter_window(start, end).map(|(_, p)| p)
105-
}
106-
10794
pub fn histories(&self) -> impl Iterator<Item = (i64, Prop)> + '_ {
10895
self.iter()
10996
}

0 commit comments

Comments
 (0)