We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec84a5e commit 14f879bCopy full SHA for 14f879b
vortex-array/src/arrays/list/compute/take.rs
@@ -34,7 +34,6 @@ use crate::vtable::ValidityHelper;
34
/// that lists are stored contiguously and in-order (`offset[i+1] >= offset[i]`). Taking
35
/// non-contiguous indices would violate this requirement.
36
impl TakeKernel for ListVTable {
37
- #[expect(clippy::cognitive_complexity)]
38
fn take(&self, array: &ListArray, indices: &dyn Array) -> VortexResult<ArrayRef> {
39
let indices = indices.to_primitive();
40
let offsets = array.offsets().to_primitive();
0 commit comments