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

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

  private final org.pcollections.IntTree<V> root;
    descriptor: Lorg/pcollections/IntTree;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/pcollections/IntTree<TV;>;

  private transient java.util.Set<java.util.Map$Entry<java.lang.Integer, V>> entrySet;
    descriptor: Ljava/util/Set;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT
    Signature: Ljava/util/Set<Ljava/util/Map$Entry<Ljava/lang/Integer;TV;>;>;

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

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

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

  public static <V> org.pcollections.IntTreePMap<V> from(java.util.Map<? extends java.lang.Integer, ? extends V>);
    descriptor: (Ljava/util/Map;)Lorg/pcollections/IntTreePMap;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.util.Map map
         0: .line 71
            aload 0 /* map */
            instanceof org.pcollections.IntTreePMap
            ifeq 2
         1: .line 72
            aload 0 /* map */
            checkcast org.pcollections.IntTreePMap
            areturn
         2: .line 75
      StackMap locals:
      StackMap stack:
            invokestatic org.pcollections.IntTreePMap.empty:()Lorg/pcollections/IntTreePMap;
            aload 0 /* map */
            invokevirtual org.pcollections.IntTreePMap.plusAll:(Ljava/util/Map;)Lorg/pcollections/IntTreePMap;
            areturn
        end local 0 // java.util.Map map
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0   map  Ljava/util/Map<+Ljava/lang/Integer;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Ljava/util/Map<+Ljava/lang/Integer;+TV;>;)Lorg/pcollections/IntTreePMap<TV;>;
    MethodParameters:
      Name  Flags
      map   final

  private void <init>(org.pcollections.IntTree<V>);
    descriptor: (Lorg/pcollections/IntTree;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.pcollections.IntTreePMap this
        start local 1 // org.pcollections.IntTree root
         0: .line 81
            aload 0 /* this */
            invokespecial java.util.AbstractMap.<init>:()V
         1: .line 118
            aload 0 /* this */
            aconst_null
            putfield org.pcollections.IntTreePMap.entrySet:Ljava/util/Set;
         2: .line 82
            aload 0 /* this */
            aload 1 /* root */
            putfield org.pcollections.IntTreePMap.root:Lorg/pcollections/IntTree;
         3: .line 83
            return
        end local 1 // org.pcollections.IntTree root
        end local 0 // org.pcollections.IntTreePMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/pcollections/IntTreePMap<TV;>;
            0    4     1  root  Lorg/pcollections/IntTree<TV;>;
    Signature: (Lorg/pcollections/IntTree<TV;>;)V
    MethodParameters:
      Name  Flags
      root  final

  private org.pcollections.IntTreePMap<V> withRoot(org.pcollections.IntTree<V>);
    descriptor: (Lorg/pcollections/IntTree;)Lorg/pcollections/IntTreePMap;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.pcollections.IntTreePMap this
        start local 1 // org.pcollections.IntTree root
         0: .line 86
            aload 1 /* root */
            aload 0 /* this */
            getfield org.pcollections.IntTreePMap.root:Lorg/pcollections/IntTree;
            if_acmpne 1
            aload 0 /* this */
            areturn
         1: .line 87
      StackMap locals:
      StackMap stack:
            new org.pcollections.IntTreePMap
            dup
            aload 1 /* root */
            invokespecial org.pcollections.IntTreePMap.<init>:(Lorg/pcollections/IntTree;)V
            areturn
        end local 1 // org.pcollections.IntTree root
        end local 0 // org.pcollections.IntTreePMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/pcollections/IntTreePMap<TV;>;
            0    2     1  root  Lorg/pcollections/IntTree<TV;>;
    Signature: (Lorg/pcollections/IntTree<TV;>;)Lorg/pcollections/IntTreePMap<TV;>;
    MethodParameters:
      Name  Flags
      root  final

  public org.pcollections.IntTreePMap<V> minusRange(int, int);
    descriptor: (II)Lorg/pcollections/IntTreePMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.pcollections.IntTreePMap this
        start local 1 // int start
        start local 2 // int end
         0: .line 97
            aload 0 /* this */
            getfield org.pcollections.IntTreePMap.root:Lorg/pcollections/IntTree;
            astore 3 /* root */
        start local 3 // org.pcollections.IntTree root
         1: .line 98
            iload 1 /* start */
            istore 4 /* i */
        start local 4 // int i
         2: goto 5
         3: .line 99
      StackMap locals: org.pcollections.IntTree int
      StackMap stack:
            aload 3 /* root */
            iload 4 /* i */
            i2l
            invokevirtual org.pcollections.IntTree.minus:(J)Lorg/pcollections/IntTree;
            astore 3 /* root */
         4: .line 98
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 4 /* i */
            iload 2 /* end */
            if_icmplt 3
        end local 4 // int i
         6: .line 101
            aload 0 /* this */
            aload 3 /* root */
            invokevirtual org.pcollections.IntTreePMap.withRoot:(Lorg/pcollections/IntTree;)Lorg/pcollections/IntTreePMap;
            areturn
        end local 3 // org.pcollections.IntTree root
        end local 2 // int end
        end local 1 // int start
        end local 0 // org.pcollections.IntTreePMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/pcollections/IntTreePMap<TV;>;
            0    7     1  start  I
            0    7     2    end  I
            1    7     3   root  Lorg/pcollections/IntTree<TV;>;
            2    6     4      i  I
    Signature: (II)Lorg/pcollections/IntTreePMap<TV;>;
    MethodParameters:
       Name  Flags
      start  final
      end    final

  org.pcollections.IntTreePMap<V> withKeysChangedAbove(int, int);
    descriptor: (II)Lorg/pcollections/IntTreePMap;
    flags: (0x0000) 
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.pcollections.IntTreePMap this
        start local 1 // int key
        start local 2 // int delta
         0: .line 107
            aload 0 /* this */
            aload 0 /* this */
            getfield org.pcollections.IntTreePMap.root:Lorg/pcollections/IntTree;
            iload 1 /* key */
            i2l
            iload 2 /* delta */
            invokevirtual org.pcollections.IntTree.changeKeysAbove:(JI)Lorg/pcollections/IntTree;
            invokevirtual org.pcollections.IntTreePMap.withRoot:(Lorg/pcollections/IntTree;)Lorg/pcollections/IntTreePMap;
            areturn
        end local 2 // int delta
        end local 1 // int key
        end local 0 // org.pcollections.IntTreePMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/pcollections/IntTreePMap<TV;>;
            0    1     1    key  I
            0    1     2  delta  I
    Signature: (II)Lorg/pcollections/IntTreePMap<TV;>;
    MethodParameters:
       Name  Flags
      key    final
      delta  final

  org.pcollections.IntTreePMap<V> withKeysChangedBelow(int, int);
    descriptor: (II)Lorg/pcollections/IntTreePMap;
    flags: (0x0000) 
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.pcollections.IntTreePMap this
        start local 1 // int key
        start local 2 // int delta
         0: .line 113
            aload 0 /* this */
            aload 0 /* this */
            getfield org.pcollections.IntTreePMap.root:Lorg/pcollections/IntTree;
            iload 1 /* key */
            i2l
            iload 2 /* delta */
            invokevirtual org.pcollections.IntTree.changeKeysBelow:(JI)Lorg/pcollections/IntTree;
            invokevirtual org.pcollections.IntTreePMap.withRoot:(Lorg/pcollections/IntTree;)Lorg/pcollections/IntTreePMap;
            areturn
        end local 2 // int delta
        end local 1 // int key
        end local 0 // org.pcollections.IntTreePMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/pcollections/IntTreePMap<TV;>;
            0    1     1    key  I
            0    1     2  delta  I
    Signature: (II)Lorg/pcollections/IntTreePMap<TV;>;
    MethodParameters:
       Name  Flags
      key    final
      delta  final

  public java.util.Set<java.util.Map$Entry<java.lang.Integer, V>> entrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.pcollections.IntTreePMap this
         0: .line 122
            aload 0 /* this */
            getfield org.pcollections.IntTreePMap.entrySet:Ljava/util/Set;
            ifnonnull 4
         1: .line 123
            aload 0 /* this */
         2: .line 124
            new org.pcollections.IntTreePMap$1
            dup
            aload 0 /* this */
            invokespecial org.pcollections.IntTreePMap$1.<init>:(Lorg/pcollections/IntTreePMap;)V
         3: .line 123
            putfield org.pcollections.IntTreePMap.entrySet:Ljava/util/Set;
         4: .line 143
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.pcollections.IntTreePMap.entrySet:Ljava/util/Set;
            areturn
        end local 0 // org.pcollections.IntTreePMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/pcollections/IntTreePMap<TV;>;
    Signature: ()Ljava/util/Set<Ljava/util/Map$Entry<Ljava/lang/Integer;TV;>;>;

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

  public boolean containsKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.pcollections.IntTreePMap this
        start local 1 // java.lang.Object key
         0: .line 154
            aload 1 /* key */
            instanceof java.lang.Integer
            ifne 1
            iconst_0
            ireturn
         1: .line 155
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.pcollections.IntTreePMap.root:Lorg/pcollections/IntTree;
            aload 1 /* key */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            i2l
            invokevirtual org.pcollections.IntTree.containsKey:(J)Z
            ireturn
        end local 1 // java.lang.Object key
        end local 0 // org.pcollections.IntTreePMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/pcollections/IntTreePMap<TV;>;
            0    2     1   key  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   final

  public V get();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.pcollections.IntTreePMap this
        start local 1 // java.lang.Object key
         0: .line 160
            aload 1 /* key */
            instanceof java.lang.Integer
            ifne 1
            aconst_null
            areturn
         1: .line 161
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.pcollections.IntTreePMap.root:Lorg/pcollections/IntTree;
            aload 1 /* key */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            i2l
            invokevirtual org.pcollections.IntTree.get:(J)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // org.pcollections.IntTreePMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/pcollections/IntTreePMap<TV;>;
            0    2     1   key  Ljava/lang/Object;
    Signature: (Ljava/lang/Object;)TV;
    MethodParameters:
      Name  Flags
      key   final

  public org.pcollections.IntTreePMap<V> plus(java.lang.Integer, V);
    descriptor: (Ljava/lang/Integer;Ljava/lang/Object;)Lorg/pcollections/IntTreePMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.pcollections.IntTreePMap this
        start local 1 // java.lang.Integer key
        start local 2 // java.lang.Object value
         0: .line 166
            aload 0 /* this */
            aload 0 /* this */
            getfield org.pcollections.IntTreePMap.root:Lorg/pcollections/IntTree;
            aload 1 /* key */
            invokevirtual java.lang.Integer.intValue:()I
            i2l
            aload 2 /* value */
            invokevirtual org.pcollections.IntTree.plus:(JLjava/lang/Object;)Lorg/pcollections/IntTree;
            invokevirtual org.pcollections.IntTreePMap.withRoot:(Lorg/pcollections/IntTree;)Lorg/pcollections/IntTreePMap;
            areturn
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Integer key
        end local 0 // org.pcollections.IntTreePMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/pcollections/IntTreePMap<TV;>;
            0    1     1    key  Ljava/lang/Integer;
            0    1     2  value  TV;
    Signature: (Ljava/lang/Integer;TV;)Lorg/pcollections/IntTreePMap<TV;>;
    MethodParameters:
       Name  Flags
      key    final
      value  final

  public org.pcollections.IntTreePMap<V> minus();
    descriptor: (Ljava/lang/Object;)Lorg/pcollections/IntTreePMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.pcollections.IntTreePMap this
        start local 1 // java.lang.Object key
         0: .line 170
            aload 1 /* key */
            instanceof java.lang.Integer
            ifne 1
            aload 0 /* this */
            areturn
         1: .line 171
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.pcollections.IntTreePMap.root:Lorg/pcollections/IntTree;
            aload 1 /* key */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            i2l
            invokevirtual org.pcollections.IntTree.minus:(J)Lorg/pcollections/IntTree;
            invokevirtual org.pcollections.IntTreePMap.withRoot:(Lorg/pcollections/IntTree;)Lorg/pcollections/IntTreePMap;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // org.pcollections.IntTreePMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/pcollections/IntTreePMap<TV;>;
            0    2     1   key  Ljava/lang/Object;
    Signature: (Ljava/lang/Object;)Lorg/pcollections/IntTreePMap<TV;>;
    MethodParameters:
      Name  Flags
      key   final

  public org.pcollections.IntTreePMap<V> plusAll(java.util.Map<? extends java.lang.Integer, ? extends V>);
    descriptor: (Ljava/util/Map;)Lorg/pcollections/IntTreePMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.pcollections.IntTreePMap this
        start local 1 // java.util.Map map
         0: .line 175
            aload 0 /* this */
            getfield org.pcollections.IntTreePMap.root:Lorg/pcollections/IntTree;
            astore 2 /* root */
        start local 2 // org.pcollections.IntTree root
         1: .line 176
            aload 1 /* map */
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.pcollections.IntTreePMap java.util.Map org.pcollections.IntTree top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 3 /* entry */
        start local 3 // java.util.Map$Entry entry
         3: .line 177
            aload 2 /* root */
            aload 3 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            i2l
            aload 3 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            invokevirtual org.pcollections.IntTree.plus:(JLjava/lang/Object;)Lorg/pcollections/IntTree;
            astore 2 /* root */
        end local 3 // java.util.Map$Entry entry
         4: .line 176
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 178
            aload 0 /* this */
            aload 2 /* root */
            invokevirtual org.pcollections.IntTreePMap.withRoot:(Lorg/pcollections/IntTree;)Lorg/pcollections/IntTreePMap;
            areturn
        end local 2 // org.pcollections.IntTree root
        end local 1 // java.util.Map map
        end local 0 // org.pcollections.IntTreePMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/pcollections/IntTreePMap<TV;>;
            0    6     1    map  Ljava/util/Map<+Ljava/lang/Integer;+TV;>;
            1    6     2   root  Lorg/pcollections/IntTree<TV;>;
            3    4     3  entry  Ljava/util/Map$Entry<+Ljava/lang/Integer;+TV;>;
    Signature: (Ljava/util/Map<+Ljava/lang/Integer;+TV;>;)Lorg/pcollections/IntTreePMap<TV;>;
    MethodParameters:
      Name  Flags
      map   final

  public org.pcollections.IntTreePMap<V> minusAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Lorg/pcollections/IntTreePMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.pcollections.IntTreePMap this
        start local 1 // java.util.Collection keys
         0: .line 182
            aload 0 /* this */
            getfield org.pcollections.IntTreePMap.root:Lorg/pcollections/IntTree;
            astore 2 /* root */
        start local 2 // org.pcollections.IntTree root
         1: .line 183
            aload 1 /* keys */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.pcollections.IntTreePMap java.util.Collection org.pcollections.IntTree top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 3 /* key */
        start local 3 // java.lang.Object key
         3: aload 3 /* key */
            instanceof java.lang.Integer
            ifeq 4
            aload 2 /* root */
            aload 3 /* key */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            i2l
            invokevirtual org.pcollections.IntTree.minus:(J)Lorg/pcollections/IntTree;
            astore 2 /* root */
        end local 3 // java.lang.Object key
      StackMap locals:
      StackMap stack:
         4: aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 184
            aload 0 /* this */
            aload 2 /* root */
            invokevirtual org.pcollections.IntTreePMap.withRoot:(Lorg/pcollections/IntTree;)Lorg/pcollections/IntTreePMap;
            areturn
        end local 2 // org.pcollections.IntTree root
        end local 1 // java.util.Collection keys
        end local 0 // org.pcollections.IntTreePMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/pcollections/IntTreePMap<TV;>;
            0    6     1  keys  Ljava/util/Collection<*>;
            1    6     2  root  Lorg/pcollections/IntTree<TV;>;
            3    4     3   key  Ljava/lang/Object;
    Signature: (Ljava/util/Collection<*>;)Lorg/pcollections/IntTreePMap<TV;>;
    MethodParameters:
      Name  Flags
      keys  final

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

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

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

  public org.pcollections.PMap plusAll(java.util.Map);
    descriptor: (Ljava/util/Map;)Lorg/pcollections/PMap;
    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.Map
            invokevirtual org.pcollections.IntTreePMap.plusAll:(Ljava/util/Map;)Lorg/pcollections/IntTreePMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <V:Ljava/lang/Object;>Ljava/util/AbstractMap<Ljava/lang/Integer;TV;>;Lorg/pcollections/PMap<Ljava/lang/Integer;TV;>;Ljava/io/Serializable;
SourceFile: "IntTreePMap.java"
NestMembers:
  org.pcollections.IntTreePMap$1
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
  org.pcollections.IntTreePMap$1