(&self)
| 268 | |
| 269 | impl<'a> ArrayWrapper<'a> { |
| 270 | fn len(&self) -> usize { |
| 271 | match self { |
| 272 | ArrayWrapper::FixedSizeList(arr) => arr.len(), |
| 273 | ArrayWrapper::List(arr) => arr.len(), |
| 274 | ArrayWrapper::LargeList(arr) => arr.len(), |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | fn iter(&self) -> Box<dyn Iterator<Item = Option<ArrayRef>> + 'a> { |
| 279 | match self { |
no outgoing calls