Merge pull request #321 from joshuawarner32/map-hashcode-equals

add hashCode and equals methods to java/util/Map
This commit is contained in:
Mike Jensen 2014-08-15 11:31:06 -06:00
commit aa4038ed3d

View File

@ -35,6 +35,10 @@ public interface Map<K, V> {
public Collection<V> values();
public boolean equals(Object other);
public int hashCode();
public interface Entry<K, V> {
public K getKey();