diff options
| author | bculkin2442 <bjculkin@mix.wvu.edu> | 2019-07-02 18:32:37 -0400 |
|---|---|---|
| committer | bculkin2442 <bjculkin@mix.wvu.edu> | 2019-07-02 18:32:37 -0400 |
| commit | 4d0a59a0023f2b4fca144a089a3f75acb4ebd62b (patch) | |
| tree | eed89369ceda7dd1b356dd5055ada9287738b092 /src/main/java/bjc/data | |
| parent | 3a56e3ee3f2f6069de5cf8d2bee81052bbf346e6 (diff) | |
Move tests to new package
Diffstat (limited to 'src/main/java/bjc/data')
| -rw-r--r-- | src/main/java/bjc/data/Multimap.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/java/bjc/data/Multimap.java b/src/main/java/bjc/data/Multimap.java new file mode 100644 index 0000000..3a9ca44 --- /dev/null +++ b/src/main/java/bjc/data/Multimap.java @@ -0,0 +1,15 @@ +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> { + +} |
