count
Returns the number of items stored in the set
Function parameters
Parameters
- self:*const BufSet
A BufSet is a set of strings.
Types
- BufSet
- A BufSet is a set of strings.
Source
Implementation
pub fn count(self: *const BufSet) usize {
return self.hash_map.count();
}