public interface org.eclipse.collections.api.factory.list.MutableListFactory
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: org.eclipse.collections.api.factory.list.MutableListFactory
  super_class: java.lang.Object
{
  public abstract <T> org.eclipse.collections.api.list.MutableList<T> empty();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <T:Ljava/lang/Object;>()Lorg/eclipse/collections/api/list/MutableList<TT;>;

  public <T> org.eclipse.collections.api.list.MutableList<T> of();
    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.api.factory.list.MutableListFactory this
         0: .line 30
            aload 0 /* this */
            invokeinterface org.eclipse.collections.api.factory.list.MutableListFactory.empty:()Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 0 // org.eclipse.collections.api.factory.list.MutableListFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/api/factory/list/MutableListFactory;
    Signature: <T:Ljava/lang/Object;>()Lorg/eclipse/collections/api/list/MutableList<TT;>;

  public <T> org.eclipse.collections.api.list.MutableList<T> with();
    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.api.factory.list.MutableListFactory this
         0: .line 38
            aload 0 /* this */
            invokeinterface org.eclipse.collections.api.factory.list.MutableListFactory.empty:()Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 0 // org.eclipse.collections.api.factory.list.MutableListFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/api/factory/list/MutableListFactory;
    Signature: <T:Ljava/lang/Object;>()Lorg/eclipse/collections/api/list/MutableList<TT;>;

  public <T> org.eclipse.collections.api.list.MutableList<T> of(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.factory.list.MutableListFactory this
        start local 1 // java.lang.Object[] items
         0: .line 46
            aload 0 /* this */
            aload 1 /* items */
            invokeinterface org.eclipse.collections.api.factory.list.MutableListFactory.with:([Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 1 // java.lang.Object[] items
        end local 0 // org.eclipse.collections.api.factory.list.MutableListFactory this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/api/factory/list/MutableListFactory;
            0    1     1  items  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
       Name  Flags
      items  

  public abstract <T> org.eclipse.collections.api.list.MutableList<T> with(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0481) ACC_PUBLIC, ACC_VARARGS, ACC_ABSTRACT
    Signature: <T:Ljava/lang/Object;>([TT;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
       Name  Flags
      items  

  public <T> org.eclipse.collections.api.list.MutableList<T> wrapCopy(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.api.factory.list.MutableListFactory this
        start local 1 // java.lang.Object[] array
         0: .line 62
            aload 1 /* array */
            arraylength
            anewarray java.lang.Object
            astore 2 /* newArray */
        start local 2 // java.lang.Object[] newArray
         1: .line 63
            aload 1 /* array */
            iconst_0
            aload 2 /* newArray */
            iconst_0
            aload 1 /* array */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 64
            aload 0 /* this */
            aload 2 /* newArray */
            invokeinterface org.eclipse.collections.api.factory.list.MutableListFactory.with:([Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 2 // java.lang.Object[] newArray
        end local 1 // java.lang.Object[] array
        end local 0 // org.eclipse.collections.api.factory.list.MutableListFactory this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/collections/api/factory/list/MutableListFactory;
            0    3     1     array  [Ljava/lang/Object;
            1    3     2  newArray  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
       Name  Flags
      array  

  public <T> org.eclipse.collections.api.list.MutableList<T> ofInitialCapacity(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.api.factory.list.MutableListFactory this
        start local 1 // int capacity
         0: .line 72
            aload 0 /* this */
            iload 1 /* capacity */
            invokeinterface org.eclipse.collections.api.factory.list.MutableListFactory.withInitialCapacity:(I)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 1 // int capacity
        end local 0 // org.eclipse.collections.api.factory.list.MutableListFactory this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/api/factory/list/MutableListFactory;
            0    1     1  capacity  I
    Signature: <T:Ljava/lang/Object;>(I)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
          Name  Flags
      capacity  

  public abstract <T> org.eclipse.collections.api.list.MutableList<T> withInitialCapacity(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <T:Ljava/lang/Object;>(I)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
          Name  Flags
      capacity  

  public <T> org.eclipse.collections.api.list.MutableList<T> ofAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.factory.list.MutableListFactory this
        start local 1 // java.lang.Iterable iterable
         0: .line 85
            aload 0 /* this */
            aload 1 /* iterable */
            invokeinterface org.eclipse.collections.api.factory.list.MutableListFactory.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 1 // java.lang.Iterable iterable
        end local 0 // org.eclipse.collections.api.factory.list.MutableListFactory this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/api/factory/list/MutableListFactory;
            0    1     1  iterable  Ljava/lang/Iterable<+TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
          Name  Flags
      iterable  

  public abstract <T> org.eclipse.collections.api.list.MutableList<T> withAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
          Name  Flags
      iterable  

  public abstract <T> org.eclipse.collections.api.list.MutableList<T> fromStream(java.util.stream.Stream<? extends T>);
    descriptor: (Ljava/util/stream/Stream;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <T:Ljava/lang/Object;>(Ljava/util/stream/Stream<+TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
        Name  Flags
      stream  

  public abstract <T> org.eclipse.collections.api.list.MutableList<T> withNValues(int, org.eclipse.collections.api.block.function.Function0<? extends T>);
    descriptor: (ILorg/eclipse/collections/api/block/function/Function0;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <T:Ljava/lang/Object;>(ILorg/eclipse/collections/api/block/function/Function0<+TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
         Name  Flags
      size     
      factory  
}
SourceFile: "MutableListFactory.java"