(&self)
| 602 | |
| 603 | impl<T: ArrowPrimitiveType> Clone for PrimitiveArray<T> { |
| 604 | fn clone(&self) -> Self { |
| 605 | Self { |
| 606 | data_type: self.data_type.clone(), |
| 607 | values: self.values.clone(), |
| 608 | nulls: self.nulls.clone(), |
| 609 | } |
| 610 | } |
| 611 | } |
| 612 | |
| 613 | impl<T: ArrowPrimitiveType> PrimitiveArray<T> { |
no outgoing calls