final class org.eclipse.collections.impl.list.fixed.SingletonList<T> extends org.eclipse.collections.impl.list.fixed.AbstractMemoryEfficientMutableList<T> implements java.io.Externalizable
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.list.fixed.SingletonList
  super_class: org.eclipse.collections.impl.list.fixed.AbstractMemoryEfficientMutableList
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

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

  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.fixed.SingletonList this
         0: .line 48
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.list.fixed.AbstractMemoryEfficientMutableList.<init>:()V
         1: .line 51
            return
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;

  void <init>();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
        start local 1 // java.lang.Object obj1
         0: .line 53
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.list.fixed.AbstractMemoryEfficientMutableList.<init>:()V
         1: .line 55
            aload 0 /* this */
            aload 1 /* obj1 */
            putfield org.eclipse.collections.impl.list.fixed.SingletonList.element1:Ljava/lang/Object;
         2: .line 56
            return
        end local 1 // java.lang.Object obj1
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    3     1  obj1  TT;
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      obj1  

  public org.eclipse.collections.impl.list.fixed.DoubletonList<T> with(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/DoubletonList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
        start local 1 // java.lang.Object value
         0: .line 61
            new org.eclipse.collections.impl.list.fixed.DoubletonList
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.SingletonList.element1:Ljava/lang/Object;
            aload 1 /* value */
            invokespecial org.eclipse.collections.impl.list.fixed.DoubletonList.<init>:(Ljava/lang/Object;Ljava/lang/Object;)V
            areturn
        end local 1 // java.lang.Object value
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    1     1  value  TT;
    Signature: (TT;)Lorg/eclipse/collections/impl/list/fixed/DoubletonList<TT;>;
    MethodParameters:
       Name  Flags
      value  

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

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
         0: .line 75
            iconst_1
            ireturn
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
        start local 1 // java.lang.Object obj
         0: .line 81
            aload 1 /* obj */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.SingletonList.element1:Ljava/lang/Object;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    1     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  public T get();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
        start local 1 // int index
         0: .line 87
            iload 1 /* index */
            ifne 2
         1: .line 89
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.SingletonList.element1:Ljava/lang/Object;
            areturn
         2: .line 91
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Index: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* index */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", Size: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.fixed.SingletonList.size:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    3     1  index  I
    Signature: (I)TT;
    MethodParameters:
       Name  Flags
      index  

  public T set(int, );
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
        start local 1 // int index
        start local 2 // java.lang.Object element
         0: .line 100
            iload 1 /* index */
            ifne 4
         1: .line 102
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.SingletonList.element1:Ljava/lang/Object;
            astore 3 /* previousElement */
        start local 3 // java.lang.Object previousElement
         2: .line 103
            aload 0 /* this */
            aload 2 /* element */
            putfield org.eclipse.collections.impl.list.fixed.SingletonList.element1:Ljava/lang/Object;
         3: .line 104
            aload 3 /* previousElement */
            areturn
        end local 3 // java.lang.Object previousElement
         4: .line 106
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Index: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* index */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", Size: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.fixed.SingletonList.size:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.Object element
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    5     0             this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    5     1            index  I
            0    5     2          element  TT;
            2    4     3  previousElement  TT;
    Signature: (ITT;)TT;
    MethodParameters:
         Name  Flags
      index    
      element  

  public void replaceAll(java.util.function.UnaryOperator<T>);
    descriptor: (Ljava/util/function/UnaryOperator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
        start local 1 // java.util.function.UnaryOperator operator
         0: .line 115
            aload 0 /* this */
            aload 1 /* operator */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.SingletonList.element1:Ljava/lang/Object;
            invokeinterface java.util.function.UnaryOperator.apply:(Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.list.fixed.SingletonList.element1:Ljava/lang/Object;
         1: .line 116
            return
        end local 1 // java.util.function.UnaryOperator operator
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    2     1  operator  Ljava/util/function/UnaryOperator<TT;>;
    Signature: (Ljava/util/function/UnaryOperator<TT;>;)V
    MethodParameters:
          Name  Flags
      operator  

  public void sort(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
        start local 1 // java.util.Comparator comparator
         0: .line 124
            return
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    1     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)V
    MethodParameters:
            Name  Flags
      comparator  

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

  public <V extends java.lang.Comparable<? super V>> org.eclipse.collections.api.list.MutableList<T> sortThisBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)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.fixed.SingletonList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 135
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V::Ljava/lang/Comparable<-TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.list.MutableList<T> sortThisByInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)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.fixed.SingletonList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction function
         0: .line 141
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction function
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.list.MutableList<T> sortThisByBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)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.fixed.SingletonList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction function
         0: .line 147
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction function
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.list.MutableList<T> sortThisByChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)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.fixed.SingletonList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction function
         0: .line 153
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction function
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.list.MutableList<T> sortThisByByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)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.fixed.SingletonList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction function
         0: .line 159
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction function
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.list.MutableList<T> sortThisByShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)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.fixed.SingletonList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction function
         0: .line 165
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction function
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.list.MutableList<T> sortThisByFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)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.fixed.SingletonList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
         0: .line 171
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.list.MutableList<T> sortThisByLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)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.fixed.SingletonList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction function
         0: .line 177
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction function
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.list.MutableList<T> sortThisByDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)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.fixed.SingletonList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
         0: .line 183
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public T getFirst();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
         0: .line 189
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.SingletonList.element1:Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
    Signature: ()TT;

  public T getLast();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
         0: .line 195
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.SingletonList.element1:Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
    Signature: ()TT;

  public T getOnly();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
         0: .line 201
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.SingletonList.element1:Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
    Signature: ()TT;

  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.fixed.SingletonList this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 207
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.SingletonList.element1:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
         1: .line 208
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<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 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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 213
            aload 1 /* objectIntProcedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.SingletonList.element1:Ljava/lang/Object;
            iconst_0
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure.value:(Ljava/lang/Object;I)V
         1: .line 214
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<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 <P> void forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        start local 2 // java.lang.Object parameter
         0: .line 219
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.SingletonList.element1:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure2.value:(Ljava/lang/Object;Ljava/lang/Object;)V
         1: .line 220
            return
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure2<-TT;-TP;>;
            0    2     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/procedure/Procedure2<-TT;-TP;>;TP;)V
    MethodParameters:
           Name  Flags
      procedure  
      parameter  

  public void writeExternal(java.io.ObjectOutput);
    descriptor: (Ljava/io/ObjectOutput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
        start local 1 // java.io.ObjectOutput out
         0: .line 225
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.fixed.SingletonList.element1:Ljava/lang/Object;
            invokeinterface java.io.ObjectOutput.writeObject:(Ljava/lang/Object;)V
         1: .line 226
            return
        end local 1 // java.io.ObjectOutput out
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    2     1   out  Ljava/io/ObjectOutput;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  public void readExternal(java.io.ObjectInput);
    descriptor: (Ljava/io/ObjectInput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
        start local 1 // java.io.ObjectInput in
         0: .line 231
            aload 0 /* this */
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readObject:()Ljava/lang/Object;
            putfield org.eclipse.collections.impl.list.fixed.SingletonList.element1:Ljava/lang/Object;
         1: .line 232
            return
        end local 1 // java.io.ObjectInput in
        end local 0 // org.eclipse.collections.impl.list.fixed.SingletonList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/list/fixed/SingletonList<TT;>;
            0    2     1    in  Ljava/io/ObjectInput;
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      in    

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

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

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

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

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

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

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