public class org.jcodings.util.IntHash<V> extends org.jcodings.util.Hash<V>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jcodings.util.IntHash
  super_class: org.jcodings.util.Hash
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jcodings.util.IntHash this
         0: .line 25
            aload 0 /* this */
            invokespecial org.jcodings.util.Hash.<init>:()V
         1: .line 26
            return
        end local 0 // org.jcodings.util.IntHash this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jcodings/util/IntHash<TV;>;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jcodings.util.IntHash this
        start local 1 // int size
         0: .line 29
            aload 0 /* this */
            iload 1 /* size */
            invokespecial org.jcodings.util.Hash.<init>:(I)V
         1: .line 30
            return
        end local 1 // int size
        end local 0 // org.jcodings.util.IntHash this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jcodings/util/IntHash<TV;>;
            0    2     1  size  I
    MethodParameters:
      Name  Flags
      size  

  protected void init();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jcodings.util.IntHash this
         0: .line 33
            aload 0 /* this */
            new org.jcodings.util.IntHash$IntHashEntry
            dup
            invokespecial org.jcodings.util.IntHash$IntHashEntry.<init>:()V
            putfield org.jcodings.util.IntHash.head:Lorg/jcodings/util/Hash$HashEntry;
         1: .line 34
            return
        end local 0 // org.jcodings.util.IntHash this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jcodings/util/IntHash<TV;>;

  public V put(int, );
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=6, args_size=3
        start local 0 // org.jcodings.util.IntHash this
        start local 1 // int key
        start local 2 // java.lang.Object value
         0: .line 47
            aload 0 /* this */
            invokevirtual org.jcodings.util.IntHash.checkResize:()V
         1: .line 48
            iload 1 /* key */
            invokestatic org.jcodings.util.IntHash.hashValue:(I)I
            istore 3 /* hash */
        start local 3 // int hash
         2: .line 49
            iload 3 /* hash */
            aload 0 /* this */
            getfield org.jcodings.util.IntHash.table:[Lorg/jcodings/util/Hash$HashEntry;
            arraylength
            invokestatic org.jcodings.util.IntHash.bucketIndex:(II)I
            istore 4 /* i */
        start local 4 // int i
         3: .line 51
            aload 0 /* this */
            getfield org.jcodings.util.IntHash.table:[Lorg/jcodings/util/Hash$HashEntry;
            iload 4 /* i */
            aaload
            checkcast org.jcodings.util.IntHash$IntHashEntry
            astore 5 /* entry */
        start local 5 // org.jcodings.util.IntHash$IntHashEntry entry
         4: goto 9
         5: .line 52
      StackMap locals: int int org.jcodings.util.IntHash$IntHashEntry
      StackMap stack:
            aload 5 /* entry */
            getfield org.jcodings.util.IntHash$IntHashEntry.hash:I
            iload 3 /* hash */
            if_icmpne 8
         6: .line 53
            aload 5 /* entry */
            aload 2 /* value */
            putfield org.jcodings.util.IntHash$IntHashEntry.value:Ljava/lang/Object;
         7: .line 54
            aload 2 /* value */
            areturn
         8: .line 51
      StackMap locals:
      StackMap stack:
            aload 5 /* entry */
            getfield org.jcodings.util.IntHash$IntHashEntry.next:Lorg/jcodings/util/Hash$HashEntry;
            checkcast org.jcodings.util.IntHash$IntHashEntry
            astore 5 /* entry */
      StackMap locals:
      StackMap stack:
         9: aload 5 /* entry */
            ifnonnull 5
        end local 5 // org.jcodings.util.IntHash$IntHashEntry entry
        10: .line 58
            aload 0 /* this */
            getfield org.jcodings.util.IntHash.table:[Lorg/jcodings/util/Hash$HashEntry;
            iload 4 /* i */
            new org.jcodings.util.IntHash$IntHashEntry
            dup
            iload 3 /* hash */
            aload 0 /* this */
            getfield org.jcodings.util.IntHash.table:[Lorg/jcodings/util/Hash$HashEntry;
            iload 4 /* i */
            aaload
            aload 2 /* value */
            aload 0 /* this */
            getfield org.jcodings.util.IntHash.head:Lorg/jcodings/util/Hash$HashEntry;
            invokespecial org.jcodings.util.IntHash$IntHashEntry.<init>:(ILorg/jcodings/util/Hash$HashEntry;Ljava/lang/Object;Lorg/jcodings/util/Hash$HashEntry;)V
            aastore
        11: .line 59
            aload 0 /* this */
            dup
            getfield org.jcodings.util.IntHash.size:I
            iconst_1
            iadd
            putfield org.jcodings.util.IntHash.size:I
        12: .line 60
            aconst_null
            areturn
        end local 4 // int i
        end local 3 // int hash
        end local 2 // java.lang.Object value
        end local 1 // int key
        end local 0 // org.jcodings.util.IntHash this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lorg/jcodings/util/IntHash<TV;>;
            0   13     1    key  I
            0   13     2  value  TV;
            2   13     3   hash  I
            3   13     4      i  I
            4   10     5  entry  Lorg/jcodings/util/IntHash$IntHashEntry<TV;>;
    Signature: (ITV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

  public void putDirect(int, );
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=5, args_size=3
        start local 0 // org.jcodings.util.IntHash this
        start local 1 // int key
        start local 2 // java.lang.Object value
         0: .line 64
            aload 0 /* this */
            invokevirtual org.jcodings.util.IntHash.checkResize:()V
         1: .line 65
            iload 1 /* key */
            invokestatic org.jcodings.util.IntHash.hashValue:(I)I
            istore 3 /* hash */
        start local 3 // int hash
         2: .line 66
            iload 3 /* hash */
            aload 0 /* this */
            getfield org.jcodings.util.IntHash.table:[Lorg/jcodings/util/Hash$HashEntry;
            arraylength
            invokestatic org.jcodings.util.IntHash.bucketIndex:(II)I
            istore 4 /* i */
        start local 4 // int i
         3: .line 67
            aload 0 /* this */
            getfield org.jcodings.util.IntHash.table:[Lorg/jcodings/util/Hash$HashEntry;
            iload 4 /* i */
            new org.jcodings.util.IntHash$IntHashEntry
            dup
            iload 3 /* hash */
            aload 0 /* this */
            getfield org.jcodings.util.IntHash.table:[Lorg/jcodings/util/Hash$HashEntry;
            iload 4 /* i */
            aaload
            aload 2 /* value */
            aload 0 /* this */
            getfield org.jcodings.util.IntHash.head:Lorg/jcodings/util/Hash$HashEntry;
            invokespecial org.jcodings.util.IntHash$IntHashEntry.<init>:(ILorg/jcodings/util/Hash$HashEntry;Ljava/lang/Object;Lorg/jcodings/util/Hash$HashEntry;)V
            aastore
         4: .line 68
            aload 0 /* this */
            dup
            getfield org.jcodings.util.IntHash.size:I
            iconst_1
            iadd
            putfield org.jcodings.util.IntHash.size:I
         5: .line 69
            return
        end local 4 // int i
        end local 3 // int hash
        end local 2 // java.lang.Object value
        end local 1 // int key
        end local 0 // org.jcodings.util.IntHash this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/jcodings/util/IntHash<TV;>;
            0    6     1    key  I
            0    6     2  value  TV;
            2    6     3   hash  I
            3    6     4      i  I
    Signature: (ITV;)V
    MethodParameters:
       Name  Flags
      key    
      value  

  public V get();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.jcodings.util.IntHash this
        start local 1 // int key
         0: .line 72
            iload 1 /* key */
            invokestatic org.jcodings.util.IntHash.hashValue:(I)I
            istore 2 /* hash */
        start local 2 // int hash
         1: .line 73
            aload 0 /* this */
            getfield org.jcodings.util.IntHash.table:[Lorg/jcodings/util/Hash$HashEntry;
            iload 2 /* hash */
            aload 0 /* this */
            getfield org.jcodings.util.IntHash.table:[Lorg/jcodings/util/Hash$HashEntry;
            arraylength
            invokestatic org.jcodings.util.IntHash.bucketIndex:(II)I
            aaload
            checkcast org.jcodings.util.IntHash$IntHashEntry
            astore 3 /* entry */
        start local 3 // org.jcodings.util.IntHash$IntHashEntry entry
         2: goto 5
         3: .line 74
      StackMap locals: int org.jcodings.util.IntHash$IntHashEntry
      StackMap stack:
            aload 3 /* entry */
            getfield org.jcodings.util.IntHash$IntHashEntry.hash:I
            iload 2 /* hash */
            if_icmpne 4
            aload 3 /* entry */
            getfield org.jcodings.util.IntHash$IntHashEntry.value:Ljava/lang/Object;
            areturn
         4: .line 73
      StackMap locals:
      StackMap stack:
            aload 3 /* entry */
            getfield org.jcodings.util.IntHash$IntHashEntry.next:Lorg/jcodings/util/Hash$HashEntry;
            checkcast org.jcodings.util.IntHash$IntHashEntry
            astore 3 /* entry */
      StackMap locals:
      StackMap stack:
         5: aload 3 /* entry */
            ifnonnull 3
        end local 3 // org.jcodings.util.IntHash$IntHashEntry entry
         6: .line 76
            aconst_null
            areturn
        end local 2 // int hash
        end local 1 // int key
        end local 0 // org.jcodings.util.IntHash this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/jcodings/util/IntHash<TV;>;
            0    7     1    key  I
            1    7     2   hash  I
            2    6     3  entry  Lorg/jcodings/util/IntHash$IntHashEntry<TV;>;
    Signature: (I)TV;
    MethodParameters:
      Name  Flags
      key   

  public V delete();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // org.jcodings.util.IntHash this
        start local 1 // int key
         0: .line 80
            iload 1 /* key */
            invokestatic org.jcodings.util.IntHash.hashValue:(I)I
            istore 2 /* hash */
        start local 2 // int hash
         1: .line 81
            iload 2 /* hash */
            aload 0 /* this */
            getfield org.jcodings.util.IntHash.table:[Lorg/jcodings/util/Hash$HashEntry;
            arraylength
            invokestatic org.jcodings.util.IntHash.bucketIndex:(II)I
            istore 3 /* i */
        start local 3 // int i
         2: .line 83
            aload 0 /* this */
            getfield org.jcodings.util.IntHash.table:[Lorg/jcodings/util/Hash$HashEntry;
            iload 3 /* i */
            aaload
            checkcast org.jcodings.util.IntHash$IntHashEntry
            astore 4 /* entry */
        start local 4 // org.jcodings.util.IntHash$IntHashEntry entry
         3: .line 85
            aload 4 /* entry */
            ifnonnull 4
            aconst_null
            areturn
         4: .line 87
      StackMap locals: int int org.jcodings.util.IntHash$IntHashEntry
      StackMap stack:
            aload 4 /* entry */
            getfield org.jcodings.util.IntHash$IntHashEntry.hash:I
            iload 2 /* hash */
            if_icmpne 16
         5: .line 88
            aload 0 /* this */
            getfield org.jcodings.util.IntHash.table:[Lorg/jcodings/util/Hash$HashEntry;
            iload 3 /* i */
            aload 4 /* entry */
            getfield org.jcodings.util.IntHash$IntHashEntry.next:Lorg/jcodings/util/Hash$HashEntry;
            aastore
         6: .line 89
            aload 0 /* this */
            dup
            getfield org.jcodings.util.IntHash.size:I
            iconst_1
            isub
            putfield org.jcodings.util.IntHash.size:I
         7: .line 90
            aload 4 /* entry */
            invokevirtual org.jcodings.util.IntHash$IntHashEntry.remove:()V
         8: .line 91
            aload 4 /* entry */
            getfield org.jcodings.util.IntHash$IntHashEntry.value:Ljava/lang/Object;
            areturn
         9: .line 95
      StackMap locals:
      StackMap stack:
            aload 4 /* entry */
            getfield org.jcodings.util.IntHash$IntHashEntry.next:Lorg/jcodings/util/Hash$HashEntry;
            astore 5 /* tmp */
        start local 5 // org.jcodings.util.Hash$HashEntry tmp
        10: .line 96
            aload 5 /* tmp */
            getfield org.jcodings.util.Hash$HashEntry.hash:I
            iload 2 /* hash */
            if_icmpne 15
            aload 4 /* entry */
            iload 1 /* key */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 15
        11: .line 97
            aload 4 /* entry */
            aload 4 /* entry */
            getfield org.jcodings.util.IntHash$IntHashEntry.next:Lorg/jcodings/util/Hash$HashEntry;
            getfield org.jcodings.util.Hash$HashEntry.next:Lorg/jcodings/util/Hash$HashEntry;
            putfield org.jcodings.util.IntHash$IntHashEntry.next:Lorg/jcodings/util/Hash$HashEntry;
        12: .line 98
            aload 0 /* this */
            dup
            getfield org.jcodings.util.IntHash.size:I
            iconst_1
            isub
            putfield org.jcodings.util.IntHash.size:I
        13: .line 99
            aload 5 /* tmp */
            invokevirtual org.jcodings.util.Hash$HashEntry.remove:()V
        14: .line 100
            aload 5 /* tmp */
            getfield org.jcodings.util.Hash$HashEntry.value:Ljava/lang/Object;
            areturn
        end local 5 // org.jcodings.util.Hash$HashEntry tmp
        15: .line 94
      StackMap locals:
      StackMap stack:
            aload 4 /* entry */
            getfield org.jcodings.util.IntHash$IntHashEntry.next:Lorg/jcodings/util/Hash$HashEntry;
            checkcast org.jcodings.util.IntHash$IntHashEntry
            astore 4 /* entry */
      StackMap locals:
      StackMap stack:
        16: aload 4 /* entry */
            getfield org.jcodings.util.IntHash$IntHashEntry.next:Lorg/jcodings/util/Hash$HashEntry;
            ifnonnull 9
        17: .line 103
            aconst_null
            areturn
        end local 4 // org.jcodings.util.IntHash$IntHashEntry entry
        end local 3 // int i
        end local 2 // int hash
        end local 1 // int key
        end local 0 // org.jcodings.util.IntHash this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   18     0   this  Lorg/jcodings/util/IntHash<TV;>;
            0   18     1    key  I
            1   18     2   hash  I
            2   18     3      i  I
            3   18     4  entry  Lorg/jcodings/util/IntHash$IntHashEntry<TV;>;
           10   15     5    tmp  Lorg/jcodings/util/Hash$HashEntry<TV;>;
    Signature: (I)TV;
    MethodParameters:
      Name  Flags
      key   
}
Signature: <V:Ljava/lang/Object;>Lorg/jcodings/util/Hash<TV;>;
SourceFile: "IntHash.java"
NestMembers:
  org.jcodings.util.IntHash$IntHashEntry
InnerClasses:
  public HashEntry = org.jcodings.util.Hash$HashEntry of org.jcodings.util.Hash
  public final IntHashEntry = org.jcodings.util.IntHash$IntHashEntry of org.jcodings.util.IntHash