| ... | @@ -629,7 +629,8 @@ pub fn HashMap( | ... | @@ -629,7 +629,8 @@ pub fn HashMap( |
| 629 | } | 629 | } |
| 630 | | 630 | |
| 631 | /// If there is an `Entry` with a matching key, it is deleted from | 631 | /// If there is an `Entry` with a matching key, it is deleted from |
| 632 | /// the hash map, and then returned from this function. | 632 | /// the hash map, and this function returns true. Otherwise this |
| | 633 | /// function returns false. |
| 633 | pub fn remove(self: *Self, key: K) bool { | 634 | pub fn remove(self: *Self, key: K) bool { |
| 634 | return self.unmanaged.removeContext(key, self.ctx); | 635 | return self.unmanaged.removeContext(key, self.ctx); |
| 635 | } | 636 | } |