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

  private final java.util.List<T> delegate;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<TT;>;

  void <init>(java.util.List<T>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // java.util.List newDelegate
         0: .line 52
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.list.mutable.AbstractListAdapter.<init>:()V
         1: .line 54
            aload 1 /* newDelegate */
            ifnonnull 3
         2: .line 56
            new java.lang.NullPointerException
            dup
            ldc "ListAdapter may not wrap null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 58
      StackMap locals: org.eclipse.collections.impl.list.mutable.ListAdapter java.util.List
      StackMap stack:
            aload 1 /* newDelegate */
            instanceof java.util.RandomAccess
            ifeq 5
         4: .line 60
            new java.lang.IllegalArgumentException
            dup
            ldc "Use RandomAccessListAdapter instead"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 62
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* newDelegate */
            putfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
         6: .line 63
            return
        end local 1 // java.util.List newDelegate
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    7     1  newDelegate  Ljava/util/List<TT;>;
    Signature: (Ljava/util/List<TT;>;)V
    MethodParameters:
             Name  Flags
      newDelegate  

  protected java.util.List<T> getDelegate();
    descriptor: ()Ljava/util/List;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
         0: .line 68
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
    Signature: ()Ljava/util/List<TT;>;

  public static <E> org.eclipse.collections.api.list.MutableList<E> adapt(java.util.List<E>);
    descriptor: (Ljava/util/List;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.util.List list
         0: .line 73
            aload 0 /* list */
            instanceof org.eclipse.collections.api.list.MutableList
            ifeq 2
         1: .line 75
            aload 0 /* list */
            checkcast org.eclipse.collections.api.list.MutableList
            areturn
         2: .line 77
      StackMap locals:
      StackMap stack:
            aload 0 /* list */
            instanceof java.util.ArrayList
            ifeq 4
         3: .line 79
            aload 0 /* list */
            checkcast java.util.ArrayList
            invokestatic org.eclipse.collections.impl.list.mutable.ArrayListAdapter.adapt:(Ljava/util/ArrayList;)Lorg/eclipse/collections/impl/list/mutable/ArrayListAdapter;
            areturn
         4: .line 81
      StackMap locals:
      StackMap stack:
            aload 0 /* list */
            instanceof java.util.RandomAccess
            ifeq 6
         5: .line 83
            new org.eclipse.collections.impl.list.mutable.RandomAccessListAdapter
            dup
            aload 0 /* list */
            invokespecial org.eclipse.collections.impl.list.mutable.RandomAccessListAdapter.<init>:(Ljava/util/List;)V
            areturn
         6: .line 85
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.list.mutable.ListAdapter
            dup
            aload 0 /* list */
            invokespecial org.eclipse.collections.impl.list.mutable.ListAdapter.<init>:(Ljava/util/List;)V
            areturn
        end local 0 // java.util.List list
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  list  Ljava/util/List<TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/List<TE;>;)Lorg/eclipse/collections/api/list/MutableList<TE;>;
    MethodParameters:
      Name  Flags
      list  

  public org.eclipse.collections.api.list.ImmutableList<T> toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
         0: .line 91
            getstatic org.eclipse.collections.api.factory.Lists.immutable:Lorg/eclipse/collections/api/factory/list/ImmutableListFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            invokeinterface org.eclipse.collections.api.factory.list.ImmutableListFactory.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/list/ImmutableList<TT;>;

  public org.eclipse.collections.api.list.MutableList<T> asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
         0: .line 97
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.list.mutable.UnmodifiableMutableList.of:(Ljava/util/List;)Lorg/eclipse/collections/impl/list/mutable/UnmodifiableMutableList;
            areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/list/MutableList<TT;>;

  public org.eclipse.collections.api.list.MutableList<T> asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
         0: .line 103
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.list.mutable.SynchronizedMutableList.of:(Ljava/util/List;)Lorg/eclipse/collections/impl/list/mutable/SynchronizedMutableList;
            areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/list/MutableList<TT;>;

  public org.eclipse.collections.api.list.MutableList<T> clone();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
         0: .line 109
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/list/MutableList<TT;>;

  public org.eclipse.collections.api.list.MutableList<T> newEmpty();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
         0: .line 119
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/list/MutableList<TT;>;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

  public void each(org.eclipse.collections.api.block.procedure.Procedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 125
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 1 /* procedure */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.forEach:(Ljava/util/List;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 126
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public void reverseForEach(org.eclipse.collections.api.block.procedure.Procedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 131
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 1 /* procedure */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.reverseForEach:(Ljava/util/List;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 132
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public void reverseForEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure procedure
         0: .line 137
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 1 /* procedure */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.reverseForEachWithIndex:(Ljava/util/List;Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
         1: .line 138
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure procedure
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public void forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 143
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 1 /* objectIntProcedure */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.forEachWithIndex:(Ljava/util/List;Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
         1: .line 144
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    2     1  objectIntProcedure  Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;)V
    MethodParameters:
                    Name  Flags
      objectIntProcedure  

  public void forEachWithIndex(int, int, org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T>);
    descriptor: (IILorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // int fromIndex
        start local 2 // int toIndex
        start local 3 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 149
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            aload 3 /* objectIntProcedure */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.forEachWithIndex:(Ljava/util/List;IILorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
         1: .line 150
            return
        end local 3 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    2     1           fromIndex  I
            0    2     2             toIndex  I
            0    2     3  objectIntProcedure  Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;
    Signature: (IILorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;)V
    MethodParameters:
                    Name  Flags
      fromIndex           
      toIndex             
      objectIntProcedure  

  public T detect(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 155
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.detect:(Ljava/util/List;Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)TT;
    MethodParameters:
           Name  Flags
      predicate  

  public T detectIfNone(org.eclipse.collections.api.block.predicate.Predicate<? super T>, org.eclipse.collections.api.block.function.Function0<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function0 function
         0: .line 161
            aload 0 /* this */
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.detect:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 162
            aload 3 /* result */
            ifnonnull 2
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            goto 3
      StackMap locals: java.lang.Object
      StackMap stack:
         2: aload 3 /* result */
      StackMap locals:
      StackMap stack: java.lang.Object
         3: areturn
        end local 3 // java.lang.Object result
        end local 2 // org.eclipse.collections.api.block.function.Function0 function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    4     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    4     2   function  Lorg/eclipse/collections/api/block/function/Function0<+TT;>;
            1    4     3     result  TT;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/function/Function0<+TT;>;)TT;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  public int detectIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 168
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.detectIndex:(Ljava/util/List;Lorg/eclipse/collections/api/block/predicate/Predicate;)I
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)I
    MethodParameters:
           Name  Flags
      predicate  

  public int detectLastIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 174
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.detectLastIndex:(Ljava/util/List;Lorg/eclipse/collections/api/block/predicate/Predicate;)I
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)I
    MethodParameters:
           Name  Flags
      predicate  

  public int count(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 180
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.count:(Ljava/util/List;Lorg/eclipse/collections/api/block/predicate/Predicate;)I
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)I
    MethodParameters:
           Name  Flags
      predicate  

  public <S> boolean corresponds(org.eclipse.collections.api.ordered.OrderedIterable<S>, org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super S>);
    descriptor: (Lorg/eclipse/collections/api/ordered/OrderedIterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // org.eclipse.collections.api.ordered.OrderedIterable other
        start local 2 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
         0: .line 186
            aload 0 /* this */
            aload 1 /* other */
            aload 2 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.OrderedIterate.corresponds:(Lorg/eclipse/collections/api/ordered/OrderedIterable;Lorg/eclipse/collections/api/ordered/OrderedIterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;)Z
            ireturn
        end local 2 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 1 // org.eclipse.collections.api.ordered.OrderedIterable other
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    1     1      other  Lorg/eclipse/collections/api/ordered/OrderedIterable<TS;>;
            0    1     2  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TS;>;
    Signature: <S:Ljava/lang/Object;>(Lorg/eclipse/collections/api/ordered/OrderedIterable<TS;>;Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TS;>;)Z
    MethodParameters:
           Name  Flags
      other      
      predicate  

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 192
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.anySatisfy:(Ljava/util/List;Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 198
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.allSatisfy:(Ljava/util/List;Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 204
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.noneSatisfy:(Ljava/util/List;Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <IV> IV injectInto(IV, org.eclipse.collections.api.block.function.Function2<? super IV, ? super T, ? extends IV>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.Function2 function
         0: .line 210
            aload 1 /* injectedValue */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.injectInto:(Ljava/lang/Object;Ljava/util/List;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function2 function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    1     1  injectedValue  TIV;
            0    1     2       function  Lorg/eclipse/collections/api/block/function/Function2<-TIV;-TT;+TIV;>;
    Signature: <IV:Ljava/lang/Object;>(TIV;Lorg/eclipse/collections/api/block/function/Function2<-TIV;-TT;+TIV;>;)TIV;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public void forEach(int, int, org.eclipse.collections.api.block.procedure.Procedure<? super T>);
    descriptor: (IILorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // int fromIndex
        start local 2 // int toIndex
        start local 3 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 216
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            aload 3 /* procedure */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.forEach:(Ljava/util/List;IILorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 217
            return
        end local 3 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    2     1  fromIndex  I
            0    2     2    toIndex  I
            0    2     3  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
    Signature: (IILorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
    MethodParameters:
           Name  Flags
      fromIndex  
      toIndex    
      procedure  

  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 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // java.util.Comparator comparator
         0: .line 225
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 1 /* comparator */
            invokeinterface java.util.List.sort:(Ljava/util/Comparator;)V
         1: .line 226
            return
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    2     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)V
    MethodParameters:
            Name  Flags
      comparator  

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

  public org.eclipse.collections.impl.list.mutable.ListAdapter<T> sortThis();
    descriptor: ()Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
         0: .line 243
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.list.mutable.AbstractListAdapter.sortThis:()Lorg/eclipse/collections/api/list/MutableList;
            checkcast org.eclipse.collections.impl.list.mutable.ListAdapter
            areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;

  public org.eclipse.collections.impl.list.mutable.ListAdapter<T> with(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // java.lang.Object element
         0: .line 249
            aload 0 /* this */
            aload 1 /* element */
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.add:(Ljava/lang/Object;)Z
            pop
         1: .line 250
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    2     1  element  TT;
    Signature: (TT;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.impl.list.mutable.ListAdapter<T> with(T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // java.lang.Object element1
        start local 2 // java.lang.Object element2
         0: .line 255
            aload 0 /* this */
            aload 1 /* element1 */
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.add:(Ljava/lang/Object;)Z
            pop
         1: .line 256
            aload 0 /* this */
            aload 2 /* element2 */
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.add:(Ljava/lang/Object;)Z
            pop
         2: .line 257
            aload 0 /* this */
            areturn
        end local 2 // java.lang.Object element2
        end local 1 // java.lang.Object element1
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    3     1  element1  TT;
            0    3     2  element2  TT;
    Signature: (TT;TT;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
    MethodParameters:
          Name  Flags
      element1  
      element2  

  public org.eclipse.collections.impl.list.mutable.ListAdapter<T> with(T, T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // java.lang.Object element1
        start local 2 // java.lang.Object element2
        start local 3 // java.lang.Object element3
         0: .line 262
            aload 0 /* this */
            aload 1 /* element1 */
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.add:(Ljava/lang/Object;)Z
            pop
         1: .line 263
            aload 0 /* this */
            aload 2 /* element2 */
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.add:(Ljava/lang/Object;)Z
            pop
         2: .line 264
            aload 0 /* this */
            aload 3 /* element3 */
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.add:(Ljava/lang/Object;)Z
            pop
         3: .line 265
            aload 0 /* this */
            areturn
        end local 3 // java.lang.Object element3
        end local 2 // java.lang.Object element2
        end local 1 // java.lang.Object element1
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    4     1  element1  TT;
            0    4     2  element2  TT;
            0    4     3  element3  TT;
    Signature: (TT;TT;TT;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
    MethodParameters:
          Name  Flags
      element1  
      element2  
      element3  

  public org.eclipse.collections.impl.list.mutable.ListAdapter<T> with(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // java.lang.Object[] elements
         0: .line 270
            aload 1 /* elements */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            invokestatic org.eclipse.collections.impl.block.procedure.CollectionAddProcedure.on:(Ljava/util/Collection;)Lorg/eclipse/collections/impl/block/procedure/CollectionAddProcedure;
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.forEach:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 271
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Object[] elements
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    2     1  elements  [Ljava/lang/Object;
    Signature: ([TT;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.impl.list.mutable.ListAdapter<T> without(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // java.lang.Object element
         0: .line 277
            aload 0 /* this */
            aload 1 /* element */
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.remove:(Ljava/lang/Object;)Z
            pop
         1: .line 278
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    2     1  element  TT;
    Signature: (TT;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.impl.list.mutable.ListAdapter<T> withAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // java.lang.Iterable elements
         0: .line 284
            aload 0 /* this */
            aload 1 /* elements */
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.addAllIterable:(Ljava/lang/Iterable;)Z
            pop
         1: .line 285
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Iterable elements
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    2     1  elements  Ljava/lang/Iterable<+TT;>;
    Signature: (Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.impl.list.mutable.ListAdapter<T> withoutAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // java.lang.Iterable elements
         0: .line 291
            aload 0 /* this */
            aload 1 /* elements */
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.removeAllIterable:(Ljava/lang/Iterable;)Z
            pop
         1: .line 292
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Iterable elements
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    2     1  elements  Ljava/lang/Iterable<+TT;>;
    Signature: (Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public <S> org.eclipse.collections.api.list.MutableList<S> selectInstancesOf(java.lang.Class<S>);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // java.lang.Class clazz
         0: .line 298
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 1 /* clazz */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.selectInstancesOf:(Ljava/util/List;Ljava/lang/Class;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 1 // java.lang.Class clazz
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    1     1  clazz  Ljava/lang/Class<TS;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Class<TS;>;)Lorg/eclipse/collections/api/list/MutableList<TS;>;
    MethodParameters:
       Name  Flags
      clazz  

  public org.eclipse.collections.api.list.MutableList<T> distinct();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
         0: .line 304
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            invokestatic org.eclipse.collections.impl.utility.ListIterate.distinct:(Ljava/util/List;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/list/MutableList<TT;>;

  public org.eclipse.collections.api.list.MutableList<T> distinct(org.eclipse.collections.api.block.HashingStrategy<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/HashingStrategy;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // org.eclipse.collections.api.block.HashingStrategy hashingStrategy
         0: .line 310
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 1 /* hashingStrategy */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.distinct:(Ljava/util/List;Lorg/eclipse/collections/api/block/HashingStrategy;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 1 // org.eclipse.collections.api.block.HashingStrategy hashingStrategy
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    1     1  hashingStrategy  Lorg/eclipse/collections/api/block/HashingStrategy<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/HashingStrategy<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
                 Name  Flags
      hashingStrategy  

  public org.eclipse.collections.api.list.MutableList<T> take(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // int count
         0: .line 316
            aload 0 /* this */
            iload 1 /* count */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.take:(Ljava/util/List;I)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    1     1  count  I
    Signature: (I)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
       Name  Flags
      count  

  public org.eclipse.collections.api.list.MutableList<T> takeWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 322
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.takeWhile:(Ljava/util/List;Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.list.MutableList<T> drop(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // int count
         0: .line 328
            aload 0 /* this */
            iload 1 /* count */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.drop:(Ljava/util/List;I)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    1     1  count  I
    Signature: (I)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
       Name  Flags
      count  

  public org.eclipse.collections.api.list.MutableList<T> dropWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 334
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.dropWhile:(Ljava/util/List;Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.partition.list.PartitionMutableList<T> partitionWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 340
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.ListAdapter.delegate:Ljava/util/List;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.ListIterate.partitionWhile:(Ljava/util/List;Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.list.ParallelListIterable<T> asParallel(java.util.concurrent.ExecutorService, int);
    descriptor: (Ljava/util/concurrent/ExecutorService;I)Lorg/eclipse/collections/api/list/ParallelListIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
        start local 1 // java.util.concurrent.ExecutorService executorService
        start local 2 // int batchSize
         0: .line 346
            new org.eclipse.collections.impl.lazy.parallel.list.NonParallelListIterable
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.lazy.parallel.list.NonParallelListIterable.<init>:(Lorg/eclipse/collections/api/list/ListIterable;)V
            areturn
        end local 2 // int batchSize
        end local 1 // java.util.concurrent.ExecutorService executorService
        end local 0 // org.eclipse.collections.impl.list.mutable.ListAdapter this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/eclipse/collections/impl/list/mutable/ListAdapter<TT;>;
            0    1     1  executorService  Ljava/util/concurrent/ExecutorService;
            0    1     2        batchSize  I
    Signature: (Ljava/util/concurrent/ExecutorService;I)Lorg/eclipse/collections/api/list/ParallelListIterable<TT;>;
    MethodParameters:
                 Name  Flags
      executorService  
      batchSize        

  public org.eclipse.collections.api.ordered.ReversibleIterable take(int);
    descriptor: (I)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
            iload 1
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.take:(I)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable take(int);
    descriptor: (I)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
            iload 1
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.take:(I)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/collection/ImmutableCollection;
    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.mutable.ListAdapter.toImmutable:()Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection newEmpty();
    descriptor: ()Lorg/eclipse/collections/api/collection/MutableCollection;
    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.mutable.ListAdapter.newEmpty:()Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  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.mutable.ListAdapter.withoutAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
            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.mutable.ListAdapter.withoutAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected java.util.Collection getDelegate();
    descriptor: ()Ljava/util/Collection;
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.getDelegate:()Ljava/util/List;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.OrderedIterable dropWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)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.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.dropWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable dropWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)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.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.dropWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable dropWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)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.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.dropWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
            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.mutable.ListAdapter.clone:()Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException

  public org.eclipse.collections.api.list.MutableList sortThis();
    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.mutable.ListAdapter.sortThis:()Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  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.mutable.ListAdapter.sortThis:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
            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.mutable.ListAdapter.without:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
            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.mutable.ListAdapter.without:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/collection/MutableCollection;
    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.mutable.ListAdapter.asSynchronized:()Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.OrderedIterable takeWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)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.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.takeWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable takeWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)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.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.takeWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable takeWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)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.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.takeWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable distinct(org.eclipse.collections.api.block.HashingStrategy);
    descriptor: (Lorg/eclipse/collections/api/block/HashingStrategy;)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.HashingStrategy
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.distinct:(Lorg/eclipse/collections/api/block/HashingStrategy;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.OrderedIterable distinct();
    descriptor: ()Lorg/eclipse/collections/api/ordered/OrderedIterable;
    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.mutable.ListAdapter.distinct:()Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable distinct();
    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.mutable.ListAdapter.distinct:()Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable distinct();
    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.mutable.ListAdapter.distinct:()Lorg/eclipse/collections/api/list/MutableList;
            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.mutable.ListAdapter.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
            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.mutable.ListAdapter.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)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 java.lang.Class
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)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.Class
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.OrderedIterable selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)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 java.lang.Class
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)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 java.lang.Class
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)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 java.lang.Class
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/list/MutableList;
            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.mutable.ListAdapter.with:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
            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.mutable.ListAdapter.with:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/ListAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable drop(int);
    descriptor: (I)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
            iload 1
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.drop:(I)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable drop(int);
    descriptor: (I)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
            iload 1
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.drop:(I)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/collection/MutableCollection;
    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.mutable.ListAdapter.asUnmodifiable:()Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.ordered.PartitionOrderedIterable partitionWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/ordered/PartitionOrderedIterable;
    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.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.partitionWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.ordered.PartitionReversibleIterable partitionWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/ordered/PartitionReversibleIterable;
    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.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.partitionWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.list.PartitionList partitionWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionList;
    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.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.list.mutable.ListAdapter.partitionWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Lorg/eclipse/collections/impl/list/mutable/AbstractListAdapter<TT;>;Ljava/io/Serializable;
SourceFile: "ListAdapter.java"