Simple binning test

This commit is contained in:
Dominik Werder
2023-04-20 19:49:38 +02:00
parent cf3a876bcc
commit 95af6c359c
10 changed files with 292 additions and 156 deletions

View File

@@ -1542,6 +1542,12 @@ where
}
}
impl BinnedRange<TsNano> {
pub fn to_nano_range(&self) -> NanoRange {
self.full_range()
}
}
impl<T> BinnedRange<T>
where
T: Dim0Index,