abstract class org.jruby.util.collections.IntHashMap$HashIterator<T> implements java.util.Iterator<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: org.jruby.util.collections.IntHashMap$HashIterator
  super_class: java.lang.Object
{
  org.jruby.util.collections.IntHashMap$Entry<V> next;
    descriptor: Lorg/jruby/util/collections/IntHashMap$Entry;
    flags: (0x0000) 
    Signature: Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;

  int index;
    descriptor: I
    flags: (0x0000) 

  final org.jruby.util.collections.IntHashMap this$0;
    descriptor: Lorg/jruby/util/collections/IntHashMap;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(org.jruby.util.collections.IntHashMap);
    descriptor: (Lorg/jruby/util/collections/IntHashMap;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.jruby.util.collections.IntHashMap$HashIterator this
         0: .line 215
            aload 0 /* this */
            aload 1
            putfield org.jruby.util.collections.IntHashMap$HashIterator.this$0:Lorg/jruby/util/collections/IntHashMap;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 216
            aload 1
            getfield org.jruby.util.collections.IntHashMap.table:[Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 2 /* t */
        start local 2 // org.jruby.util.collections.IntHashMap$Entry[] t
         2: .line 217
            aload 2 /* t */
            arraylength
            istore 3 /* i */
        start local 3 // int i
         3: .line 218
            aconst_null
            astore 4 /* n */
        start local 4 // org.jruby.util.collections.IntHashMap$Entry n
         4: .line 219
            aload 1
            getfield org.jruby.util.collections.IntHashMap.count:I
            ifeq 6
         5: .line 220
      StackMap locals: org.jruby.util.collections.IntHashMap$HashIterator org.jruby.util.collections.IntHashMap org.jruby.util.collections.IntHashMap$Entry[] int org.jruby.util.collections.IntHashMap$Entry
      StackMap stack:
            iload 3 /* i */
            ifle 6
            aload 2 /* t */
            iinc 3 /* i */ -1
            iload 3 /* i */
            aaload
            dup
            astore 4 /* n */
            ifnull 5
         6: .line 223
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* n */
            putfield org.jruby.util.collections.IntHashMap$HashIterator.next:Lorg/jruby/util/collections/IntHashMap$Entry;
         7: .line 224
            aload 0 /* this */
            iload 3 /* i */
            putfield org.jruby.util.collections.IntHashMap$HashIterator.index:I
         8: .line 225
            return
        end local 4 // org.jruby.util.collections.IntHashMap$Entry n
        end local 3 // int i
        end local 2 // org.jruby.util.collections.IntHashMap$Entry[] t
        end local 0 // org.jruby.util.collections.IntHashMap$HashIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/jruby/util/collections/IntHashMap<TV;>.HashIterator<TT;>;
            2    9     2     t  [Lorg/jruby/util/collections/IntHashMap$Entry;
            3    9     3     i  I
            4    9     4     n  Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;
    MethodParameters:
        Name  Flags
      this$0  final

  public boolean hasNext();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.util.collections.IntHashMap$HashIterator this
         0: .line 228
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap$HashIterator.next:Lorg/jruby/util/collections/IntHashMap$Entry;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.jruby.util.collections.IntHashMap$HashIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jruby/util/collections/IntHashMap<TV;>.HashIterator<TT;>;

  org.jruby.util.collections.IntHashMap$Entry<V> nextEntry();
    descriptor: ()Lorg/jruby/util/collections/IntHashMap$Entry;
    flags: (0x0000) 
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // org.jruby.util.collections.IntHashMap$HashIterator this
         0: .line 232
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap$HashIterator.next:Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 1 /* e */
        start local 1 // org.jruby.util.collections.IntHashMap$Entry e
         1: .line 233
            aload 1 /* e */
            ifnonnull 3
         2: .line 234
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         3: .line 236
      StackMap locals: org.jruby.util.collections.IntHashMap$Entry
      StackMap stack:
            aload 1 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.next:Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 2 /* n */
        start local 2 // org.jruby.util.collections.IntHashMap$Entry n
         4: .line 237
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap$HashIterator.this$0:Lorg/jruby/util/collections/IntHashMap;
            getfield org.jruby.util.collections.IntHashMap.table:[Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 3 /* t */
        start local 3 // org.jruby.util.collections.IntHashMap$Entry[] t
         5: .line 238
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap$HashIterator.index:I
            istore 4 /* i */
        start local 4 // int i
         6: .line 239
            goto 8
         7: .line 240
      StackMap locals: org.jruby.util.collections.IntHashMap$Entry org.jruby.util.collections.IntHashMap$Entry[] int
      StackMap stack:
            aload 3 /* t */
            iinc 4 /* i */ -1
            iload 4 /* i */
            aaload
            astore 2 /* n */
         8: .line 239
      StackMap locals:
      StackMap stack:
            aload 2 /* n */
            ifnonnull 9
            iload 4 /* i */
            ifgt 7
         9: .line 242
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            putfield org.jruby.util.collections.IntHashMap$HashIterator.index:I
        10: .line 243
            aload 0 /* this */
            aload 2 /* n */
            putfield org.jruby.util.collections.IntHashMap$HashIterator.next:Lorg/jruby/util/collections/IntHashMap$Entry;
        11: .line 244
            aload 1 /* e */
            areturn
        end local 4 // int i
        end local 3 // org.jruby.util.collections.IntHashMap$Entry[] t
        end local 2 // org.jruby.util.collections.IntHashMap$Entry n
        end local 1 // org.jruby.util.collections.IntHashMap$Entry e
        end local 0 // org.jruby.util.collections.IntHashMap$HashIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lorg/jruby/util/collections/IntHashMap<TV;>.HashIterator<TT;>;
            1   12     1     e  Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;
            4   12     2     n  Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;
            5   12     3     t  [Lorg/jruby/util/collections/IntHashMap$Entry;
            6   12     4     i  I
    Signature: ()Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;

  public void remove();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.jruby.util.collections.IntHashMap$HashIterator this
         0: .line 248
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // org.jruby.util.collections.IntHashMap$HashIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/util/collections/IntHashMap<TV;>.HashIterator<TT;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Ljava/util/Iterator<TT;>;
SourceFile: "IntHashMap.java"
NestHost: org.jruby.util.collections.IntHashMap
InnerClasses:
  public Entry = org.jruby.util.collections.IntHashMap$Entry of org.jruby.util.collections.IntHashMap
  private abstract HashIterator = org.jruby.util.collections.IntHashMap$HashIterator of org.jruby.util.collections.IntHashMap