class org.openjdk.jmh.util.ListStatistics$ListStatisticsIterator extends java.lang.Object implements java.util.Iterator
{
private int currentIndex;
final org.openjdk.jmh.util.ListStatistics this$0;
private void <init>(org.openjdk.jmh.util.ListStatistics)
{
org.openjdk.jmh.util.ListStatistics$ListStatisticsIterator v;
org.openjdk.jmh.util.ListStatistics v;
v := @this: org.openjdk.jmh.util.ListStatistics$ListStatisticsIterator;
v := @parameter: org.openjdk.jmh.util.ListStatistics;
v.<org.openjdk.jmh.util.ListStatistics$ListStatisticsIterator: org.openjdk.jmh.util.ListStatistics this$0> = v;
specialinvoke v.<java.lang.Object: void <init>()>();
v.<org.openjdk.jmh.util.ListStatistics$ListStatisticsIterator: int currentIndex> = 0;
return;
}
public boolean hasNext()
{
org.openjdk.jmh.util.ListStatistics$ListStatisticsIterator v;
org.openjdk.jmh.util.ListStatistics v;
int v, v;
boolean v;
v := @this: org.openjdk.jmh.util.ListStatistics$ListStatisticsIterator;
v = v.<org.openjdk.jmh.util.ListStatistics$ListStatisticsIterator: int currentIndex>;
v = v.<org.openjdk.jmh.util.ListStatistics$ListStatisticsIterator: org.openjdk.jmh.util.ListStatistics this$0>;
v = v.<org.openjdk.jmh.util.ListStatistics: int count>;
if v >= v goto label;
v = 1;
goto label;
label:
v = 0;
label:
return v;
}
public java.util.Map$Entry next()
{
org.openjdk.jmh.util.ListStatistics$ListStatisticsIterator v;
java.lang.Double v;
org.openjdk.jmh.util.ListStatistics v;
double[] v;
java.util.AbstractMap$SimpleImmutableEntry v;
java.lang.Long v;
int v, v;
java.util.NoSuchElementException v;
boolean v;
double v;
v := @this: org.openjdk.jmh.util.ListStatistics$ListStatisticsIterator;
v = virtualinvoke v.<org.openjdk.jmh.util.ListStatistics$ListStatisticsIterator: boolean hasNext()>();
if v != 0 goto label;
v = new java.util.NoSuchElementException;
specialinvoke v.<java.util.NoSuchElementException: void <init>(java.lang.String)>("No more elements.");
throw v;
label:
v = new java.util.AbstractMap$SimpleImmutableEntry;
v = v.<org.openjdk.jmh.util.ListStatistics$ListStatisticsIterator: org.openjdk.jmh.util.ListStatistics this$0>;
v = v.<org.openjdk.jmh.util.ListStatistics: double[] values>;
v = v.<org.openjdk.jmh.util.ListStatistics$ListStatisticsIterator: int currentIndex>;
v = v + 1;
v.<org.openjdk.jmh.util.ListStatistics$ListStatisticsIterator: int currentIndex> = v;
v = v[v];
v = staticinvoke <java.lang.Double: java.lang.Double valueOf(double)>(v);
v = staticinvoke <java.lang.Long: java.lang.Long valueOf(long)>(1L);
specialinvoke v.<java.util.AbstractMap$SimpleImmutableEntry: void <init>(java.lang.Object,java.lang.Object)>(v, v);
return v;
}
public void remove()
{
java.lang.UnsupportedOperationException v;
org.openjdk.jmh.util.ListStatistics$ListStatisticsIterator v;
v := @this: org.openjdk.jmh.util.ListStatistics$ListStatisticsIterator;
v = new java.lang.UnsupportedOperationException;
specialinvoke v.<java.lang.UnsupportedOperationException: void <init>(java.lang.String)>("Element cannot be removed.");
throw v;
}
}