public final class org.eclipse.collections.impl.list.fixed.ArrayAdapter<T> extends org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter<T> implements java.io.Serializable, org.eclipse.collections.api.list.FixedSizeList<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.list.fixed.ArrayAdapter
  super_class: org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final java.lang.Object[] EMPTY_ARRAY;
    descriptor: [Ljava/lang/Object;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 48
            iconst_0
            anewarray java.lang.Object
            putstatic org.eclipse.collections.impl.list.fixed.ArrayAdapter.EMPTY_ARRAY:[Ljava/lang/Object;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>();
    descriptor: ([Ljava/lang/Object;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
        start local 1 // java.lang.Object[] newElements
         0: .line 52
            aload 0 /* this */
            aload 1 /* newElements */
            invokespecial org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.<init>:([Ljava/lang/Object;)V
         1: .line 53
            return
        end local 1 // java.lang.Object[] newElements
        end local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
            0    2     1  newElements  [Ljava/lang/Object;
    Signature: ([TT;)V
    MethodParameters:
             Name  Flags
      newElements  

  public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> adapt(E[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.Object[] array
         0: .line 57
            new org.eclipse.collections.impl.list.fixed.ArrayAdapter
            dup
            aload 0 /* array */
            invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
            areturn
        end local 0 // java.lang.Object[] array
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  array  [Ljava/lang/Object;
    Signature: <E:Ljava/lang/Object;>([TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
    MethodParameters:
       Name  Flags
      array  

  public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArray();
    descriptor: ()Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 62
            getstatic org.eclipse.collections.impl.list.fixed.ArrayAdapter.EMPTY_ARRAY:[Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.list.fixed.ArrayAdapter.newArrayWith:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <E:Ljava/lang/Object;>()Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;

  public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArray(java.lang.Iterable<? extends E>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.Iterable source
         0: .line 67
            new org.eclipse.collections.impl.list.fixed.ArrayAdapter
            dup
            aload 0 /* source */
            invokestatic org.eclipse.collections.impl.utility.Iterate.toArray:(Ljava/lang/Iterable;)[Ljava/lang/Object;
            invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
            areturn
        end local 0 // java.lang.Iterable source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  source  Ljava/lang/Iterable<+TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/lang/Iterable<+TE;>;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
    MethodParameters:
        Name  Flags
      source  

  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 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
         0: .line 76
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.ArrayAdapter.items:[Ljava/lang/Object;
            bipush 16
            invokestatic java.util.Spliterators.spliterator:([Ljava/lang/Object;I)Ljava/util/Spliterator;
            areturn
        end local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
    Signature: ()Ljava/util/Spliterator<TT;>;

  public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWithItem(java.lang.Iterable<? extends E>, E);
    descriptor: (Ljava/lang/Iterable;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // java.lang.Iterable iterable
        start local 1 // java.lang.Object itemToAdd
         0: .line 81
            aload 0 /* iterable */
            invokestatic org.eclipse.collections.impl.utility.Iterate.sizeOf:(Ljava/lang/Iterable;)I
            istore 2 /* oldSize */
        start local 2 // int oldSize
         1: .line 82
            iload 2 /* oldSize */
            iconst_1
            iadd
            anewarray java.lang.Object
            astore 3 /* array */
        start local 3 // java.lang.Object[] array
         2: .line 83
            aload 0 /* iterable */
            aload 3 /* array */
            invokestatic org.eclipse.collections.impl.utility.Iterate.toArray:(Ljava/lang/Iterable;[Ljava/lang/Object;)[Ljava/lang/Object;
            pop
         3: .line 84
            aload 3 /* array */
            iload 2 /* oldSize */
            aload 1 /* itemToAdd */
            aastore
         4: .line 85
            new org.eclipse.collections.impl.list.fixed.ArrayAdapter
            dup
            aload 3 /* array */
            invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
            areturn
        end local 3 // java.lang.Object[] array
        end local 2 // int oldSize
        end local 1 // java.lang.Object itemToAdd
        end local 0 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0   iterable  Ljava/lang/Iterable<+TE;>;
            0    5     1  itemToAdd  TE;
            1    5     2    oldSize  I
            2    5     3      array  [Ljava/lang/Object;
    Signature: <E:Ljava/lang/Object;>(Ljava/lang/Iterable<+TE;>;TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
    MethodParameters:
           Name  Flags
      iterable   
      itemToAdd  

  public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWith(E);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // java.lang.Object one
         0: .line 90
            new org.eclipse.collections.impl.list.fixed.ArrayAdapter
            dup
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* one */
            aastore
            invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
            areturn
        end local 0 // java.lang.Object one
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   one  TE;
    Signature: <E:Ljava/lang/Object;>(TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
    MethodParameters:
      Name  Flags
      one   

  public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWith(E, E);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // java.lang.Object one
        start local 1 // java.lang.Object two
         0: .line 95
            new org.eclipse.collections.impl.list.fixed.ArrayAdapter
            dup
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* one */
            aastore
            dup
            iconst_1
            aload 1 /* two */
            aastore
            invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
            areturn
        end local 1 // java.lang.Object two
        end local 0 // java.lang.Object one
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   one  TE;
            0    1     1   two  TE;
    Signature: <E:Ljava/lang/Object;>(TE;TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
    MethodParameters:
      Name  Flags
      one   
      two   

  public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWith(E, E, E);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // java.lang.Object one
        start local 1 // java.lang.Object two
        start local 2 // java.lang.Object three
         0: .line 100
            new org.eclipse.collections.impl.list.fixed.ArrayAdapter
            dup
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* one */
            aastore
            dup
            iconst_1
            aload 1 /* two */
            aastore
            dup
            iconst_2
            aload 2 /* three */
            aastore
            invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
            areturn
        end local 2 // java.lang.Object three
        end local 1 // java.lang.Object two
        end local 0 // java.lang.Object one
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0    one  TE;
            0    1     1    two  TE;
            0    1     2  three  TE;
    Signature: <E:Ljava/lang/Object;>(TE;TE;TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
    MethodParameters:
       Name  Flags
      one    
      two    
      three  

  public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWith(E, E, E, E);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // java.lang.Object one
        start local 1 // java.lang.Object two
        start local 2 // java.lang.Object three
        start local 3 // java.lang.Object four
         0: .line 105
            new org.eclipse.collections.impl.list.fixed.ArrayAdapter
            dup
            iconst_4
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* one */
            aastore
            dup
            iconst_1
            aload 1 /* two */
            aastore
            dup
            iconst_2
            aload 2 /* three */
            aastore
            dup
            iconst_3
            aload 3 /* four */
            aastore
            invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
            areturn
        end local 3 // java.lang.Object four
        end local 2 // java.lang.Object three
        end local 1 // java.lang.Object two
        end local 0 // java.lang.Object one
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0    one  TE;
            0    1     1    two  TE;
            0    1     2  three  TE;
            0    1     3   four  TE;
    Signature: <E:Ljava/lang/Object;>(TE;TE;TE;TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
    MethodParameters:
       Name  Flags
      one    
      two    
      three  
      four   

  public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWith(E, E, E, E, E);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // java.lang.Object one
        start local 1 // java.lang.Object two
        start local 2 // java.lang.Object three
        start local 3 // java.lang.Object four
        start local 4 // java.lang.Object five
         0: .line 110
            new org.eclipse.collections.impl.list.fixed.ArrayAdapter
            dup
            iconst_5
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* one */
            aastore
            dup
            iconst_1
            aload 1 /* two */
            aastore
            dup
            iconst_2
            aload 2 /* three */
            aastore
            dup
            iconst_3
            aload 3 /* four */
            aastore
            dup
            iconst_4
            aload 4 /* five */
            aastore
            invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
            areturn
        end local 4 // java.lang.Object five
        end local 3 // java.lang.Object four
        end local 2 // java.lang.Object three
        end local 1 // java.lang.Object two
        end local 0 // java.lang.Object one
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0    one  TE;
            0    1     1    two  TE;
            0    1     2  three  TE;
            0    1     3   four  TE;
            0    1     4   five  TE;
    Signature: <E:Ljava/lang/Object;>(TE;TE;TE;TE;TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
    MethodParameters:
       Name  Flags
      one    
      two    
      three  
      four   
      five   

  public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWith(E, E, E, E, E, E);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=6, args_size=6
        start local 0 // java.lang.Object one
        start local 1 // java.lang.Object two
        start local 2 // java.lang.Object three
        start local 3 // java.lang.Object four
        start local 4 // java.lang.Object five
        start local 5 // java.lang.Object six
         0: .line 115
            new org.eclipse.collections.impl.list.fixed.ArrayAdapter
            dup
            bipush 6
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* one */
            aastore
            dup
            iconst_1
            aload 1 /* two */
            aastore
            dup
            iconst_2
            aload 2 /* three */
            aastore
            dup
            iconst_3
            aload 3 /* four */
            aastore
            dup
            iconst_4
            aload 4 /* five */
            aastore
            dup
            iconst_5
            aload 5 /* six */
            aastore
            invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
            areturn
        end local 5 // java.lang.Object six
        end local 4 // java.lang.Object five
        end local 3 // java.lang.Object four
        end local 2 // java.lang.Object three
        end local 1 // java.lang.Object two
        end local 0 // java.lang.Object one
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0    one  TE;
            0    1     1    two  TE;
            0    1     2  three  TE;
            0    1     3   four  TE;
            0    1     4   five  TE;
            0    1     5    six  TE;
    Signature: <E:Ljava/lang/Object;>(TE;TE;TE;TE;TE;TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
    MethodParameters:
       Name  Flags
      one    
      two    
      three  
      four   
      five   
      six    

  public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWith(E, E, E, E, E, E, E);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=7, args_size=7
        start local 0 // java.lang.Object one
        start local 1 // java.lang.Object two
        start local 2 // java.lang.Object three
        start local 3 // java.lang.Object four
        start local 4 // java.lang.Object five
        start local 5 // java.lang.Object six
        start local 6 // java.lang.Object seven
         0: .line 120
            new org.eclipse.collections.impl.list.fixed.ArrayAdapter
            dup
            bipush 7
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* one */
            aastore
            dup
            iconst_1
            aload 1 /* two */
            aastore
            dup
            iconst_2
            aload 2 /* three */
            aastore
            dup
            iconst_3
            aload 3 /* four */
            aastore
            dup
            iconst_4
            aload 4 /* five */
            aastore
            dup
            iconst_5
            aload 5 /* six */
            aastore
            dup
            bipush 6
            aload 6 /* seven */
            aastore
            invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
            areturn
        end local 6 // java.lang.Object seven
        end local 5 // java.lang.Object six
        end local 4 // java.lang.Object five
        end local 3 // java.lang.Object four
        end local 2 // java.lang.Object three
        end local 1 // java.lang.Object two
        end local 0 // java.lang.Object one
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0    one  TE;
            0    1     1    two  TE;
            0    1     2  three  TE;
            0    1     3   four  TE;
            0    1     4   five  TE;
            0    1     5    six  TE;
            0    1     6  seven  TE;
    Signature: <E:Ljava/lang/Object;>(TE;TE;TE;TE;TE;TE;TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
    MethodParameters:
       Name  Flags
      one    
      two    
      three  
      four   
      five   
      six    
      seven  

  public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWith(E[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.Object[] elements
         0: .line 125
            new org.eclipse.collections.impl.list.fixed.ArrayAdapter
            dup
            aload 0 /* elements */
            invokevirtual java.lang.Object[].clone:()Ljava/lang/Object;
            checkcast java.lang.Object[]
            invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
            areturn
        end local 0 // java.lang.Object[] elements
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  elements  [Ljava/lang/Object;
    Signature: <E:Ljava/lang/Object;>([TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
    MethodParameters:
          Name  Flags
      elements  

  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 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
        start local 1 // int index
        start local 2 // java.lang.Object element
         0: .line 131
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.ArrayAdapter.items:[Ljava/lang/Object;
            iload 1 /* index */
            aaload
            astore 3 /* oldValue */
        start local 3 // java.lang.Object oldValue
         1: .line 132
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.ArrayAdapter.items:[Ljava/lang/Object;
            iload 1 /* index */
            aload 2 /* element */
            aastore
         2: .line 133
            aload 3 /* oldValue */
            areturn
        end local 3 // java.lang.Object oldValue
        end local 2 // java.lang.Object element
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
            0    3     1     index  I
            0    3     2   element  TT;
            1    3     3  oldValue  TT;
    Signature: (ITT;)TT;
    MethodParameters:
         Name  Flags
      index    
      element  

  public org.eclipse.collections.impl.list.fixed.ArrayAdapter<T> with(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
        start local 1 // java.lang.Object value
         0: .line 139
            aload 0 /* this */
            aload 1 /* value */
            invokestatic org.eclipse.collections.impl.list.fixed.ArrayAdapter.newArrayWithItem:(Ljava/lang/Iterable;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
        end local 1 // java.lang.Object value
        end local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
            0    1     1  value  TT;
    Signature: (TT;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
    MethodParameters:
       Name  Flags
      value  

  public org.eclipse.collections.impl.list.fixed.ArrayAdapter<T> without(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
        start local 1 // java.lang.Object element
         0: .line 145
            aload 0 /* this */
            aload 1 /* element */
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.contains:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 147
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.toList:()Lorg/eclipse/collections/api/list/MutableList;
            aload 1 /* element */
            invokeinterface org.eclipse.collections.api.list.MutableList.without:(Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
            invokestatic org.eclipse.collections.impl.list.fixed.ArrayAdapter.newArray:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
         2: .line 149
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
            0    3     1  element  TT;
    Signature: (TT;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.impl.list.fixed.ArrayAdapter<T> withAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
        start local 1 // java.lang.Iterable elements
         0: .line 155
            aload 1 /* elements */
            invokestatic org.eclipse.collections.impl.utility.Iterate.isEmpty:(Ljava/lang/Iterable;)Z
            ifeq 2
         1: .line 157
            aload 0 /* this */
            areturn
         2: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.toList:()Lorg/eclipse/collections/api/list/MutableList;
            aload 1 /* elements */
            invokeinterface org.eclipse.collections.api.list.MutableList.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
            invokestatic org.eclipse.collections.impl.list.fixed.ArrayAdapter.newArray:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
        end local 1 // java.lang.Iterable elements
        end local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
            0    3     1  elements  Ljava/lang/Iterable<+TT;>;
    Signature: (Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.impl.list.fixed.ArrayAdapter<T> withoutAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
        start local 1 // java.lang.Iterable elements
         0: .line 165
            aload 1 /* elements */
            invokestatic org.eclipse.collections.impl.utility.Iterate.isEmpty:(Ljava/lang/Iterable;)Z
            ifeq 2
         1: .line 167
            aload 0 /* this */
            areturn
         2: .line 169
      StackMap locals:
      StackMap stack:
            aload 1 /* elements */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates2.in:()Lorg/eclipse/collections/impl/block/factory/Predicates2;
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.utility.Iterate.anySatisfyWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ifeq 4
         3: .line 171
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.toList:()Lorg/eclipse/collections/api/list/MutableList;
            aload 1 /* elements */
            invokeinterface org.eclipse.collections.api.list.MutableList.withoutAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
            invokestatic org.eclipse.collections.impl.list.fixed.ArrayAdapter.newArray:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
         4: .line 173
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Iterable elements
        end local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
            0    5     1  elements  Ljava/lang/Iterable<+TT;>;
    Signature: (Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.impl.list.fixed.ArrayAdapter<T> clone();
    descriptor: ()Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
         0: .line 179
            new org.eclipse.collections.impl.list.fixed.ArrayAdapter
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.ArrayAdapter.items:[Ljava/lang/Object;
            invokevirtual java.lang.Object[].clone:()Ljava/lang/Object;
            checkcast java.lang.Object[]
            invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
            areturn
        end local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;

  public org.eclipse.collections.impl.list.fixed.ArrayAdapter<T> sortThis(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
        start local 1 // java.util.Comparator comparator
         0: .line 185
            aload 0 /* this */
            aload 1 /* comparator */
            invokespecial org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.sortThis:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/list/MutableList;
            checkcast org.eclipse.collections.impl.list.fixed.ArrayAdapter
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
            0    1     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
    MethodParameters:
            Name  Flags
      comparator  

  public org.eclipse.collections.api.list.FixedSizeList<T> tap(org.eclipse.collections.api.block.procedure.Procedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 191
            aload 0 /* this */
            aload 1 /* procedure */
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.each:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 192
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
    MethodParameters:
           Name  Flags
      procedure  

  public org.eclipse.collections.api.list.FixedSizeList<T> toReversed();
    descriptor: ()Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
         0: .line 198
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.clone:()Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            astore 1 /* result */
        start local 1 // org.eclipse.collections.impl.list.fixed.ArrayAdapter result
         1: .line 199
            aload 1 /* result */
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.reverseThis:()Lorg/eclipse/collections/api/list/MutableList;
            pop
         2: .line 200
            aload 1 /* result */
            areturn
        end local 1 // org.eclipse.collections.impl.list.fixed.ArrayAdapter result
        end local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
            1    3     1  result  Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;

  private void writeObject(java.io.ObjectOutputStream);
    descriptor: (Ljava/io/ObjectOutputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
        start local 1 // java.io.ObjectOutputStream objectOutputStream
         0: .line 206
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.ArrayAdapter.items:[Ljava/lang/Object;
            astore 2 /* localItems */
        start local 2 // java.lang.Object[] localItems
         1: .line 207
            aload 2 /* localItems */
            arraylength
            istore 3 /* size */
        start local 3 // int size
         2: .line 208
            aload 1 /* objectOutputStream */
            iload 3 /* size */
            invokevirtual java.io.ObjectOutputStream.writeInt:(I)V
         3: .line 209
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: goto 7
         5: .line 211
      StackMap locals: java.lang.Object[] int int
      StackMap stack:
            aload 1 /* objectOutputStream */
            aload 2 /* localItems */
            iload 4 /* i */
            aaload
            invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
         6: .line 209
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            iload 3 /* size */
            if_icmplt 5
        end local 4 // int i
         8: .line 213
            return
        end local 3 // int size
        end local 2 // java.lang.Object[] localItems
        end local 1 // java.io.ObjectOutputStream objectOutputStream
        end local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    9     0                this  Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
            0    9     1  objectOutputStream  Ljava/io/ObjectOutputStream;
            1    9     2          localItems  [Ljava/lang/Object;
            2    9     3                size  I
            4    8     4                   i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                    Name  Flags
      objectOutputStream  

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
        start local 1 // java.io.ObjectInputStream objectInputStream
         0: .line 219
            aload 1 /* objectInputStream */
            invokevirtual java.io.ObjectInputStream.readInt:()I
            istore 2 /* arrayLength */
        start local 2 // int arrayLength
         1: .line 220
            aload 0 /* this */
            iload 2 /* arrayLength */
            anewarray java.lang.Object
            putfield org.eclipse.collections.impl.list.fixed.ArrayAdapter.items:[Ljava/lang/Object;
         2: .line 221
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.ArrayAdapter.items:[Ljava/lang/Object;
            astore 3 /* localItems */
        start local 3 // java.lang.Object[] localItems
         3: .line 224
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: goto 7
         5: .line 226
      StackMap locals: int java.lang.Object[] int
      StackMap stack:
            aload 3 /* localItems */
            iload 4 /* i */
            aload 1 /* objectInputStream */
            invokevirtual java.io.ObjectInputStream.readObject:()Ljava/lang/Object;
            aastore
         6: .line 224
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            iload 2 /* arrayLength */
            if_icmplt 5
        end local 4 // int i
         8: .line 228
            return
        end local 3 // java.lang.Object[] localItems
        end local 2 // int arrayLength
        end local 1 // java.io.ObjectInputStream objectInputStream
        end local 0 // org.eclipse.collections.impl.list.fixed.ArrayAdapter this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    9     0               this  Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
            0    9     1  objectInputStream  Ljava/io/ObjectInputStream;
            1    9     2        arrayLength  I
            3    9     3         localItems  [Ljava/lang/Object;
            4    8     4                  i  I
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
                   Name  Flags
      objectInputStream  

  public org.eclipse.collections.api.collection.MutableCollection withoutAll(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.withoutAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList withoutAll(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.withoutAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList clone();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.clone:()Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.clone:()Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException

  public org.eclipse.collections.api.list.MutableList sortThis(java.util.Comparator);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.util.Comparator
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.sortThis:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.FixedSizeList sortThis(java.util.Comparator);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.util.Comparator
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.sortThis:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable toReversed();
    descriptor: ()Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.toReversed:()Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable toReversed();
    descriptor: ()Lorg/eclipse/collections/api/list/ListIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.toReversed:()Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList toReversed();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.toReversed:()Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection without(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.without:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList without(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.without:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.FixedSizeCollection tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/collection/FixedSizeCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.OrderedIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/ListIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection withAll(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList withAll(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection with(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.with:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList with(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.with:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;Ljava/io/Serializable;Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
SourceFile: "ArrayAdapter.java"