Package com.google.common.collect.CollectionBenchmarkSampleData

Examples of com.google.common.collect.CollectionBenchmarkSampleData.Element


    Map<Element, Element> map = mapToTest;

    boolean dummy = false;
    for (int i = 0; i < reps; i++) {
      for (Element key : map.keySet()) {
        Element value = map.get(key);
        dummy ^= key != value;
      }
    }
    return dummy;
View Full Code Here

TOP

Related Classes of com.google.common.collect.CollectionBenchmarkSampleData.Element

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.