public class org.eclipse.collections.impl.list.mutable.MutableListFactoryImpl implements org.eclipse.collections.api.factory.list.MutableListFactory
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.list.mutable.MutableListFactoryImpl
  super_class: java.lang.Object
{
  public static final org.eclipse.collections.api.factory.list.MutableListFactory INSTANCE;
    descriptor: Lorg/eclipse/collections/api/factory/list/MutableListFactory;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 22
            new org.eclipse.collections.impl.list.mutable.MutableListFactoryImpl
            dup
            invokespecial org.eclipse.collections.impl.list.mutable.MutableListFactoryImpl.<init>:()V
            putstatic org.eclipse.collections.impl.list.mutable.MutableListFactoryImpl.INSTANCE:Lorg/eclipse/collections/api/factory/list/MutableListFactory;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.MutableListFactoryImpl this
         0: .line 20
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.eclipse.collections.impl.list.mutable.MutableListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/mutable/MutableListFactoryImpl;

  public <T> org.eclipse.collections.api.list.MutableList<T> empty();
    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.MutableListFactoryImpl this
         0: .line 27
            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.MutableListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/mutable/MutableListFactoryImpl;
    Signature: <T:Ljava/lang/Object;>()Lorg/eclipse/collections/api/list/MutableList<TT;>;

  public <T> org.eclipse.collections.api.list.MutableList<T> with(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.MutableListFactoryImpl this
        start local 1 // java.lang.Object[] items
         0: .line 39
            aload 1 /* items */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newListWith:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
        end local 1 // java.lang.Object[] items
        end local 0 // org.eclipse.collections.impl.list.mutable.MutableListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/mutable/MutableListFactoryImpl;
            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 <T> org.eclipse.collections.api.list.MutableList<T> withInitialCapacity(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.MutableListFactoryImpl this
        start local 1 // int capacity
         0: .line 45
            iload 1 /* capacity */
            ifge 2
         1: .line 47
            new java.lang.IllegalArgumentException
            dup
            ldc "initial capacity cannot be less than 0"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 50
      StackMap locals:
      StackMap stack:
            iload 1 /* capacity */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
        end local 1 // int capacity
        end local 0 // org.eclipse.collections.impl.list.mutable.MutableListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/collections/impl/list/mutable/MutableListFactoryImpl;
            0    3     1  capacity  I
    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> withAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.MutableListFactoryImpl this
        start local 1 // java.lang.Iterable iterable
         0: .line 56
            aload 1 /* iterable */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
        end local 1 // java.lang.Iterable iterable
        end local 0 // org.eclipse.collections.impl.list.mutable.MutableListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/MutableListFactoryImpl;
            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 <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: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.MutableListFactoryImpl this
        start local 1 // int size
        start local 2 // org.eclipse.collections.api.block.function.Function0 factory
         0: .line 62
            iload 1 /* size */
            aload 2 /* factory */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newWithNValues:(ILorg/eclipse/collections/api/block/function/Function0;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function0 factory
        end local 1 // int size
        end local 0 // org.eclipse.collections.impl.list.mutable.MutableListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/eclipse/collections/impl/list/mutable/MutableListFactoryImpl;
            0    1     1     size  I
            0    1     2  factory  Lorg/eclipse/collections/api/block/function/Function0<+TT;>;
    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  

  public <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: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.MutableListFactoryImpl this
        start local 1 // java.util.stream.Stream stream
         0: .line 68
            aload 1 /* stream */
            invokedynamic get()Ljava/util/function/Supplier;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()Ljava/lang/Object;
                  org/eclipse/collections/impl/list/mutable/FastList.newList()Lorg/eclipse/collections/impl/list/mutable/FastList; (6)
                  ()Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokestatic java.util.stream.Collectors.toCollection:(Ljava/util/function/Supplier;)Ljava/util/stream/Collector;
            invokeinterface java.util.stream.Stream.collect:(Ljava/util/stream/Collector;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.list.MutableList
            areturn
        end local 1 // java.util.stream.Stream stream
        end local 0 // org.eclipse.collections.impl.list.mutable.MutableListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/list/mutable/MutableListFactoryImpl;
            0    1     1  stream  Ljava/util/stream/Stream<+TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/util/stream/Stream<+TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
        Name  Flags
      stream  
}
SourceFile: "MutableListFactoryImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles