Returns the field at `pos`.
(&self, pos: usize)
| 283 | |
| 284 | /// Returns the field at `pos`. |
| 285 | pub fn column(&self, pos: usize) -> &ArrayRef { |
| 286 | &self.fields[pos] |
| 287 | } |
| 288 | |
| 289 | /// Return the number of fields in this struct array |
| 290 | pub fn num_columns(&self) -> usize { |
no outgoing calls