returns the total number of distinct values (not including nulls) seen so far
(&self)
| 74 | |
| 75 | /// returns the total number of distinct values (not including nulls) seen so far |
| 76 | pub fn non_null_len(&self) -> usize { |
| 77 | self.0.non_null_len() |
| 78 | } |
| 79 | |
| 80 | /// Return the total size, in bytes, of memory used to store the data in |
| 81 | /// this set, not including `self` |