public final class org.pcollections.ConsPStack<E> extends java.util.AbstractSequentialList<E> implements org.pcollections.PStack<E>, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.pcollections.ConsPStack
  super_class: java.util.AbstractSequentialList
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final org.pcollections.ConsPStack<java.lang.Object> EMPTY;
    descriptor: Lorg/pcollections/ConsPStack;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Lorg/pcollections/ConsPStack<Ljava/lang/Object;>;

  private final E first;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: TE;

  private final org.pcollections.ConsPStack<E> rest;
    descriptor: Lorg/pcollections/ConsPStack;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/pcollections/ConsPStack<TE;>;

  private final int size;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 30
            new org.pcollections.ConsPStack
            dup
            invokespecial org.pcollections.ConsPStack.<init>:()V
            putstatic org.pcollections.ConsPStack.EMPTY:Lorg/pcollections/ConsPStack;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static <E> org.pcollections.ConsPStack<E> empty();
    descriptor: ()Lorg/pcollections/ConsPStack;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 38
            getstatic org.pcollections.ConsPStack.EMPTY:Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <E:Ljava/lang/Object;>()Lorg/pcollections/ConsPStack<TE;>;

  public static <E> org.pcollections.ConsPStack<E> singleton(E);
    descriptor: (Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.Object e
         0: .line 47
            invokestatic org.pcollections.ConsPStack.empty:()Lorg/pcollections/ConsPStack;
            aload 0 /* e */
            invokevirtual org.pcollections.ConsPStack.plus:(Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
            areturn
        end local 0 // java.lang.Object e
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     e  TE;
    Signature: <E:Ljava/lang/Object;>(TE;)Lorg/pcollections/ConsPStack<TE;>;
    MethodParameters:
      Name  Flags
      e     final

  public static <E> org.pcollections.ConsPStack<E> from(java.util.Collection<? extends E>);
    descriptor: (Ljava/util/Collection;)Lorg/pcollections/ConsPStack;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.Collection list
         0: .line 57
            aload 0 /* list */
            instanceof org.pcollections.ConsPStack
            ifeq 2
         1: .line 58
            aload 0 /* list */
            checkcast org.pcollections.ConsPStack
            areturn
         2: .line 61
      StackMap locals:
      StackMap stack:
            aload 0 /* list */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            invokestatic org.pcollections.ConsPStack.from:(Ljava/util/Iterator;)Lorg/pcollections/ConsPStack;
            areturn
        end local 0 // java.util.Collection list
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  list  Ljava/util/Collection<+TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/Collection<+TE;>;)Lorg/pcollections/ConsPStack<TE;>;
    MethodParameters:
      Name  Flags
      list  final

  private static <E> org.pcollections.ConsPStack<E> from(java.util.Iterator<? extends E>);
    descriptor: (Ljava/util/Iterator;)Lorg/pcollections/ConsPStack;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.util.Iterator i
         0: .line 65
            aload 0 /* i */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
            invokestatic org.pcollections.ConsPStack.empty:()Lorg/pcollections/ConsPStack;
            areturn
         1: .line 66
      StackMap locals:
      StackMap stack:
            aload 0 /* i */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 1 /* e */
        start local 1 // java.lang.Object e
         2: .line 67
            aload 0 /* i */
            invokestatic org.pcollections.ConsPStack.from:(Ljava/util/Iterator;)Lorg/pcollections/ConsPStack;
            aload 1 /* e */
            invokevirtual org.pcollections.ConsPStack.plus:(Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
            areturn
        end local 1 // java.lang.Object e
        end local 0 // java.util.Iterator i
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     i  Ljava/util/Iterator<+TE;>;
            2    3     1     e  TE;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/Iterator<+TE;>;)Lorg/pcollections/ConsPStack<TE;>;
    MethodParameters:
      Name  Flags
      i     final

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.pcollections.ConsPStack this
         0: .line 75
            aload 0 /* this */
            invokespecial java.util.AbstractSequentialList.<init>:()V
         1: .line 76
            getstatic org.pcollections.ConsPStack.EMPTY:Lorg/pcollections/ConsPStack;
            ifnull 2
            new java.lang.RuntimeException
            dup
            ldc "empty constructor should only be used once"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 77
      StackMap locals: org.pcollections.ConsPStack
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.pcollections.ConsPStack.size:I
         3: .line 78
            aload 0 /* this */
            aconst_null
            putfield org.pcollections.ConsPStack.first:Ljava/lang/Object;
         4: .line 79
            aload 0 /* this */
            aconst_null
            putfield org.pcollections.ConsPStack.rest:Lorg/pcollections/ConsPStack;
         5: .line 80
            return
        end local 0 // org.pcollections.ConsPStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/pcollections/ConsPStack<TE;>;

  private void <init>(E, org.pcollections.ConsPStack<E>);
    descriptor: (Ljava/lang/Object;Lorg/pcollections/ConsPStack;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.pcollections.ConsPStack this
        start local 1 // java.lang.Object first
        start local 2 // org.pcollections.ConsPStack rest
         0: .line 82
            aload 0 /* this */
            invokespecial java.util.AbstractSequentialList.<init>:()V
         1: .line 83
            aload 0 /* this */
            aload 1 /* first */
            putfield org.pcollections.ConsPStack.first:Ljava/lang/Object;
         2: .line 84
            aload 0 /* this */
            aload 2 /* rest */
            putfield org.pcollections.ConsPStack.rest:Lorg/pcollections/ConsPStack;
         3: .line 86
            aload 0 /* this */
            iconst_1
            aload 2 /* rest */
            getfield org.pcollections.ConsPStack.size:I
            iadd
            putfield org.pcollections.ConsPStack.size:I
         4: .line 87
            return
        end local 2 // org.pcollections.ConsPStack rest
        end local 1 // java.lang.Object first
        end local 0 // org.pcollections.ConsPStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/pcollections/ConsPStack<TE;>;
            0    5     1  first  TE;
            0    5     2   rest  Lorg/pcollections/ConsPStack<TE;>;
    Signature: (TE;Lorg/pcollections/ConsPStack<TE;>;)V
    MethodParameters:
       Name  Flags
      first  final
      rest   final

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.pcollections.ConsPStack this
         0: .line 92
            aload 0 /* this */
            getfield org.pcollections.ConsPStack.size:I
            ireturn
        end local 0 // org.pcollections.ConsPStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/pcollections/ConsPStack<TE;>;

  public java.util.ListIterator<E> listIterator(int);
    descriptor: (I)Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.pcollections.ConsPStack this
        start local 1 // int index
         0: .line 97
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.pcollections.ConsPStack.size:I
            if_icmple 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 99
      StackMap locals:
      StackMap stack:
            new org.pcollections.ConsPStack$1
            dup
            aload 0 /* this */
            iload 1 /* index */
            invokespecial org.pcollections.ConsPStack$1.<init>:(Lorg/pcollections/ConsPStack;I)V
            areturn
        end local 1 // int index
        end local 0 // org.pcollections.ConsPStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/pcollections/ConsPStack<TE;>;
            0    3     1  index  I
    Signature: (I)Ljava/util/ListIterator<TE;>;
    MethodParameters:
       Name  Flags
      index  final

  public org.pcollections.ConsPStack<E> subList(int, int);
    descriptor: (II)Lorg/pcollections/ConsPStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // org.pcollections.ConsPStack this
        start local 1 // int start
        start local 2 // int end
         0: .line 149
            iload 1 /* start */
            iflt 1
            iload 2 /* end */
            aload 0 /* this */
            getfield org.pcollections.ConsPStack.size:I
            if_icmpgt 1
            iload 1 /* start */
            iload 2 /* end */
            if_icmple 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 150
      StackMap locals:
      StackMap stack:
            iload 1 /* start */
            iload 2 /* end */
            if_icmpne 3
            invokestatic org.pcollections.ConsPStack.empty:()Lorg/pcollections/ConsPStack;
            areturn
         3: .line 151
      StackMap locals:
      StackMap stack:
            iload 1 /* start */
            ifle 4
            aload 0 /* this */
            iload 1 /* start */
            invokevirtual org.pcollections.ConsPStack.subList:(I)Lorg/pcollections/ConsPStack;
            iconst_0
            iload 2 /* end */
            iload 1 /* start */
            isub
            invokevirtual org.pcollections.ConsPStack.subList:(II)Lorg/pcollections/ConsPStack;
            areturn
         4: .line 152
      StackMap locals:
      StackMap stack:
            iload 2 /* end */
            aload 0 /* this */
            getfield org.pcollections.ConsPStack.size:I
            if_icmpne 5
            aload 0 /* this */
            areturn
         5: .line 155
      StackMap locals:
      StackMap stack:
            invokestatic org.pcollections.ConsPStack.empty:()Lorg/pcollections/ConsPStack;
            astore 3 /* reversed */
        start local 3 // org.pcollections.ConsPStack reversed
         6: .line 156
            aload 0 /* this */
            invokevirtual org.pcollections.ConsPStack.iterator:()Ljava/util/Iterator;
            astore 5
            goto 10
      StackMap locals: org.pcollections.ConsPStack int int org.pcollections.ConsPStack top java.util.Iterator
      StackMap stack:
         7: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 4 /* e */
        start local 4 // java.lang.Object e
         8: .line 157
            aload 3 /* reversed */
            getfield org.pcollections.ConsPStack.size:I
            iload 2 /* end */
            if_icmpne 9
            goto 11
         9: .line 158
      StackMap locals: org.pcollections.ConsPStack int int org.pcollections.ConsPStack java.lang.Object java.util.Iterator
      StackMap stack:
            aload 3 /* reversed */
            aload 4 /* e */
            invokevirtual org.pcollections.ConsPStack.plus:(Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
            astore 3 /* reversed */
        end local 4 // java.lang.Object e
        10: .line 156
      StackMap locals: org.pcollections.ConsPStack int int org.pcollections.ConsPStack top java.util.Iterator
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 7
        11: .line 160
      StackMap locals: org.pcollections.ConsPStack int int org.pcollections.ConsPStack
      StackMap stack:
            invokestatic org.pcollections.ConsPStack.empty:()Lorg/pcollections/ConsPStack;
            aload 3 /* reversed */
            invokevirtual org.pcollections.ConsPStack.plusAll:(Ljava/util/Collection;)Lorg/pcollections/ConsPStack;
            areturn
        end local 3 // org.pcollections.ConsPStack reversed
        end local 2 // int end
        end local 1 // int start
        end local 0 // org.pcollections.ConsPStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lorg/pcollections/ConsPStack<TE;>;
            0   12     1     start  I
            0   12     2       end  I
            6   12     3  reversed  Lorg/pcollections/ConsPStack<TE;>;
            8   10     4         e  TE;
    Signature: (II)Lorg/pcollections/ConsPStack<TE;>;
    MethodParameters:
       Name  Flags
      start  final
      end    final

  public org.pcollections.ConsPStack<E> plus(E);
    descriptor: (Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.pcollections.ConsPStack this
        start local 1 // java.lang.Object e
         0: .line 165
            new org.pcollections.ConsPStack
            dup
            aload 1 /* e */
            aload 0 /* this */
            invokespecial org.pcollections.ConsPStack.<init>:(Ljava/lang/Object;Lorg/pcollections/ConsPStack;)V
            areturn
        end local 1 // java.lang.Object e
        end local 0 // org.pcollections.ConsPStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/pcollections/ConsPStack<TE;>;
            0    1     1     e  TE;
    Signature: (TE;)Lorg/pcollections/ConsPStack<TE;>;
    MethodParameters:
      Name  Flags
      e     final

  public org.pcollections.ConsPStack<E> plusAll(java.util.Collection<? extends E>);
    descriptor: (Ljava/util/Collection;)Lorg/pcollections/ConsPStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.pcollections.ConsPStack this
        start local 1 // java.util.Collection list
         0: .line 169
            aload 0 /* this */
            astore 2 /* result */
        start local 2 // org.pcollections.ConsPStack result
         1: .line 170
            aload 1 /* list */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.pcollections.ConsPStack java.util.Collection org.pcollections.ConsPStack top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 3 /* e */
        start local 3 // java.lang.Object e
         3: aload 2 /* result */
            aload 3 /* e */
            invokevirtual org.pcollections.ConsPStack.plus:(Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
            astore 2 /* result */
        end local 3 // java.lang.Object e
      StackMap locals:
      StackMap stack:
         4: aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 171
            aload 2 /* result */
            areturn
        end local 2 // org.pcollections.ConsPStack result
        end local 1 // java.util.Collection list
        end local 0 // org.pcollections.ConsPStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/pcollections/ConsPStack<TE;>;
            0    6     1    list  Ljava/util/Collection<+TE;>;
            1    6     2  result  Lorg/pcollections/ConsPStack<TE;>;
            3    4     3       e  TE;
    Signature: (Ljava/util/Collection<+TE;>;)Lorg/pcollections/ConsPStack<TE;>;
    MethodParameters:
      Name  Flags
      list  final

  public org.pcollections.ConsPStack<E> plus(int, E);
    descriptor: (ILjava/lang/Object;)Lorg/pcollections/ConsPStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.pcollections.ConsPStack this
        start local 1 // int i
        start local 2 // java.lang.Object e
         0: .line 175
            aload 0 /* this */
            iload 1 /* i */
            aload 2 /* e */
            invokestatic org.pcollections.ConsPStack.singleton:(Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
            invokevirtual org.pcollections.ConsPStack.plusAll:(ILjava/util/Collection;)Lorg/pcollections/ConsPStack;
            areturn
        end local 2 // java.lang.Object e
        end local 1 // int i
        end local 0 // org.pcollections.ConsPStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/pcollections/ConsPStack<TE;>;
            0    1     1     i  I
            0    1     2     e  TE;
    Signature: (ITE;)Lorg/pcollections/ConsPStack<TE;>;
    MethodParameters:
      Name  Flags
      i     final
      e     final

  public org.pcollections.ConsPStack<E> plusAll(int, java.util.Collection<? extends E>);
    descriptor: (ILjava/util/Collection;)Lorg/pcollections/ConsPStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=3
        start local 0 // org.pcollections.ConsPStack this
        start local 1 // int i
        start local 2 // java.util.Collection list
         0: .line 179
            iload 1 /* i */
            iflt 1
            iload 1 /* i */
            aload 0 /* this */
            getfield org.pcollections.ConsPStack.size:I
            if_icmple 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 180
      StackMap locals:
      StackMap stack:
            aload 2 /* list */
            invokeinterface java.util.Collection.isEmpty:()Z
            ifeq 3
            aload 0 /* this */
            areturn
         3: .line 182
      StackMap locals:
      StackMap stack:
            invokestatic org.pcollections.ConsPStack.empty:()Lorg/pcollections/ConsPStack;
            astore 3 /* reversed */
        start local 3 // org.pcollections.ConsPStack reversed
         4: .line 183
            aload 0 /* this */
            astore 4 /* suffix */
        start local 4 // org.pcollections.ConsPStack suffix
         5: .line 184
            goto 8
         6: .line 185
      StackMap locals: org.pcollections.ConsPStack org.pcollections.ConsPStack
      StackMap stack:
            aload 3 /* reversed */
            aload 4 /* suffix */
            getfield org.pcollections.ConsPStack.first:Ljava/lang/Object;
            invokevirtual org.pcollections.ConsPStack.plus:(Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
            astore 3 /* reversed */
         7: .line 186
            aload 4 /* suffix */
            getfield org.pcollections.ConsPStack.rest:Lorg/pcollections/ConsPStack;
            astore 4 /* suffix */
         8: .line 184
      StackMap locals:
      StackMap stack:
            aload 3 /* reversed */
            getfield org.pcollections.ConsPStack.size:I
            iload 1 /* i */
            if_icmplt 6
         9: .line 188
            aload 4 /* suffix */
            aload 2 /* list */
            invokevirtual org.pcollections.ConsPStack.plusAll:(Ljava/util/Collection;)Lorg/pcollections/ConsPStack;
            aload 3 /* reversed */
            invokevirtual org.pcollections.ConsPStack.plusAll:(Ljava/util/Collection;)Lorg/pcollections/ConsPStack;
            areturn
        end local 4 // org.pcollections.ConsPStack suffix
        end local 3 // org.pcollections.ConsPStack reversed
        end local 2 // java.util.Collection list
        end local 1 // int i
        end local 0 // org.pcollections.ConsPStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lorg/pcollections/ConsPStack<TE;>;
            0   10     1         i  I
            0   10     2      list  Ljava/util/Collection<+TE;>;
            4   10     3  reversed  Lorg/pcollections/ConsPStack<TE;>;
            5   10     4    suffix  Lorg/pcollections/ConsPStack<TE;>;
    Signature: (ILjava/util/Collection<+TE;>;)Lorg/pcollections/ConsPStack<TE;>;
    MethodParameters:
      Name  Flags
      i     final
      list  final

  public org.pcollections.ConsPStack<E> minus();
    descriptor: (Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.pcollections.ConsPStack this
        start local 1 // java.lang.Object e
         0: .line 192
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.pcollections.ConsPStack.indexOf:(Ljava/lang/Object;)I
            istore 2 /* i */
        start local 2 // int i
         1: .line 193
            iload 2 /* i */
            iconst_m1
            if_icmpne 2
            aload 0 /* this */
            areturn
         2: .line 194
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.pcollections.ConsPStack.minus:(I)Lorg/pcollections/ConsPStack;
            areturn
        end local 2 // int i
        end local 1 // java.lang.Object e
        end local 0 // org.pcollections.ConsPStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/pcollections/ConsPStack<TE;>;
            0    3     1     e  Ljava/lang/Object;
            1    3     2     i  I
    Signature: (Ljava/lang/Object;)Lorg/pcollections/ConsPStack<TE;>;
    MethodParameters:
      Name  Flags
      e     final

  public org.pcollections.ConsPStack<E> minus(int);
    descriptor: (I)Lorg/pcollections/ConsPStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.pcollections.ConsPStack this
        start local 1 // int i
         0: .line 198
            iload 1 /* i */
            iflt 1
            iload 1 /* i */
            aload 0 /* this */
            getfield org.pcollections.ConsPStack.size:I
            if_icmplt 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.IndexOutOfBoundsException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Index: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* i */
            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 */
            getfield org.pcollections.ConsPStack.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
         2: .line 200
      StackMap locals:
      StackMap stack:
            invokestatic org.pcollections.ConsPStack.empty:()Lorg/pcollections/ConsPStack;
            astore 2 /* reversed */
        start local 2 // org.pcollections.ConsPStack reversed
         3: .line 201
            aload 0 /* this */
            astore 3 /* suffix */
        start local 3 // org.pcollections.ConsPStack suffix
         4: .line 202
            goto 7
         5: .line 203
      StackMap locals: org.pcollections.ConsPStack org.pcollections.ConsPStack
      StackMap stack:
            aload 2 /* reversed */
            aload 3 /* suffix */
            getfield org.pcollections.ConsPStack.first:Ljava/lang/Object;
            invokevirtual org.pcollections.ConsPStack.plus:(Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
            astore 2 /* reversed */
         6: .line 204
            aload 3 /* suffix */
            getfield org.pcollections.ConsPStack.rest:Lorg/pcollections/ConsPStack;
            astore 3 /* suffix */
         7: .line 202
      StackMap locals:
      StackMap stack:
            aload 2 /* reversed */
            getfield org.pcollections.ConsPStack.size:I
            iload 1 /* i */
            if_icmple 5
         8: .line 206
            aload 3 /* suffix */
            aload 2 /* reversed */
            getfield org.pcollections.ConsPStack.rest:Lorg/pcollections/ConsPStack;
            invokevirtual org.pcollections.ConsPStack.plusAll:(Ljava/util/Collection;)Lorg/pcollections/ConsPStack;
            areturn
        end local 3 // org.pcollections.ConsPStack suffix
        end local 2 // org.pcollections.ConsPStack reversed
        end local 1 // int i
        end local 0 // org.pcollections.ConsPStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lorg/pcollections/ConsPStack<TE;>;
            0    9     1         i  I
            3    9     2  reversed  Lorg/pcollections/ConsPStack<TE;>;
            4    9     3    suffix  Lorg/pcollections/ConsPStack<TE;>;
    Signature: (I)Lorg/pcollections/ConsPStack<TE;>;
    MethodParameters:
      Name  Flags
      i     final

  public org.pcollections.ConsPStack<E> minusAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Lorg/pcollections/ConsPStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=7, args_size=2
        start local 0 // org.pcollections.ConsPStack this
        start local 1 // java.util.Collection list
         0: .line 211
            aload 1 /* list */
            invokeinterface java.util.Collection.isEmpty:()Z
            ifeq 1
            aload 0 /* this */
            areturn
         1: .line 213
      StackMap locals:
      StackMap stack:
            invokestatic org.pcollections.ConsPStack.empty:()Lorg/pcollections/ConsPStack;
            astore 2 /* kept */
        start local 2 // org.pcollections.ConsPStack kept
         2: .line 214
            aload 0 /* this */
            astore 3 /* searching */
        start local 3 // org.pcollections.ConsPStack searching
         3: .line 215
            aload 2 /* kept */
            astore 4 /* reversed */
        start local 4 // org.pcollections.ConsPStack reversed
         4: .line 216
            aload 3 /* searching */
            astore 5 /* suffix */
        start local 5 // org.pcollections.ConsPStack suffix
         5: .line 217
            goto 13
         6: .line 218
      StackMap locals: org.pcollections.ConsPStack java.util.Collection org.pcollections.ConsPStack org.pcollections.ConsPStack org.pcollections.ConsPStack org.pcollections.ConsPStack
      StackMap stack:
            aload 3 /* searching */
            getfield org.pcollections.ConsPStack.first:Ljava/lang/Object;
            astore 6 /* e */
        start local 6 // java.lang.Object e
         7: .line 219
            aload 3 /* searching */
            getfield org.pcollections.ConsPStack.rest:Lorg/pcollections/ConsPStack;
            astore 3 /* searching */
         8: .line 220
            aload 1 /* list */
            aload 6 /* e */
            invokeinterface java.util.Collection.contains:(Ljava/lang/Object;)Z
            ifeq 12
         9: .line 222
            aload 2 /* kept */
            astore 4 /* reversed */
        10: .line 223
            aload 3 /* searching */
            astore 5 /* suffix */
        11: .line 224
            goto 13
      StackMap locals: java.lang.Object
      StackMap stack:
        12: aload 2 /* kept */
            aload 6 /* e */
            invokevirtual org.pcollections.ConsPStack.plus:(Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
            astore 2 /* kept */
        end local 6 // java.lang.Object e
        13: .line 217
      StackMap locals:
      StackMap stack:
            aload 3 /* searching */
            getfield org.pcollections.ConsPStack.size:I
            ifgt 6
        14: .line 226
            aload 5 /* suffix */
            aload 4 /* reversed */
            invokevirtual org.pcollections.ConsPStack.plusAll:(Ljava/util/Collection;)Lorg/pcollections/ConsPStack;
            areturn
        end local 5 // org.pcollections.ConsPStack suffix
        end local 4 // org.pcollections.ConsPStack reversed
        end local 3 // org.pcollections.ConsPStack searching
        end local 2 // org.pcollections.ConsPStack kept
        end local 1 // java.util.Collection list
        end local 0 // org.pcollections.ConsPStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   15     0       this  Lorg/pcollections/ConsPStack<TE;>;
            0   15     1       list  Ljava/util/Collection<*>;
            2   15     2       kept  Lorg/pcollections/ConsPStack<TE;>;
            3   15     3  searching  Lorg/pcollections/ConsPStack<TE;>;
            4   15     4   reversed  Lorg/pcollections/ConsPStack<TE;>;
            5   15     5     suffix  Lorg/pcollections/ConsPStack<TE;>;
            7   13     6          e  TE;
    Signature: (Ljava/util/Collection<*>;)Lorg/pcollections/ConsPStack<TE;>;
    MethodParameters:
      Name  Flags
      list  final

  public org.pcollections.ConsPStack<E> with(int, E);
    descriptor: (ILjava/lang/Object;)Lorg/pcollections/ConsPStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=3
        start local 0 // org.pcollections.ConsPStack this
        start local 1 // int i
        start local 2 // java.lang.Object e
         0: .line 230
            iload 1 /* i */
            iflt 1
            iload 1 /* i */
            aload 0 /* this */
            getfield org.pcollections.ConsPStack.size:I
            if_icmplt 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 232
      StackMap locals:
      StackMap stack:
            invokestatic org.pcollections.ConsPStack.empty:()Lorg/pcollections/ConsPStack;
            astore 3 /* reversed */
        start local 3 // org.pcollections.ConsPStack reversed
         3: .line 233
            aload 0 /* this */
            astore 4 /* suffix */
        start local 4 // org.pcollections.ConsPStack suffix
         4: .line 234
            goto 7
         5: .line 235
      StackMap locals: org.pcollections.ConsPStack org.pcollections.ConsPStack
      StackMap stack:
            aload 3 /* reversed */
            aload 4 /* suffix */
            getfield org.pcollections.ConsPStack.first:Ljava/lang/Object;
            invokevirtual org.pcollections.ConsPStack.plus:(Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
            astore 3 /* reversed */
         6: .line 236
            aload 4 /* suffix */
            getfield org.pcollections.ConsPStack.rest:Lorg/pcollections/ConsPStack;
            astore 4 /* suffix */
         7: .line 234
      StackMap locals:
      StackMap stack:
            aload 3 /* reversed */
            getfield org.pcollections.ConsPStack.size:I
            iload 1 /* i */
            if_icmple 5
         8: .line 238
            aload 4 /* suffix */
            aload 2 /* e */
            invokevirtual org.pcollections.ConsPStack.plus:(Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
            aload 3 /* reversed */
            getfield org.pcollections.ConsPStack.rest:Lorg/pcollections/ConsPStack;
            invokevirtual org.pcollections.ConsPStack.plusAll:(Ljava/util/Collection;)Lorg/pcollections/ConsPStack;
            areturn
        end local 4 // org.pcollections.ConsPStack suffix
        end local 3 // org.pcollections.ConsPStack reversed
        end local 2 // java.lang.Object e
        end local 1 // int i
        end local 0 // org.pcollections.ConsPStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lorg/pcollections/ConsPStack<TE;>;
            0    9     1         i  I
            0    9     2         e  TE;
            3    9     3  reversed  Lorg/pcollections/ConsPStack<TE;>;
            4    9     4    suffix  Lorg/pcollections/ConsPStack<TE;>;
    Signature: (ITE;)Lorg/pcollections/ConsPStack<TE;>;
    MethodParameters:
      Name  Flags
      i     final
      e     final

  public org.pcollections.ConsPStack<E> subList(int);
    descriptor: (I)Lorg/pcollections/ConsPStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.pcollections.ConsPStack this
        start local 1 // int start
         0: .line 242
            iload 1 /* start */
            iflt 1
            iload 1 /* start */
            aload 0 /* this */
            getfield org.pcollections.ConsPStack.size:I
            if_icmple 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            astore 2 /* s */
        start local 2 // org.pcollections.ConsPStack s
         3: .line 245
            goto 6
         4: .line 246
      StackMap locals: org.pcollections.ConsPStack
      StackMap stack:
            aload 2 /* s */
            getfield org.pcollections.ConsPStack.rest:Lorg/pcollections/ConsPStack;
            astore 2 /* s */
         5: .line 247
            iinc 1 /* start */ -1
         6: .line 245
      StackMap locals:
      StackMap stack:
            iload 1 /* start */
            ifgt 4
         7: .line 249
            aload 2 /* s */
            areturn
        end local 2 // org.pcollections.ConsPStack s
        end local 1 // int start
        end local 0 // org.pcollections.ConsPStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/pcollections/ConsPStack<TE;>;
            0    8     1  start  I
            3    8     2      s  Lorg/pcollections/ConsPStack<TE;>;
    Signature: (I)Lorg/pcollections/ConsPStack<TE;>;
    MethodParameters:
       Name  Flags
      start  

  public org.pcollections.PSequence with(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)Lorg/pcollections/PSequence;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            aload 2
            checkcast java.lang.Object
            invokevirtual org.pcollections.ConsPStack.with:(ILjava/lang/Object;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PStack with(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)Lorg/pcollections/PStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            aload 2
            checkcast java.lang.Object
            invokevirtual org.pcollections.ConsPStack.with:(ILjava/lang/Object;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PSequence plus(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)Lorg/pcollections/PSequence;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            aload 2
            checkcast java.lang.Object
            invokevirtual org.pcollections.ConsPStack.plus:(ILjava/lang/Object;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PStack plus(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)Lorg/pcollections/PStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            aload 2
            checkcast java.lang.Object
            invokevirtual org.pcollections.ConsPStack.plus:(ILjava/lang/Object;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PCollection plus(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/pcollections/PCollection;
    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.pcollections.ConsPStack.plus:(Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PSequence plus(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/pcollections/PSequence;
    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.pcollections.ConsPStack.plus:(Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PStack plus(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/pcollections/PStack;
    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.pcollections.ConsPStack.plus:(Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PCollection minusAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Lorg/pcollections/PCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.pcollections.ConsPStack.minusAll:(Ljava/util/Collection;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PSequence minusAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Lorg/pcollections/PSequence;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.pcollections.ConsPStack.minusAll:(Ljava/util/Collection;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PStack minusAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Lorg/pcollections/PStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.pcollections.ConsPStack.minusAll:(Ljava/util/Collection;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PStack subList(int);
    descriptor: (I)Lorg/pcollections/PStack;
    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.pcollections.ConsPStack.subList:(I)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PSequence subList(int, int);
    descriptor: (II)Lorg/pcollections/PSequence;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            iload 2
            invokevirtual org.pcollections.ConsPStack.subList:(II)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PStack subList(int, int);
    descriptor: (II)Lorg/pcollections/PStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            iload 2
            invokevirtual org.pcollections.ConsPStack.subList:(II)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.util.List subList(int, int);
    descriptor: (II)Ljava/util/List;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            iload 2
            invokevirtual org.pcollections.ConsPStack.subList:(II)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PSequence minus(int);
    descriptor: (I)Lorg/pcollections/PSequence;
    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.pcollections.ConsPStack.minus:(I)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PStack minus(int);
    descriptor: (I)Lorg/pcollections/PStack;
    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.pcollections.ConsPStack.minus:(I)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PCollection minus(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/pcollections/PCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.pcollections.ConsPStack.minus:(Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PSequence minus(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/pcollections/PSequence;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.pcollections.ConsPStack.minus:(Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PStack minus(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/pcollections/PStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.pcollections.ConsPStack.minus:(Ljava/lang/Object;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PSequence plusAll(int, java.util.Collection);
    descriptor: (ILjava/util/Collection;)Lorg/pcollections/PSequence;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            aload 2
            checkcast java.util.Collection
            invokevirtual org.pcollections.ConsPStack.plusAll:(ILjava/util/Collection;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PStack plusAll(int, java.util.Collection);
    descriptor: (ILjava/util/Collection;)Lorg/pcollections/PStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            aload 2
            checkcast java.util.Collection
            invokevirtual org.pcollections.ConsPStack.plusAll:(ILjava/util/Collection;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PCollection plusAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Lorg/pcollections/PCollection;
    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.Collection
            invokevirtual org.pcollections.ConsPStack.plusAll:(Ljava/util/Collection;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PSequence plusAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Lorg/pcollections/PSequence;
    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.Collection
            invokevirtual org.pcollections.ConsPStack.plusAll:(Ljava/util/Collection;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.pcollections.PStack plusAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Lorg/pcollections/PStack;
    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.Collection
            invokevirtual org.pcollections.ConsPStack.plusAll:(Ljava/util/Collection;)Lorg/pcollections/ConsPStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <E:Ljava/lang/Object;>Ljava/util/AbstractSequentialList<TE;>;Lorg/pcollections/PStack<TE;>;Ljava/io/Serializable;
SourceFile: "ConsPStack.java"
NestMembers:
  org.pcollections.ConsPStack$1
InnerClasses:
  org.pcollections.ConsPStack$1