Return the contents of this set and replace it with a new empty set with the same output type
(&mut self)
| 61 | /// Return the contents of this set and replace it with a new empty |
| 62 | /// set with the same output type |
| 63 | pub fn take(&mut self) -> Self { |
| 64 | Self(self.0.take()) |
| 65 | } |
| 66 | |
| 67 | /// Inserts each value from `values` into the set |
| 68 | pub fn insert(&mut self, values: &ArrayRef) { |