returns the total number of distinct values (not including nulls) seen so far
(&self)
| 90 | |
| 91 | /// returns the total number of distinct values (not including nulls) seen so far |
| 92 | pub fn non_null_len(&self) -> usize { |
| 93 | self.0.non_null_len() |
| 94 | } |
| 95 | |
| 96 | /// Return the total size, in bytes, of memory used to store the data in |
| 97 | /// this set, not including `self` |