Package bak.pcj

Examples of bak.pcj.IntCollection


        stopTimer();
        return l.length + " unsuccessful calls to remove() with " + l.length + " elements";
    }

    public String benchmarkIterator(DataSet dataSet) {
        IntCollection c = create(dataSet.get(0));
        startTimer();
        IntIterator it = c.iterator();
        while (it.hasNext()) it.next();
        stopTimer();
        return "Iteration over " + c.size() + " elements";
    }
View Full Code Here

TOP

Related Classes of bak.pcj.IntCollection

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.