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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
use super::*;
pub struct PrimitiveChunkedBuilder<T>
where
T: PolarsNumericType,
{
array_builder: MutablePrimitiveArray<T::Native>,
field: Field,
}
impl<T> ChunkedBuilder<T::Native, T> for PrimitiveChunkedBuilder<T>
where
T: PolarsNumericType,
{
#[inline]
fn append_value(&mut self, v: T::Native) {
self.array_builder.push(Some(v))
}
#[inline]
fn append_null(&mut self) {
self.array_builder.push(None)
}
fn finish(self) -> ChunkedArray<T> {
ChunkedArray {
field: Arc::new(self.field),
chunks: vec![self.array_builder.into_arc()],
phantom: PhantomData,
categorical_map: None,
..Default::default()
}
}
fn shrink_to_fit(&mut self) {
self.array_builder.shrink_to_fit()
}
}
impl<T> PrimitiveChunkedBuilder<T>
where
T: PolarsNumericType,
{
pub fn new(name: &str, capacity: usize) -> Self {
let array_builder = MutablePrimitiveArray::<T::Native>::with_capacity(capacity)
.to(T::get_dtype().to_arrow());
PrimitiveChunkedBuilder {
array_builder,
field: Field::new(name, T::get_dtype()),
}
}
}