(self)
| 128 | } |
| 129 | |
| 130 | fn finish(self) -> ArrayRef { |
| 131 | match self { |
| 132 | Self::Str(v) => Arc::new(StringArray::from(v)) as ArrayRef, |
| 133 | Self::I64(v) => Arc::new(Int64Array::from(v)) as ArrayRef, |
| 134 | Self::F64(v) => Arc::new(Float64Array::from(v)) as ArrayRef, |
| 135 | } |
| 136 | } |
| 137 | } |
no outgoing calls
no test coverage detected