Examples of IntKeyIntChainedHashMap


Examples of bak.pcj.map.IntKeyIntChainedHashMap

    public IntKeyIntChainedHashMapBenchmark() {
        super(
            new IntKeyIntMapFactory() {
                public IntKeyIntMap create(int[] keys, int[] values) {
                    IntKeyIntMap m = new IntKeyIntChainedHashMap();
                    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.