Saves the associated value for fast access using {@link #lget}or {@link #lset}.
if (map.containsKey(key)) value = map.lget();or, to modify the value at the given key without looking up its slot twice:
if (map.containsKey(key)) map.lset(map.lget() + 1);
|
|
|
|
|
|