Examples of IntKeyIntOpenHashMap


Examples of bak.pcj.map.IntKeyIntOpenHashMap

    public IntKeyIntOpenHashMapBenchmark() {
        super(
            new IntKeyIntMapFactory() {
                public IntKeyIntMap create(int[] keys, int[] values) {
                    IntKeyIntMap m = new IntKeyIntOpenHashMap();
                    for (int i = 0; i < keys.length; i++)
                        m.put(keys[i], values[i]);
                    return m;
                }
            }
        );
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.