1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
# Plume-lib Hashmap Util: Utility libraries for Java HashMaps
See the [API documentation](http://plumelib.org/hashmap-util/api/org/plumelib/util/package-summary.html#package.description).
## Editing your buildfile ##
You can obtain the hashmap-util library from [Maven
Central](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.plumelib%22%20a%3A%22hashmap-util%22).
In a Gradle buildfile, write
```
dependencies {
implementation 'org.plumelib:hashmap-util:1.0.0'
}
```
Other build systems are [similar](https://search.maven.org/artifact/org.plumelib/hashmap-util/1.0.0/jar).
|