import org.highperf.collections.*;
public class HFTCollectionsExample {
public static void main(String[] args) {
FastMap<Integer, String> map = new FastMap<>();
map.put(1, "Apple");
map.put(2, "Banana");
map.put(3, "Cherry");
String fruit = map.get(2);
System.out.println(fruit); // Output: Banana
map.forEach((key, value) -> System.out.println(key + " - " + value));
}
}