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

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

  private org.pcollections.PSet<E> contents;
    descriptor: Lorg/pcollections/PSet;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lorg/pcollections/PSet<TE;>;

  private org.pcollections.PVector<E> order;
    descriptor: Lorg/pcollections/PVector;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lorg/pcollections/PVector<TE;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 19
            new org.pcollections.OrderedPSet
            dup
            invokestatic org.pcollections.Empty.set:()Lorg/pcollections/PSet;
            invokestatic org.pcollections.Empty.vector:()Lorg/pcollections/PVector;
            invokespecial org.pcollections.OrderedPSet.<init>:(Lorg/pcollections/PSet;Lorg/pcollections/PVector;)V
         1: .line 18
            putstatic org.pcollections.OrderedPSet.EMPTY:Lorg/pcollections/OrderedPSet;
         2: .line 19
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

  public static <E> org.pcollections.OrderedPSet<E> singleton(E);
    descriptor: (Ljava/lang/Object;)Lorg/pcollections/OrderedPSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.Object e
         0: .line 33
            invokestatic org.pcollections.OrderedPSet.empty:()Lorg/pcollections/OrderedPSet;
            aload 0 /* e */
            invokevirtual org.pcollections.OrderedPSet.plus:(Ljava/lang/Object;)Lorg/pcollections/OrderedPSet;
            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/OrderedPSet<TE;>;
    MethodParameters:
      Name  Flags
      e     final

  private void <init>(org.pcollections.PSet<E>, org.pcollections.PVector<E>);
    descriptor: (Lorg/pcollections/PSet;Lorg/pcollections/PVector;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.pcollections.OrderedPSet this
        start local 1 // org.pcollections.PSet c
        start local 2 // org.pcollections.PVector o
         0: .line 39
            aload 0 /* this */
            invokespecial java.util.AbstractSet.<init>:()V
         1: .line 40
            aload 0 /* this */
            aload 1 /* c */
            putfield org.pcollections.OrderedPSet.contents:Lorg/pcollections/PSet;
         2: .line 41
            aload 0 /* this */
            aload 2 /* o */
            putfield org.pcollections.OrderedPSet.order:Lorg/pcollections/PVector;
         3: .line 42
            return
        end local 2 // org.pcollections.PVector o
        end local 1 // org.pcollections.PSet c
        end local 0 // org.pcollections.OrderedPSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/pcollections/OrderedPSet<TE;>;
            0    4     1     c  Lorg/pcollections/PSet<TE;>;
            0    4     2     o  Lorg/pcollections/PVector<TE;>;
    Signature: (Lorg/pcollections/PSet<TE;>;Lorg/pcollections/PVector<TE;>;)V
    MethodParameters:
      Name  Flags
      c     
      o     

  public org.pcollections.OrderedPSet<E> plus(E);
    descriptor: (Ljava/lang/Object;)Lorg/pcollections/OrderedPSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.pcollections.OrderedPSet this
        start local 1 // java.lang.Object e
         0: .line 46
            aload 0 /* this */
            getfield org.pcollections.OrderedPSet.contents:Lorg/pcollections/PSet;
            aload 1 /* e */
            invokeinterface org.pcollections.PSet.contains:(Ljava/lang/Object;)Z
            ifeq 1
            aload 0 /* this */
            areturn
         1: .line 47
      StackMap locals:
      StackMap stack:
            new org.pcollections.OrderedPSet
            dup
            aload 0 /* this */
            getfield org.pcollections.OrderedPSet.contents:Lorg/pcollections/PSet;
            aload 1 /* e */
            invokeinterface org.pcollections.PSet.plus:(Ljava/lang/Object;)Lorg/pcollections/PSet;
            aload 0 /* this */
            getfield org.pcollections.OrderedPSet.order:Lorg/pcollections/PVector;
            aload 1 /* e */
            invokeinterface org.pcollections.PVector.plus:(Ljava/lang/Object;)Lorg/pcollections/PVector;
            invokespecial org.pcollections.OrderedPSet.<init>:(Lorg/pcollections/PSet;Lorg/pcollections/PVector;)V
            areturn
        end local 1 // java.lang.Object e
        end local 0 // org.pcollections.OrderedPSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/pcollections/OrderedPSet<TE;>;
            0    2     1     e  TE;
    Signature: (TE;)Lorg/pcollections/OrderedPSet<TE;>;
    MethodParameters:
      Name  Flags
      e     

  public org.pcollections.OrderedPSet<E> plusAll(java.util.Collection<? extends E>);
    descriptor: (Ljava/util/Collection;)Lorg/pcollections/OrderedPSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.pcollections.OrderedPSet this
        start local 1 // java.util.Collection list
         0: .line 52
            aload 0 /* this */
            astore 2 /* s */
        start local 2 // org.pcollections.OrderedPSet s
         1: .line 53
            aload 1 /* list */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.pcollections.OrderedPSet java.util.Collection org.pcollections.OrderedPSet 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: .line 54
            aload 2 /* s */
            aload 3 /* e */
            invokevirtual org.pcollections.OrderedPSet.plus:(Ljava/lang/Object;)Lorg/pcollections/OrderedPSet;
            astore 2 /* s */
        end local 3 // java.lang.Object e
         4: .line 53
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 56
            aload 2 /* s */
            areturn
        end local 2 // org.pcollections.OrderedPSet s
        end local 1 // java.util.Collection list
        end local 0 // org.pcollections.OrderedPSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/pcollections/OrderedPSet<TE;>;
            0    6     1  list  Ljava/util/Collection<+TE;>;
            1    6     2     s  Lorg/pcollections/OrderedPSet<TE;>;
            3    4     3     e  TE;
    Signature: (Ljava/util/Collection<+TE;>;)Lorg/pcollections/OrderedPSet<TE;>;
    MethodParameters:
      Name  Flags
      list  

  public org.pcollections.OrderedPSet<E> minus();
    descriptor: (Ljava/lang/Object;)Lorg/pcollections/OrderedPSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.pcollections.OrderedPSet this
        start local 1 // java.lang.Object e
         0: .line 61
            aload 0 /* this */
            getfield org.pcollections.OrderedPSet.contents:Lorg/pcollections/PSet;
            aload 1 /* e */
            invokeinterface org.pcollections.PSet.contains:(Ljava/lang/Object;)Z
            ifne 1
            aload 0 /* this */
            areturn
         1: .line 62
      StackMap locals:
      StackMap stack:
            new org.pcollections.OrderedPSet
            dup
            aload 0 /* this */
            getfield org.pcollections.OrderedPSet.contents:Lorg/pcollections/PSet;
            aload 1 /* e */
            invokeinterface org.pcollections.PSet.minus:(Ljava/lang/Object;)Lorg/pcollections/PSet;
            aload 0 /* this */
            getfield org.pcollections.OrderedPSet.order:Lorg/pcollections/PVector;
            aload 1 /* e */
            invokeinterface org.pcollections.PVector.minus:(Ljava/lang/Object;)Lorg/pcollections/PVector;
            invokespecial org.pcollections.OrderedPSet.<init>:(Lorg/pcollections/PSet;Lorg/pcollections/PVector;)V
            areturn
        end local 1 // java.lang.Object e
        end local 0 // org.pcollections.OrderedPSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/pcollections/OrderedPSet<TE;>;
            0    2     1     e  Ljava/lang/Object;
    Signature: (Ljava/lang/Object;)Lorg/pcollections/OrderedPSet<TE;>;
    MethodParameters:
      Name  Flags
      e     

  public org.pcollections.OrderedPSet<E> minusAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Lorg/pcollections/OrderedPSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.pcollections.OrderedPSet this
        start local 1 // java.util.Collection list
         0: .line 67
            aload 0 /* this */
            astore 2 /* s */
        start local 2 // org.pcollections.OrderedPSet s
         1: .line 68
            aload 1 /* list */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.pcollections.OrderedPSet java.util.Collection org.pcollections.OrderedPSet top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 3 /* e */
        start local 3 // java.lang.Object e
         3: .line 69
            aload 2 /* s */
            aload 3 /* e */
            invokevirtual org.pcollections.OrderedPSet.minus:(Ljava/lang/Object;)Lorg/pcollections/OrderedPSet;
            astore 2 /* s */
        end local 3 // java.lang.Object e
         4: .line 68
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 71
            aload 2 /* s */
            areturn
        end local 2 // org.pcollections.OrderedPSet s
        end local 1 // java.util.Collection list
        end local 0 // org.pcollections.OrderedPSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/pcollections/OrderedPSet<TE;>;
            0    6     1  list  Ljava/util/Collection<*>;
            1    6     2     s  Lorg/pcollections/OrderedPSet<TE;>;
            3    4     3     e  Ljava/lang/Object;
    Signature: (Ljava/util/Collection<*>;)Lorg/pcollections/OrderedPSet<TE;>;
    MethodParameters:
      Name  Flags
      list  

  public java.util.Iterator<E> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.pcollections.OrderedPSet this
         0: .line 76
            aload 0 /* this */
            getfield org.pcollections.OrderedPSet.order:Lorg/pcollections/PVector;
            invokeinterface org.pcollections.PVector.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // org.pcollections.OrderedPSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/pcollections/OrderedPSet<TE;>;
    Signature: ()Ljava/util/Iterator<TE;>;

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

  public E get();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.pcollections.OrderedPSet this
        start local 1 // int index
         0: .line 86
            aload 0 /* this */
            getfield org.pcollections.OrderedPSet.order:Lorg/pcollections/PVector;
            iload 1 /* index */
            invokeinterface org.pcollections.PVector.get:(I)Ljava/lang/Object;
            areturn
        end local 1 // int index
        end local 0 // org.pcollections.OrderedPSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/pcollections/OrderedPSet<TE;>;
            0    1     1  index  I
    Signature: (I)TE;
    MethodParameters:
       Name  Flags
      index  

  public int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.pcollections.OrderedPSet this
        start local 1 // java.lang.Object o
         0: .line 91
            aload 0 /* this */
            getfield org.pcollections.OrderedPSet.contents:Lorg/pcollections/PSet;
            aload 1 /* o */
            invokeinterface org.pcollections.PSet.contains:(Ljava/lang/Object;)Z
            ifne 1
            iconst_m1
            ireturn
         1: .line 92
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.pcollections.OrderedPSet.order:Lorg/pcollections/PVector;
            aload 1 /* o */
            invokeinterface org.pcollections.PVector.indexOf:(Ljava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.pcollections.OrderedPSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/pcollections/OrderedPSet<TE;>;
            0    2     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  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.OrderedPSet.plus:(Ljava/lang/Object;)Lorg/pcollections/OrderedPSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

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

  public org.pcollections.POrderedSet minusAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Lorg/pcollections/POrderedSet;
    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.OrderedPSet.minusAll:(Ljava/util/Collection;)Lorg/pcollections/OrderedPSet;
            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.OrderedPSet.minus:(Ljava/lang/Object;)Lorg/pcollections/OrderedPSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.pcollections.POrderedSet minus(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/pcollections/POrderedSet;
    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.OrderedPSet.minus:(Ljava/lang/Object;)Lorg/pcollections/OrderedPSet;
            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.OrderedPSet.plusAll:(Ljava/util/Collection;)Lorg/pcollections/OrderedPSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.pcollections.POrderedSet plusAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Lorg/pcollections/POrderedSet;
    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.OrderedPSet.plusAll:(Ljava/util/Collection;)Lorg/pcollections/OrderedPSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <E:Ljava/lang/Object;>Ljava/util/AbstractSet<TE;>;Lorg/pcollections/POrderedSet<TE;>;Ljava/io/Serializable;
SourceFile: "OrderedPSet.java"