@GenerateMicroBenchmark
 public int serialTreeSet() {
   return treeSet.stream().mapToInt(i -> i).sum();
 }
 @GenerateMicroBenchmark
 public int treeSet() {
   return treeSet.parallelStream().mapToInt(i -> i).sum();
 }