polars_core/series/implementations/
binary_offset.rs
1use super::*;
2use crate::chunked_array::comparison::*;
3#[cfg(feature = "algorithm_group_by")]
4use crate::frame::group_by::*;
5use crate::prelude::*;
6use crate::series::private::PrivateSeries;
7
8impl private::PrivateSeries for SeriesWrap<BinaryOffsetChunked> {
9 fn compute_len(&mut self) {
10 self.0.compute_len()
11 }
12 fn _field(&self) -> Cow<Field> {
13 Cow::Borrowed(self.0.ref_field())
14 }
15 fn _dtype(&self) -> &DataType {
16 self.0.ref_field().dtype()
17 }
18 fn _get_flags(&self) -> StatisticsFlags {
19 self.0.get_flags()
20 }
21 fn _set_flags(&mut self, flags: StatisticsFlags) {
22 self.0.set_flags(flags)
23 }
24
25 unsafe fn equal_element(&self, idx_self: usize, idx_other: usize, other: &Series) -> bool {
26 self.0.equal_element(idx_self, idx_other, other)
27 }
28
29 fn into_total_eq_inner<'a>(&'a self) -> Box<dyn TotalEqInner + 'a> {
30 (&self.0).into_total_eq_inner()
31 }
32 fn into_total_ord_inner<'a>(&'a self) -> Box<dyn TotalOrdInner + 'a> {
33 (&self.0).into_total_ord_inner()
34 }
35
36 fn vec_hash(
37 &self,
38 random_state: PlSeedableRandomStateQuality,
39 buf: &mut Vec<u64>,
40 ) -> PolarsResult<()> {
41 self.0.vec_hash(random_state, buf)?;
42 Ok(())
43 }
44
45 fn vec_hash_combine(
46 &self,
47 build_hasher: PlSeedableRandomStateQuality,
48 hashes: &mut [u64],
49 ) -> PolarsResult<()> {
50 self.0.vec_hash_combine(build_hasher, hashes)?;
51 Ok(())
52 }
53
54 #[cfg(feature = "algorithm_group_by")]
55 fn group_tuples(&self, multithreaded: bool, sorted: bool) -> PolarsResult<GroupsType> {
56 IntoGroupsType::group_tuples(&self.0, multithreaded, sorted)
57 }
58
59 fn arg_sort_multiple(
60 &self,
61 by: &[Column],
62 options: &SortMultipleOptions,
63 ) -> PolarsResult<IdxCa> {
64 self.0.arg_sort_multiple(by, options)
65 }
66}
67
68impl SeriesTrait for SeriesWrap<BinaryOffsetChunked> {
69 fn rename(&mut self, name: PlSmallStr) {
70 self.0.rename(name);
71 }
72
73 fn chunk_lengths(&self) -> ChunkLenIter {
74 self.0.chunk_lengths()
75 }
76 fn name(&self) -> &PlSmallStr {
77 self.0.name()
78 }
79
80 fn chunks(&self) -> &Vec<ArrayRef> {
81 self.0.chunks()
82 }
83 unsafe fn chunks_mut(&mut self) -> &mut Vec<ArrayRef> {
84 self.0.chunks_mut()
85 }
86 fn shrink_to_fit(&mut self) {
87 self.0.shrink_to_fit()
88 }
89
90 fn slice(&self, offset: i64, length: usize) -> Series {
91 self.0.slice(offset, length).into_series()
92 }
93 fn split_at(&self, offset: i64) -> (Series, Series) {
94 let (a, b) = self.0.split_at(offset);
95 (a.into_series(), b.into_series())
96 }
97
98 fn append(&mut self, other: &Series) -> PolarsResult<()> {
99 polars_ensure!(self.0.dtype() == other.dtype(), append);
100 self.0.append(other.as_ref().as_ref())?;
102 Ok(())
103 }
104 fn append_owned(&mut self, other: Series) -> PolarsResult<()> {
105 polars_ensure!(self.0.dtype() == other.dtype(), append);
106 self.0.append_owned(other.take_inner())
107 }
108
109 fn extend(&mut self, other: &Series) -> PolarsResult<()> {
110 polars_ensure!(self.0.dtype() == other.dtype(), extend);
111 self.0.extend(other.as_ref().as_ref())?;
112 Ok(())
113 }
114
115 fn filter(&self, filter: &BooleanChunked) -> PolarsResult<Series> {
116 ChunkFilter::filter(&self.0, filter).map(|ca| ca.into_series())
117 }
118
119 fn take(&self, indices: &IdxCa) -> PolarsResult<Series> {
120 Ok(self.0.take(indices)?.into_series())
121 }
122
123 unsafe fn take_unchecked(&self, indices: &IdxCa) -> Series {
124 self.0.take_unchecked(indices).into_series()
125 }
126
127 fn take_slice(&self, indices: &[IdxSize]) -> PolarsResult<Series> {
128 Ok(self.0.take(indices)?.into_series())
129 }
130
131 unsafe fn take_slice_unchecked(&self, indices: &[IdxSize]) -> Series {
132 self.0.take_unchecked(indices).into_series()
133 }
134
135 fn len(&self) -> usize {
136 self.0.len()
137 }
138
139 #[cfg(feature = "algorithm_group_by")]
140 fn n_unique(&self) -> PolarsResult<usize> {
141 self.group_tuples(true, false).map(|g| g.len())
143 }
144
145 fn rechunk(&self) -> Series {
146 self.0.rechunk().into_owned().into_series()
147 }
148
149 fn new_from_index(&self, index: usize, length: usize) -> Series {
150 ChunkExpandAtIndex::new_from_index(&self.0, index, length).into_series()
151 }
152
153 fn cast(&self, dtype: &DataType, options: CastOptions) -> PolarsResult<Series> {
154 self.0.cast_with_options(dtype, options)
155 }
156
157 #[inline]
158 unsafe fn get_unchecked(&self, index: usize) -> AnyValue {
159 self.0.get_any_value_unchecked(index)
160 }
161
162 fn sort_with(&self, options: SortOptions) -> PolarsResult<Series> {
163 Ok(ChunkSort::sort_with(&self.0, options).into_series())
164 }
165
166 fn arg_sort(&self, options: SortOptions) -> IdxCa {
167 ChunkSort::arg_sort(&self.0, options)
168 }
169
170 fn null_count(&self) -> usize {
171 self.0.null_count()
172 }
173
174 fn has_nulls(&self) -> bool {
175 self.0.has_nulls()
176 }
177
178 fn is_null(&self) -> BooleanChunked {
179 self.0.is_null()
180 }
181
182 fn is_not_null(&self) -> BooleanChunked {
183 self.0.is_not_null()
184 }
185
186 fn reverse(&self) -> Series {
187 ChunkReverse::reverse(&self.0).into_series()
188 }
189
190 fn shift(&self, periods: i64) -> Series {
191 ChunkShift::shift(&self.0, periods).into_series()
192 }
193
194 fn clone_inner(&self) -> Arc<dyn SeriesTrait> {
195 Arc::new(SeriesWrap(Clone::clone(&self.0)))
196 }
197 fn as_any(&self) -> &dyn Any {
198 &self.0
199 }
200
201 fn as_any_mut(&mut self) -> &mut dyn Any {
202 &mut self.0
203 }
204
205 fn as_phys_any(&self) -> &dyn Any {
206 &self.0
207 }
208
209 fn as_arc_any(self: Arc<Self>) -> Arc<dyn Any + Send + Sync> {
210 self as _
211 }
212}