Package bak.pcj.map

Examples of bak.pcj.map.IntKeyIntOpenHashMap$ValueCollection


    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

Related Classes of bak.pcj.map.IntKeyIntOpenHashMap$ValueCollection

Copyright © 2018 www.massapicom. 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.