1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
use crate::chunked_array::object::extension::drop::drop_list;
use crate::prelude::*;
impl<T> Drop for ChunkedArray<T> {
fn drop(&mut self) {
if matches!(self.dtype(), DataType::List(_)) {
// Safety
// guarded by the type system
// the transmute only convinces the type system that we are a list
// (which we are)
#[allow(clippy::transmute_undefined_repr)]
unsafe {
drop_list(std::mem::transmute(self))
}
}
}
}