Inserts each value from `values` into the set
(&mut self, values: &ArrayRef)
| 42 | |
| 43 | /// Inserts each value from `values` into the set |
| 44 | pub fn insert(&mut self, values: &ArrayRef) { |
| 45 | fn make_payload_fn(_value: Option<&[u8]>) {} |
| 46 | fn observe_payload_fn(_payload: ()) {} |
| 47 | self.0 |
| 48 | .insert_if_new(values, make_payload_fn, observe_payload_fn); |
| 49 | } |
| 50 | |
| 51 | /// Return the contents of this map and replace it with a new empty map with |
| 52 | /// the same output type |