package bjc.data;
/**
* A map with support for multiple values per key.
*
* @param <KeyType>
* The type of the keys for the map.
* @param <ValueType>
* The type of the values for the map.
*
* @author Ben Culkin
*/
public class Multimap<KeyType, ValueType> {
}