Method
clear
Resets the data structure.
()
Source from the content-addressed store, hash-verified
| 42 | * Resets the data structure. |
| 43 | */ |
| 44 | protected void clear() { |
| 45 | Arrays.fill(buckets, 0); |
| 46 | size = 1; |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Returns the number of entries. |
Tested by
no test coverage detected