public class org.hsqldb.lib.OrderedIntHashSet extends org.hsqldb.map.BaseHashMap
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hsqldb.lib.OrderedIntHashSet
  super_class: org.hsqldb.map.BaseHashMap
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.hsqldb.lib.OrderedIntHashSet this
         0: .line 44
            aload 0 /* this */
            bipush 8
            invokespecial org.hsqldb.lib.OrderedIntHashSet.<init>:(I)V
         1: .line 45
            return
        end local 0 // org.hsqldb.lib.OrderedIntHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hsqldb/lib/OrderedIntHashSet;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.OrderedIntHashSet this
        start local 1 // int initialCapacity
         0: .line 50
            aload 0 /* this */
            iload 1 /* initialCapacity */
            iconst_1
         1: .line 51
            iconst_0
            iconst_0
            invokespecial org.hsqldb.map.BaseHashMap.<init>:(IIIZ)V
         2: .line 53
            aload 0 /* this */
            iconst_1
            putfield org.hsqldb.lib.OrderedIntHashSet.isList:Z
         3: .line 54
            return
        end local 1 // int initialCapacity
        end local 0 // org.hsqldb.lib.OrderedIntHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lorg/hsqldb/lib/OrderedIntHashSet;
            0    4     1  initialCapacity  I
    Exceptions:
      throws java.lang.IllegalArgumentException
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public void <init>(int[]);
    descriptor: ([I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.OrderedIntHashSet this
        start local 1 // int[] elements
         0: .line 58
            aload 0 /* this */
            aload 1 /* elements */
            arraylength
            iconst_1
         1: .line 59
            iconst_0
            iconst_0
            invokespecial org.hsqldb.map.BaseHashMap.<init>:(IIIZ)V
         2: .line 61
            aload 0 /* this */
            iconst_1
            putfield org.hsqldb.lib.OrderedIntHashSet.isList:Z
         3: .line 63
            aload 0 /* this */
            aload 1 /* elements */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.addAll:([I)Z
            pop
         4: .line 64
            return
        end local 1 // int[] elements
        end local 0 // org.hsqldb.lib.OrderedIntHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/hsqldb/lib/OrderedIntHashSet;
            0    5     1  elements  [I
    MethodParameters:
          Name  Flags
      elements  

  public void <init>(int[], int[]);
    descriptor: ([I[I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.hsqldb.lib.OrderedIntHashSet this
        start local 1 // int[] elementsA
        start local 2 // int[] elementsB
         0: .line 68
            aload 0 /* this */
            aload 1 /* elementsA */
            arraylength
            aload 2 /* elementsB */
            arraylength
            iadd
            iconst_1
         1: .line 69
            iconst_0
            iconst_0
            invokespecial org.hsqldb.map.BaseHashMap.<init>:(IIIZ)V
         2: .line 71
            aload 0 /* this */
            iconst_1
            putfield org.hsqldb.lib.OrderedIntHashSet.isList:Z
         3: .line 73
            aload 0 /* this */
            aload 1 /* elementsA */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.addAll:([I)Z
            pop
         4: .line 74
            aload 0 /* this */
            aload 2 /* elementsB */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.addAll:([I)Z
            pop
         5: .line 75
            return
        end local 2 // int[] elementsB
        end local 1 // int[] elementsA
        end local 0 // org.hsqldb.lib.OrderedIntHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/hsqldb/lib/OrderedIntHashSet;
            0    6     1  elementsA  [I
            0    6     2  elementsB  [I
    MethodParameters:
           Name  Flags
      elementsA  
      elementsB  

  public boolean contains(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.OrderedIntHashSet this
        start local 1 // int key
         0: .line 78
            aload 0 /* this */
            iload 1 /* key */
            invokespecial org.hsqldb.map.BaseHashMap.containsKey:(I)Z
            ireturn
        end local 1 // int key
        end local 0 // org.hsqldb.lib.OrderedIntHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hsqldb/lib/OrderedIntHashSet;
            0    1     1   key  I
    MethodParameters:
      Name  Flags
      key   

  public boolean add(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=3, args_size=2
        start local 0 // org.hsqldb.lib.OrderedIntHashSet this
        start local 1 // int key
         0: .line 83
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.size:()I
            istore 2 /* oldSize */
        start local 2 // int oldSize
         1: .line 85
            aload 0 /* this */
            iload 1 /* key */
            i2l
            lconst_0
            aconst_null
            aconst_null
            iconst_0
            invokespecial org.hsqldb.map.BaseHashMap.addOrRemove:(JJLjava/lang/Object;Ljava/lang/Object;Z)Ljava/lang/Object;
            pop
         2: .line 87
            iload 2 /* oldSize */
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.size:()I
            if_icmpeq 3
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         3: iconst_0
            ireturn
        end local 2 // int oldSize
        end local 1 // int key
        end local 0 // org.hsqldb.lib.OrderedIntHashSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/hsqldb/lib/OrderedIntHashSet;
            0    4     1      key  I
            1    4     2  oldSize  I
    MethodParameters:
      Name  Flags
      key   

  public boolean remove(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=6, args_size=2
        start local 0 // org.hsqldb.lib.OrderedIntHashSet this
        start local 1 // int key
         0: .line 92
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.size:()I
            istore 2 /* oldSize */
        start local 2 // int oldSize
         1: .line 94
            aload 0 /* this */
            iload 1 /* key */
            i2l
            lconst_0
            aconst_null
            aconst_null
            iconst_1
            invokespecial org.hsqldb.map.BaseHashMap.addOrRemove:(JJLjava/lang/Object;Ljava/lang/Object;Z)Ljava/lang/Object;
            pop
         2: .line 96
            iload 2 /* oldSize */
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.size:()I
            if_icmpeq 3
            iconst_1
            goto 4
      StackMap locals: int
      StackMap stack:
         3: iconst_0
      StackMap locals:
      StackMap stack: int
         4: istore 3 /* result */
        start local 3 // boolean result
         5: .line 98
            iload 3 /* result */
            ifeq 13
         6: .line 99
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.toArray:()[I
            astore 4 /* array */
        start local 4 // int[] array
         7: .line 101
            aload 0 /* this */
            invokespecial org.hsqldb.map.BaseHashMap.clear:()V
         8: .line 103
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         9: goto 12
        10: .line 104
      StackMap locals: int int[] int
      StackMap stack:
            aload 0 /* this */
            aload 4 /* array */
            iload 5 /* i */
            iaload
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.add:(I)Z
            pop
        11: .line 103
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 5 /* i */
            aload 4 /* array */
            arraylength
            if_icmplt 10
        end local 5 // int i
        end local 4 // int[] array
        13: .line 108
      StackMap locals:
      StackMap stack:
            iload 3 /* result */
            ireturn
        end local 3 // boolean result
        end local 2 // int oldSize
        end local 1 // int key
        end local 0 // org.hsqldb.lib.OrderedIntHashSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lorg/hsqldb/lib/OrderedIntHashSet;
            0   14     1      key  I
            1   14     2  oldSize  I
            5   14     3   result  Z
            7   13     4    array  [I
            9   13     5        i  I
    MethodParameters:
      Name  Flags
      key   

  public int get(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.OrderedIntHashSet this
        start local 1 // int index
         0: .line 113
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.checkRange:(I)V
         1: .line 115
            aload 0 /* this */
            getfield org.hsqldb.lib.OrderedIntHashSet.intKeyTable:[I
            iload 1 /* index */
            iaload
            ireturn
        end local 1 // int index
        end local 0 // org.hsqldb.lib.OrderedIntHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/hsqldb/lib/OrderedIntHashSet;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getIndex(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.OrderedIntHashSet this
        start local 1 // int value
         0: .line 119
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.getLookup:(I)I
            ireturn
        end local 1 // int value
        end local 0 // org.hsqldb.lib.OrderedIntHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/hsqldb/lib/OrderedIntHashSet;
            0    1     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public int getStartMatchCount(int[]);
    descriptor: ([I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.hsqldb.lib.OrderedIntHashSet this
        start local 1 // int[] array
         0: .line 124
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: .line 126
            goto 5
         2: .line 127
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* array */
            iload 2 /* i */
            iaload
            invokespecial org.hsqldb.map.BaseHashMap.containsKey:(I)Z
            ifne 4
         3: .line 128
            goto 6
         4: .line 126
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 1 /* array */
            arraylength
            if_icmplt 2
         6: .line 132
      StackMap locals:
      StackMap stack:
            iload 2 /* i */
            ireturn
        end local 2 // int i
        end local 1 // int[] array
        end local 0 // org.hsqldb.lib.OrderedIntHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/hsqldb/lib/OrderedIntHashSet;
            0    7     1  array  [I
            1    7     2      i  I
    MethodParameters:
       Name  Flags
      array  

  public int getOrderedStartMatchCount(int[]);
    descriptor: ([I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.hsqldb.lib.OrderedIntHashSet this
        start local 1 // int[] array
         0: .line 137
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: .line 139
            goto 5
         2: .line 140
      StackMap locals: int
      StackMap stack:
            iload 2 /* i */
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.size:()I
            if_icmpge 6
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.get:(I)I
            aload 1 /* array */
            iload 2 /* i */
            iaload
            if_icmpeq 4
         3: .line 141
            goto 6
         4: .line 139
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 1 /* array */
            arraylength
            if_icmplt 2
         6: .line 145
      StackMap locals:
      StackMap stack:
            iload 2 /* i */
            ireturn
        end local 2 // int i
        end local 1 // int[] array
        end local 0 // org.hsqldb.lib.OrderedIntHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/hsqldb/lib/OrderedIntHashSet;
            0    7     1  array  [I
            1    7     2      i  I
    MethodParameters:
       Name  Flags
      array  

  public boolean addAll(org.hsqldb.lib.Collection);
    descriptor: (Lorg/hsqldb/lib/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.hsqldb.lib.OrderedIntHashSet this
        start local 1 // org.hsqldb.lib.Collection col
         0: .line 150
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.size:()I
            istore 2 /* oldSize */
        start local 2 // int oldSize
         1: .line 151
            aload 1 /* col */
            invokeinterface org.hsqldb.lib.Collection.iterator:()Lorg/hsqldb/lib/Iterator;
            astore 3 /* it */
        start local 3 // org.hsqldb.lib.Iterator it
         2: .line 153
            goto 4
         3: .line 154
      StackMap locals: int org.hsqldb.lib.Iterator
      StackMap stack:
            aload 0 /* this */
            aload 3 /* it */
            invokeinterface org.hsqldb.lib.Iterator.nextInt:()I
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.add:(I)Z
            pop
         4: .line 153
      StackMap locals:
      StackMap stack:
            aload 3 /* it */
            invokeinterface org.hsqldb.lib.Iterator.hasNext:()Z
            ifne 3
         5: .line 157
            iload 2 /* oldSize */
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.size:()I
            if_icmpeq 6
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         6: iconst_0
            ireturn
        end local 3 // org.hsqldb.lib.Iterator it
        end local 2 // int oldSize
        end local 1 // org.hsqldb.lib.Collection col
        end local 0 // org.hsqldb.lib.OrderedIntHashSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/hsqldb/lib/OrderedIntHashSet;
            0    7     1      col  Lorg/hsqldb/lib/Collection;
            1    7     2  oldSize  I
            2    7     3       it  Lorg/hsqldb/lib/Iterator;
    MethodParameters:
      Name  Flags
      col   

  public boolean addAll(org.hsqldb.lib.OrderedIntHashSet);
    descriptor: (Lorg/hsqldb/lib/OrderedIntHashSet;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.hsqldb.lib.OrderedIntHashSet this
        start local 1 // org.hsqldb.lib.OrderedIntHashSet set
         0: .line 162
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.size:()I
            istore 2 /* oldSize */
        start local 2 // int oldSize
         1: .line 163
            aload 1 /* set */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.size:()I
            istore 3 /* setSize */
        start local 3 // int setSize
         2: .line 165
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         3: goto 7
         4: .line 166
      StackMap locals: int int int
      StackMap stack:
            aload 1 /* set */
            iload 4 /* i */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.get:(I)I
            istore 5 /* value */
        start local 5 // int value
         5: .line 168
            aload 0 /* this */
            iload 5 /* value */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.add:(I)Z
            pop
        end local 5 // int value
         6: .line 165
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            iload 3 /* setSize */
            if_icmplt 4
        end local 4 // int i
         8: .line 171
            iload 2 /* oldSize */
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.size:()I
            if_icmpeq 9
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         9: iconst_0
            ireturn
        end local 3 // int setSize
        end local 2 // int oldSize
        end local 1 // org.hsqldb.lib.OrderedIntHashSet set
        end local 0 // org.hsqldb.lib.OrderedIntHashSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/hsqldb/lib/OrderedIntHashSet;
            0   10     1      set  Lorg/hsqldb/lib/OrderedIntHashSet;
            1   10     2  oldSize  I
            2   10     3  setSize  I
            3    8     4        i  I
            5    6     5    value  I
    MethodParameters:
      Name  Flags
      set   

  public boolean addAll(int[]);
    descriptor: ([I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.hsqldb.lib.OrderedIntHashSet this
        start local 1 // int[] elements
         0: .line 176
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.size:()I
            istore 2 /* oldSize */
        start local 2 // int oldSize
         1: .line 178
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 179
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* elements */
            iload 3 /* i */
            iaload
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.add:(I)Z
            pop
         4: .line 178
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 1 /* elements */
            arraylength
            if_icmplt 3
        end local 3 // int i
         6: .line 182
            iload 2 /* oldSize */
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.size:()I
            if_icmpeq 7
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         7: iconst_0
            ireturn
        end local 2 // int oldSize
        end local 1 // int[] elements
        end local 0 // org.hsqldb.lib.OrderedIntHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lorg/hsqldb/lib/OrderedIntHashSet;
            0    8     1  elements  [I
            1    8     2   oldSize  I
            2    6     3         i  I
    MethodParameters:
          Name  Flags
      elements  

  public int[] toArray();
    descriptor: ()[I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // org.hsqldb.lib.OrderedIntHashSet this
         0: .line 187
            iconst_m1
            istore 1 /* lookup */
        start local 1 // int lookup
         1: .line 188
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.size:()I
            newarray 10
            astore 2 /* array */
        start local 2 // int[] array
         2: .line 190
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 8
         4: .line 191
      StackMap locals: int int[] int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* lookup */
            invokespecial org.hsqldb.map.BaseHashMap.nextLookup:(I)I
            istore 1 /* lookup */
         5: .line 193
            aload 0 /* this */
            getfield org.hsqldb.lib.OrderedIntHashSet.intKeyTable:[I
            iload 1 /* lookup */
            iaload
            istore 4 /* value */
        start local 4 // int value
         6: .line 195
            aload 2 /* array */
            iload 3 /* i */
            iload 4 /* value */
            iastore
        end local 4 // int value
         7: .line 190
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 3 /* i */
            aload 2 /* array */
            arraylength
            if_icmplt 4
        end local 3 // int i
         9: .line 198
            aload 2 /* array */
            areturn
        end local 2 // int[] array
        end local 1 // int lookup
        end local 0 // org.hsqldb.lib.OrderedIntHashSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lorg/hsqldb/lib/OrderedIntHashSet;
            1   10     1  lookup  I
            2   10     2   array  [I
            3    9     3       i  I
            6    7     4   value  I

  private void checkRange(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.OrderedIntHashSet this
        start local 1 // int i
         0: .line 203
            iload 1 /* i */
            iflt 1
            iload 1 /* i */
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.OrderedIntHashSet.size:()I
            if_icmplt 2
         1: .line 204
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 206
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int i
        end local 0 // org.hsqldb.lib.OrderedIntHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/hsqldb/lib/OrderedIntHashSet;
            0    3     1     i  I
    MethodParameters:
      Name  Flags
      i     
}
SourceFile: "OrderedIntHashSet.java"