containsUsed
Parameters
- self:Self
- Self
- key:K
- K
Source
Implementation
pub fn containsUsed(self: Self, key: K) ?bool {
const item = self.map.getPtr(key) orelse return null;
return item.used;
}Source
pub fn containsUsed(self: Self, key: K) ?bool {
const item = self.map.getPtr(key) orelse return null;
return item.used;
}