Maven:
<dependency>
<groupId>org.hft.collections</groupId>
<artifactId>hft-collections</artifactId>
<version>1.0.0</version>
</dependency>
Gradle:
groovy
dependencies {
implementation 'org.hft.collections:hft-collections:1.0.0'
}
import org.hft.collections.map.HFTMap;
public class HFTCollectionsExample {
public static void main(String[] args) {
HFTMap<Integer, String> map = new HFTMap<>();
map.put(1, "apple");
map.put(2, "banana");
map.put(3, "orange");
}
}