Package org.glassfish.pfl.basic.contain
Interface IntMap<E>
- All Known Implementing Classes:
DenseIntMapImpl
public interface IntMap<E>
-
Method Summary
-
Method Details
-
get
If key >= 0, return the value bound to key, or null if none. Throws IllegalArgumentException if key <0. -
set
If key >= 0, bind value to the key. Throws IllegalArgumentException if key <0.
-