public final class com.zaxxer.hikari.util.FastList<T> implements java.util.List<T>, java.util.RandomAccess, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.zaxxer.hikari.util.FastList
  super_class: java.lang.Object
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -4598088075242913858

  private final java.lang.Class<?> clazz;
    descriptor: Ljava/lang/Class;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/Class<*>;

  private T[] elementData;
    descriptor: [Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Signature: [TT;

  private int size;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>(java.lang.Class<?>);
    descriptor: (Ljava/lang/Class;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // java.lang.Class clazz
         0: .line 51
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 53
            aload 0 /* this */
            aload 1 /* clazz */
            bipush 32
            invokestatic java.lang.reflect.Array.newInstance:(Ljava/lang/Class;I)Ljava/lang/Object;
            checkcast java.lang.Object[]
            putfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
         2: .line 54
            aload 0 /* this */
            aload 1 /* clazz */
            putfield com.zaxxer.hikari.util.FastList.clazz:Ljava/lang/Class;
         3: .line 55
            return
        end local 1 // java.lang.Class clazz
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    4     1  clazz  Ljava/lang/Class<*>;
    Signature: (Ljava/lang/Class<*>;)V
    MethodParameters:
       Name  Flags
      clazz  

  public void <init>(java.lang.Class<?>, );
    descriptor: (Ljava/lang/Class;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // java.lang.Class clazz
        start local 2 // int capacity
         0: .line 63
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 65
            aload 0 /* this */
            aload 1 /* clazz */
            iload 2 /* capacity */
            invokestatic java.lang.reflect.Array.newInstance:(Ljava/lang/Class;I)Ljava/lang/Object;
            checkcast java.lang.Object[]
            putfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
         2: .line 66
            aload 0 /* this */
            aload 1 /* clazz */
            putfield com.zaxxer.hikari.util.FastList.clazz:Ljava/lang/Class;
         3: .line 67
            return
        end local 2 // int capacity
        end local 1 // java.lang.Class clazz
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    4     1     clazz  Ljava/lang/Class<*>;
            0    4     2  capacity  I
    Signature: (Ljava/lang/Class<*>;I)V
    MethodParameters:
          Name  Flags
      clazz     
      capacity  

  public boolean add();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // java.lang.Object element
         0: .line 77
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.size:I
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            arraylength
            if_icmpge 3
         1: .line 78
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            aload 0 /* this */
            dup
            getfield com.zaxxer.hikari.util.FastList.size:I
            dup_x1
            iconst_1
            iadd
            putfield com.zaxxer.hikari.util.FastList.size:I
            aload 1 /* element */
            aastore
         2: .line 79
            goto 9
         3: .line 82
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            arraylength
            istore 2 /* oldCapacity */
        start local 2 // int oldCapacity
         4: .line 83
            iload 2 /* oldCapacity */
            iconst_1
            ishl
            istore 3 /* newCapacity */
        start local 3 // int newCapacity
         5: .line 85
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.clazz:Ljava/lang/Class;
            iload 3 /* newCapacity */
            invokestatic java.lang.reflect.Array.newInstance:(Ljava/lang/Class;I)Ljava/lang/Object;
            checkcast java.lang.Object[]
            astore 4 /* newElementData */
        start local 4 // java.lang.Object[] newElementData
         6: .line 86
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            iconst_0
            aload 4 /* newElementData */
            iconst_0
            iload 2 /* oldCapacity */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 87
            aload 4 /* newElementData */
            aload 0 /* this */
            dup
            getfield com.zaxxer.hikari.util.FastList.size:I
            dup_x1
            iconst_1
            iadd
            putfield com.zaxxer.hikari.util.FastList.size:I
            aload 1 /* element */
            aastore
         8: .line 88
            aload 0 /* this */
            aload 4 /* newElementData */
            putfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
        end local 4 // java.lang.Object[] newElementData
        end local 3 // int newCapacity
        end local 2 // int oldCapacity
         9: .line 91
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // java.lang.Object element
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   10     0            this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0   10     1         element  TT;
            4    9     2     oldCapacity  I
            5    9     3     newCapacity  I
            6    9     4  newElementData  [Ljava/lang/Object;
    Signature: (TT;)Z
    MethodParameters:
         Name  Flags
      element  

  public T get();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // int index
         0: .line 103
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            iload 1 /* index */
            aaload
            areturn
        end local 1 // int index
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    1     1  index  I
    Signature: (I)TT;
    MethodParameters:
       Name  Flags
      index  

  public T removeLast();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.zaxxer.hikari.util.FastList this
         0: .line 115
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            aload 0 /* this */
            dup
            getfield com.zaxxer.hikari.util.FastList.size:I
            iconst_1
            isub
            dup_x1
            putfield com.zaxxer.hikari.util.FastList.size:I
            aaload
            astore 1 /* element */
        start local 1 // java.lang.Object element
         1: .line 116
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.size:I
            aconst_null
            aastore
         2: .line 117
            aload 1 /* element */
            areturn
        end local 1 // java.lang.Object element
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            1    3     1  element  TT;
    Signature: ()TT;

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // java.lang.Object element
         0: .line 130
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.size:I
            iconst_1
            isub
            istore 2 /* index */
        start local 2 // int index
         1: goto 9
         2: .line 131
      StackMap locals: int
      StackMap stack:
            aload 1 /* element */
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            iload 2 /* index */
            aaload
            if_acmpne 8
         3: .line 132
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.size:I
            iload 2 /* index */
            isub
            iconst_1
            isub
            istore 3 /* numMoved */
        start local 3 // int numMoved
         4: .line 133
            iload 3 /* numMoved */
            ifle 6
         5: .line 134
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            iload 2 /* index */
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            iload 2 /* index */
            iload 3 /* numMoved */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 136
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            aload 0 /* this */
            dup
            getfield com.zaxxer.hikari.util.FastList.size:I
            iconst_1
            isub
            dup_x1
            putfield com.zaxxer.hikari.util.FastList.size:I
            aconst_null
            aastore
         7: .line 137
            iconst_1
            ireturn
        end local 3 // int numMoved
         8: .line 130
      StackMap locals:
      StackMap stack:
            iinc 2 /* index */ -1
      StackMap locals:
      StackMap stack:
         9: iload 2 /* index */
            ifge 2
        end local 2 // int index
        10: .line 141
            iconst_0
            ireturn
        end local 1 // java.lang.Object element
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0   11     1   element  Ljava/lang/Object;
            1   10     2     index  I
            4    8     3  numMoved  I
    MethodParameters:
         Name  Flags
      element  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.zaxxer.hikari.util.FastList this
         0: .line 150
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 4
         2: .line 151
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            iload 1 /* i */
            aconst_null
            aastore
         3: .line 150
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 1 /* i */
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.size:I
            if_icmplt 2
        end local 1 // int i
         5: .line 154
            aload 0 /* this */
            iconst_0
            putfield com.zaxxer.hikari.util.FastList.size:I
         6: .line 155
            return
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            1    5     1     i  I

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.zaxxer.hikari.util.FastList this
         0: .line 165
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.size:I
            ireturn
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/zaxxer/hikari/util/FastList<TT;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.zaxxer.hikari.util.FastList this
         0: .line 172
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.size:I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/zaxxer/hikari/util/FastList<TT;>;

  public T set(int, );
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // int index
        start local 2 // java.lang.Object element
         0: .line 179
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            iload 1 /* index */
            aaload
            astore 3 /* old */
        start local 3 // java.lang.Object old
         1: .line 180
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            iload 1 /* index */
            aload 2 /* element */
            aastore
         2: .line 181
            aload 3 /* old */
            areturn
        end local 3 // java.lang.Object old
        end local 2 // java.lang.Object element
        end local 1 // int index
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    3     1    index  I
            0    3     2  element  TT;
            1    3     3      old  TT;
    Signature: (ITT;)TT;
    MethodParameters:
         Name  Flags
      index    
      element  

  public T remove();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // int index
         0: .line 188
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.size:I
            ifne 2
         1: .line 189
            aconst_null
            areturn
         2: .line 192
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            iload 1 /* index */
            aaload
            astore 2 /* old */
        start local 2 // java.lang.Object old
         3: .line 194
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.size:I
            iload 1 /* index */
            isub
            iconst_1
            isub
            istore 3 /* numMoved */
        start local 3 // int numMoved
         4: .line 195
            iload 3 /* numMoved */
            ifle 6
         5: .line 196
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            iload 1 /* index */
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            iload 1 /* index */
            iload 3 /* numMoved */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 199
      StackMap locals: java.lang.Object int
      StackMap stack:
            aload 0 /* this */
            getfield com.zaxxer.hikari.util.FastList.elementData:[Ljava/lang/Object;
            aload 0 /* this */
            dup
            getfield com.zaxxer.hikari.util.FastList.size:I
            iconst_1
            isub
            dup_x1
            putfield com.zaxxer.hikari.util.FastList.size:I
            aconst_null
            aastore
         7: .line 201
            aload 2 /* old */
            areturn
        end local 3 // int numMoved
        end local 2 // java.lang.Object old
        end local 1 // int index
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    8     1     index  I
            3    8     2       old  TT;
            4    8     3  numMoved  I
    Signature: (I)TT;
    MethodParameters:
       Name  Flags
      index  

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // java.lang.Object o
         0: .line 208
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.lang.Object o
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public java.util.Iterator<T> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.zaxxer.hikari.util.FastList this
         0: .line 215
            new com.zaxxer.hikari.util.FastList$1
            dup
            aload 0 /* this */
            invokespecial com.zaxxer.hikari.util.FastList$1.<init>:(Lcom/zaxxer/hikari/util/FastList;)V
            areturn
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/zaxxer/hikari/util/FastList<TT;>;
    Signature: ()Ljava/util/Iterator<TT;>;

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.zaxxer.hikari.util.FastList this
         0: .line 240
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/zaxxer/hikari/util/FastList<TT;>;

  public <E> E[] toArray();
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // java.lang.Object[] a
         0: .line 247
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.lang.Object[] a
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    1     1     a  [Ljava/lang/Object;
    Signature: <E:Ljava/lang/Object;>([TE;)[TE;
    MethodParameters:
      Name  Flags
      a     

  public boolean containsAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // java.util.Collection c
         0: .line 254
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.util.Collection c
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    1     1     c  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean addAll(java.util.Collection<? extends T>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // java.util.Collection c
         0: .line 261
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.util.Collection c
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    1     1     c  Ljava/util/Collection<+TT;>;
    Signature: (Ljava/util/Collection<+TT;>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean addAll(int, java.util.Collection<? extends T>);
    descriptor: (ILjava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // int index
        start local 2 // java.util.Collection c
         0: .line 268
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 2 // java.util.Collection c
        end local 1 // int index
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    1     1  index  I
            0    1     2      c  Ljava/util/Collection<+TT;>;
    Signature: (ILjava/util/Collection<+TT;>;)Z
    MethodParameters:
       Name  Flags
      index  
      c      

  public boolean removeAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // java.util.Collection c
         0: .line 275
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.util.Collection c
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    1     1     c  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean retainAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // java.util.Collection c
         0: .line 282
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.util.Collection c
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    1     1     c  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public void add(int, );
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // int index
        start local 2 // java.lang.Object element
         0: .line 289
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 2 // java.lang.Object element
        end local 1 // int index
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    1     1    index  I
            0    1     2  element  TT;
    Signature: (ITT;)V
    MethodParameters:
         Name  Flags
      index    
      element  

  public int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // java.lang.Object o
         0: .line 296
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.lang.Object o
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public int lastIndexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // java.lang.Object o
         0: .line 303
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.lang.Object o
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public java.util.ListIterator<T> listIterator();
    descriptor: ()Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.zaxxer.hikari.util.FastList this
         0: .line 310
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/zaxxer/hikari/util/FastList<TT;>;
    Signature: ()Ljava/util/ListIterator<TT;>;

  public java.util.ListIterator<T> listIterator(int);
    descriptor: (I)Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // int index
         0: .line 317
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // int index
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    1     1  index  I
    Signature: (I)Ljava/util/ListIterator<TT;>;
    MethodParameters:
       Name  Flags
      index  

  public java.util.List<T> subList(int, int);
    descriptor: (II)Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // int fromIndex
        start local 2 // int toIndex
         0: .line 324
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    1     1  fromIndex  I
            0    1     2    toIndex  I
    Signature: (II)Ljava/util/List<TT;>;
    MethodParameters:
           Name  Flags
      fromIndex  
      toIndex    

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.zaxxer.hikari.util.FastList this
         0: .line 331
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/zaxxer/hikari/util/FastList<TT;>;

  public void forEach(java.util.function.Consumer<? super T>);
    descriptor: (Ljava/util/function/Consumer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // java.util.function.Consumer action
         0: .line 338
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.util.function.Consumer action
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    1     1  action  Ljava/util/function/Consumer<-TT;>;
    Signature: (Ljava/util/function/Consumer<-TT;>;)V
    MethodParameters:
        Name  Flags
      action  

  public java.util.Spliterator<T> spliterator();
    descriptor: ()Ljava/util/Spliterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.zaxxer.hikari.util.FastList this
         0: .line 345
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/zaxxer/hikari/util/FastList<TT;>;
    Signature: ()Ljava/util/Spliterator<TT;>;

  public boolean removeIf(java.util.function.Predicate<? super T>);
    descriptor: (Ljava/util/function/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // java.util.function.Predicate filter
         0: .line 352
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.util.function.Predicate filter
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    1     1  filter  Ljava/util/function/Predicate<-TT;>;
    Signature: (Ljava/util/function/Predicate<-TT;>;)Z
    MethodParameters:
        Name  Flags
      filter  

  public void replaceAll(java.util.function.UnaryOperator<T>);
    descriptor: (Ljava/util/function/UnaryOperator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // java.util.function.UnaryOperator operator
         0: .line 359
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.util.function.UnaryOperator operator
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    1     1  operator  Ljava/util/function/UnaryOperator<TT;>;
    Signature: (Ljava/util/function/UnaryOperator<TT;>;)V
    MethodParameters:
          Name  Flags
      operator  

  public void sort(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.zaxxer.hikari.util.FastList this
        start local 1 // java.util.Comparator c
         0: .line 366
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.util.Comparator c
        end local 0 // com.zaxxer.hikari.util.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/zaxxer/hikari/util/FastList<TT;>;
            0    1     1     c  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)V
    MethodParameters:
      Name  Flags
      c     
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Ljava/util/List<TT;>;Ljava/util/RandomAccess;Ljava/io/Serializable;
SourceFile: "FastList.java"
NestMembers:
  com.zaxxer.hikari.util.FastList$1
InnerClasses:
  com.zaxxer.hikari.util.FastList$1