(&self)
| 276 | } |
| 277 | |
| 278 | fn iter(&self) -> Box<dyn Iterator<Item = Option<ArrayRef>> + 'a> { |
| 279 | match self { |
| 280 | ArrayWrapper::FixedSizeList(arr) => Box::new(arr.iter()), |
| 281 | ArrayWrapper::List(arr) => Box::new(arr.iter()), |
| 282 | ArrayWrapper::LargeList(arr) => Box::new(arr.iter()), |
| 283 | } |
| 284 | } |
| 285 | |
| 286 | fn values(&self) -> &ArrayRef { |
| 287 | match self { |