Return the total size, in bytes, of memory used to store the data in this set, not including `self`
(&self)
| 96 | /// Return the total size, in bytes, of memory used to store the data in |
| 97 | /// this set, not including `self` |
| 98 | pub fn size(&self) -> usize { |
| 99 | self.0.size() |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | /// Optimized map for storing Arrow "bytes" types (`String`, `LargeString`, |