1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#[cfg(not(feature = "bigidx"))]
use arrow::array::UInt32Array;
#[cfg(feature = "bigidx")]
use arrow::array::UInt64Array;
pub trait IndexToUsize {
fn negative_to_usize(self, index: usize) -> Option<usize>;
}
impl IndexToUsize for i64 {
fn negative_to_usize(self, index: usize) -> Option<usize> {
if self >= 0 && (self as usize) < index {
Some(self as usize)
} else {
let subtract = self.abs() as usize;
if subtract > index {
None
} else {
Some(index - subtract)
}
}
}
}
#[cfg(not(feature = "bigidx"))]
pub type IdxSize = u32;
#[cfg(feature = "bigidx")]
pub type IdxSize = u64;
#[cfg(not(feature = "bigidx"))]
pub type IdxArr = UInt32Array;
#[cfg(feature = "bigidx")]
pub type IdxArr = UInt64Array;