Check if the bucket contains the key.paramkey The key (can be negative).returntrue if the bucket contains the key or null otherwise.
Get an iterator for iteraing through all entries in the bucket.returnAn iterator. iterator.next() returns an IntEntry.
Get an object into the bucket using the key.paramkey The key (can be negative) for retrieving object.returnThe object that was associated using the same key or null otherwise.
Get an iterator for iteraing through all objects in the bucket.returnAn iterator. iterator.next() returns an object.
Put an object into the bucket using the key. The key can be used to retrieve the object later.paramkey The key (can be negative).paramobject The object to be put in the bucket.returnAny old object that was associated using the same key or null otherwise.
Remove an object from the bucket using the key.paramkey The key (can be negative).returnThe object that was associated using the same key or null otherwise.
Return the size of the bucket.returnThe number of items in the bucket