public class org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap<V> implements org.eclipse.collections.api.map.primitive.MutableLongObjectMap<V>, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap
  super_class: java.lang.Object
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private final java.lang.Object lock;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.eclipse.collections.api.map.primitive.MutableLongObjectMap<V> map;
    descriptor: Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap<TV;>;

  public void <init>(org.eclipse.collections.api.map.primitive.MutableLongObjectMap<V>);
    descriptor: (Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.map.primitive.MutableLongObjectMap map
         0: .line 109
            aload 0 /* this */
            aload 1 /* map */
            aconst_null
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.<init>:(Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;Ljava/lang/Object;)V
         1: .line 110
            return
        end local 1 // org.eclipse.collections.api.map.primitive.MutableLongObjectMap map
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    2     1   map  Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap<TV;>;
    Signature: (Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap<TV;>;)V
    MethodParameters:
      Name  Flags
      map   

  public void <init>(org.eclipse.collections.api.map.primitive.MutableLongObjectMap<V>, );
    descriptor: (Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.map.primitive.MutableLongObjectMap map
        start local 2 // java.lang.Object newLock
         0: .line 112
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 114
            aload 1 /* map */
            ifnonnull 3
         2: .line 116
            new java.lang.IllegalArgumentException
            dup
            ldc "Cannot create a SynchronizedLongObjectMap on a null map"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 119
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.map.primitive.MutableLongObjectMap java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aload 1 /* map */
            putfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
         4: .line 120
            aload 0 /* this */
            aload 2 /* newLock */
            ifnonnull 5
            aload 0 /* this */
            goto 6
      StackMap locals:
      StackMap stack: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap
         5: aload 2 /* newLock */
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.map.primitive.MutableLongObjectMap java.lang.Object
      StackMap stack: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
         6: putfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
         7: .line 121
            return
        end local 2 // java.lang.Object newLock
        end local 1 // org.eclipse.collections.api.map.primitive.MutableLongObjectMap map
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    8     1      map  Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap<TV;>;
            0    8     2  newLock  Ljava/lang/Object;
    Signature: (Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap<TV;>;Ljava/lang/Object;)V
    MethodParameters:
         Name  Flags
      map      
      newLock  

  public V put(long, );
    descriptor: (JLjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // long key
        start local 3 // java.lang.Object value
         0: .line 126
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 128
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            lload 1 /* key */
            aload 3 /* value */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.put:(JLjava/lang/Object;)Ljava/lang/Object;
            aload 4
            monitorexit
         2: areturn
         3: .line 126
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap long java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // java.lang.Object value
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1    key  J
            0    5     3  value  TV;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (JTV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

  public V putPair(org.eclipse.collections.api.tuple.primitive.LongObjectPair<V>);
    descriptor: (Lorg/eclipse/collections/api/tuple/primitive/LongObjectPair;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.tuple.primitive.LongObjectPair keyValuePair
         0: .line 135
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 137
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* keyValuePair */
            invokeinterface org.eclipse.collections.api.tuple.primitive.LongObjectPair.getOne:()J
            aload 1 /* keyValuePair */
            invokeinterface org.eclipse.collections.api.tuple.primitive.LongObjectPair.getTwo:()Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.put:(JLjava/lang/Object;)Ljava/lang/Object;
            aload 2
            monitorexit
         2: areturn
         3: .line 135
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.tuple.primitive.LongObjectPair java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.tuple.primitive.LongObjectPair keyValuePair
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  keyValuePair  Lorg/eclipse/collections/api/tuple/primitive/LongObjectPair<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/tuple/primitive/LongObjectPair<TV;>;)TV;
    MethodParameters:
              Name  Flags
      keyValuePair  

  public void putAll(org.eclipse.collections.api.map.primitive.LongObjectMap<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/map/primitive/LongObjectMap;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.map.primitive.LongObjectMap map
         0: .line 144
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 146
            aload 1 /* map */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic value(Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;)Lorg/eclipse/collections/api/block/procedure/primitive/LongObjectProcedure;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (JLjava/lang/Object;)V
                  org/eclipse/collections/api/map/primitive/MutableLongObjectMap.put(JLjava/lang/Object;)Ljava/lang/Object; (9 itf)
                  (JLjava/lang/Object;)V
                  1
            invokeinterface org.eclipse.collections.api.map.primitive.LongObjectMap.forEachKeyValue:(Lorg/eclipse/collections/api/block/procedure/primitive/LongObjectProcedure;)V
         2: .line 144
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.map.primitive.LongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 148
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.collections.api.map.primitive.LongObjectMap map
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    7     1   map  Lorg/eclipse/collections/api/map/primitive/LongObjectMap<+TV;>;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    Signature: (Lorg/eclipse/collections/api/map/primitive/LongObjectMap<+TV;>;)V
    MethodParameters:
      Name  Flags
      map   

  public V removeKey();
    descriptor: (J)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // long key
         0: .line 153
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 155
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            lload 1 /* key */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.removeKey:(J)Ljava/lang/Object;
            aload 3
            monitorexit
         2: areturn
         3: .line 153
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap long java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1   key  J
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (J)TV;
    MethodParameters:
      Name  Flags
      key   

  public V remove();
    descriptor: (J)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // long key
         0: .line 162
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 164
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            lload 1 /* key */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.remove:(J)Ljava/lang/Object;
            aload 3
            monitorexit
         2: areturn
         3: .line 162
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap long java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1   key  J
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (J)TV;
    MethodParameters:
      Name  Flags
      key   

  public V getIfAbsentPut(long, );
    descriptor: (JLjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // long key
        start local 3 // java.lang.Object value
         0: .line 171
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 173
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            lload 1 /* key */
            aload 3 /* value */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.getIfAbsentPut:(JLjava/lang/Object;)Ljava/lang/Object;
            aload 4
            monitorexit
         2: areturn
         3: .line 171
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap long java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // java.lang.Object value
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1    key  J
            0    5     3  value  TV;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (JTV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

  public V getIfAbsentPut(long, org.eclipse.collections.api.block.function.Function0<? extends V>);
    descriptor: (JLorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // long key
        start local 3 // org.eclipse.collections.api.block.function.Function0 function
         0: .line 180
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 182
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            lload 1 /* key */
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.getIfAbsentPut:(JLorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
            aload 4
            monitorexit
         2: areturn
         3: .line 180
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap long org.eclipse.collections.api.block.function.Function0 java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // org.eclipse.collections.api.block.function.Function0 function
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1       key  J
            0    5     3  function  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (JLorg/eclipse/collections/api/block/function/Function0<+TV;>;)TV;
    MethodParameters:
          Name  Flags
      key       
      function  

  public V getIfAbsentPutWithKey(long, org.eclipse.collections.api.block.function.primitive.LongToObjectFunction<? extends V>);
    descriptor: (JLorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // long key
        start local 3 // org.eclipse.collections.api.block.function.primitive.LongToObjectFunction function
         0: .line 189
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 191
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            lload 1 /* key */
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.getIfAbsentPutWithKey:(JLorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;)Ljava/lang/Object;
            aload 4
            monitorexit
         2: areturn
         3: .line 189
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap long org.eclipse.collections.api.block.function.primitive.LongToObjectFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // org.eclipse.collections.api.block.function.primitive.LongToObjectFunction function
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1       key  J
            0    5     3  function  Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction<+TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (JLorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction<+TV;>;)TV;
    MethodParameters:
          Name  Flags
      key       
      function  

  public <P> V getIfAbsentPutWith(long, org.eclipse.collections.api.block.function.Function<? super P, ? extends V>, );
    descriptor: (JLorg/eclipse/collections/api/block/function/Function;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // long key
        start local 3 // org.eclipse.collections.api.block.function.Function function
        start local 4 // java.lang.Object parameter
         0: .line 198
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 5
            monitorenter
         1: .line 200
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            lload 1 /* key */
            aload 3 /* function */
            aload 4 /* parameter */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.getIfAbsentPutWith:(JLorg/eclipse/collections/api/block/function/Function;Ljava/lang/Object;)Ljava/lang/Object;
            aload 5
            monitorexit
         2: areturn
         3: .line 198
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap long org.eclipse.collections.api.block.function.Function java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 5
            monitorexit
         4: athrow
        end local 4 // java.lang.Object parameter
        end local 3 // org.eclipse.collections.api.block.function.Function function
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1        key  J
            0    5     3   function  Lorg/eclipse/collections/api/block/function/Function<-TP;+TV;>;
            0    5     4  parameter  TP;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <P:Ljava/lang/Object;>(JLorg/eclipse/collections/api/block/function/Function<-TP;+TV;>;TP;)TV;
    MethodParameters:
           Name  Flags
      key        
      function   
      parameter  

  public V updateValue(long, org.eclipse.collections.api.block.function.Function0<? extends V>, org.eclipse.collections.api.block.function.Function<? super V, ? extends V>);
    descriptor: (JLorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // long key
        start local 3 // org.eclipse.collections.api.block.function.Function0 factory
        start local 4 // org.eclipse.collections.api.block.function.Function function
         0: .line 207
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 5
            monitorenter
         1: .line 209
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            lload 1 /* key */
            aload 3 /* factory */
            aload 4 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.updateValue:(JLorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
            aload 5
            monitorexit
         2: areturn
         3: .line 207
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap long org.eclipse.collections.api.block.function.Function0 org.eclipse.collections.api.block.function.Function java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 5
            monitorexit
         4: athrow
        end local 4 // org.eclipse.collections.api.block.function.Function function
        end local 3 // org.eclipse.collections.api.block.function.Function0 factory
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1       key  J
            0    5     3   factory  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
            0    5     4  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (JLorg/eclipse/collections/api/block/function/Function0<+TV;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TV;>;)TV;
    MethodParameters:
          Name  Flags
      key       
      factory   
      function  

  public <P> V updateValueWith(long, org.eclipse.collections.api.block.function.Function0<? extends V>, org.eclipse.collections.api.block.function.Function2<? super V, ? super P, ? extends V>, );
    descriptor: (JLorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=5
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // long key
        start local 3 // org.eclipse.collections.api.block.function.Function0 factory
        start local 4 // org.eclipse.collections.api.block.function.Function2 function
        start local 5 // java.lang.Object parameter
         0: .line 216
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 6
            monitorenter
         1: .line 218
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            lload 1 /* key */
            aload 3 /* factory */
            aload 4 /* function */
            aload 5 /* parameter */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.updateValueWith:(JLorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Ljava/lang/Object;
            aload 6
            monitorexit
         2: areturn
         3: .line 216
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap long org.eclipse.collections.api.block.function.Function0 org.eclipse.collections.api.block.function.Function2 java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 6
            monitorexit
         4: athrow
        end local 5 // java.lang.Object parameter
        end local 4 // org.eclipse.collections.api.block.function.Function2 function
        end local 3 // org.eclipse.collections.api.block.function.Function0 factory
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1        key  J
            0    5     3    factory  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
            0    5     4   function  Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TV;>;
            0    5     5  parameter  TP;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <P:Ljava/lang/Object;>(JLorg/eclipse/collections/api/block/function/Function0<+TV;>;Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TV;>;TP;)TV;
    MethodParameters:
           Name  Flags
      key        
      factory    
      function   
      parameter  

  public V get();
    descriptor: (J)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // long key
         0: .line 225
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 227
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            lload 1 /* key */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.get:(J)Ljava/lang/Object;
            aload 3
            monitorexit
         2: areturn
         3: .line 225
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap long java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1   key  J
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (J)TV;
    MethodParameters:
      Name  Flags
      key   

  public V getIfAbsent(long, org.eclipse.collections.api.block.function.Function0<? extends V>);
    descriptor: (JLorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // long key
        start local 3 // org.eclipse.collections.api.block.function.Function0 ifAbsent
         0: .line 234
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 236
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            lload 1 /* key */
            aload 3 /* ifAbsent */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.getIfAbsent:(JLorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
            aload 4
            monitorexit
         2: areturn
         3: .line 234
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap long org.eclipse.collections.api.block.function.Function0 java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // org.eclipse.collections.api.block.function.Function0 ifAbsent
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1       key  J
            0    5     3  ifAbsent  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (JLorg/eclipse/collections/api/block/function/Function0<+TV;>;)TV;
    MethodParameters:
          Name  Flags
      key       
      ifAbsent  

  public boolean containsKey(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // long key
         0: .line 243
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 245
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            lload 1 /* key */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.containsKey:(J)Z
            aload 3
            monitorexit
         2: ireturn
         3: .line 243
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap long java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1   key  J
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    MethodParameters:
      Name  Flags
      key   

  public boolean containsValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.lang.Object value
         0: .line 252
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 254
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* value */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.containsValue:(Ljava/lang/Object;)Z
            aload 2
            monitorexit
         2: ireturn
         3: .line 252
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.lang.Object value
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  value  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    MethodParameters:
       Name  Flags
      value  

  public org.eclipse.collections.api.map.primitive.MutableLongObjectMap<V> tap(org.eclipse.collections.api.block.procedure.Procedure<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 261
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 263
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* procedure */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 264
            aload 0 /* this */
            aload 2
            monitorexit
         3: areturn
         4: .line 261
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.procedure.Procedure java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         5: athrow
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    6     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap<TV;>;
    MethodParameters:
           Name  Flags
      procedure  

  public void forEachValue(org.eclipse.collections.api.block.procedure.Procedure<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 271
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 273
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* procedure */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.forEachValue:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 271
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.procedure.Procedure java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 275
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    7     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public void forEachKey(org.eclipse.collections.api.block.procedure.primitive.LongProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.LongProcedure procedure
         0: .line 280
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 282
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* procedure */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.forEachKey:(Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)V
         2: .line 280
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.procedure.primitive.LongProcedure java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 284
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.LongProcedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    7     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
           Name  Flags
      procedure  

  public void forEachKeyValue(org.eclipse.collections.api.block.procedure.primitive.LongObjectProcedure<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/LongObjectProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.LongObjectProcedure procedure
         0: .line 289
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 291
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* procedure */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.forEachKeyValue:(Lorg/eclipse/collections/api/block/procedure/primitive/LongObjectProcedure;)V
         2: .line 289
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.procedure.primitive.LongObjectProcedure java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 293
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.LongObjectProcedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    7     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/LongObjectProcedure<-TV;>;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/LongObjectProcedure<-TV;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public org.eclipse.collections.api.map.primitive.MutableLongObjectMap<V> select(org.eclipse.collections.api.block.predicate.primitive.LongObjectPredicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongObjectPredicate;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.LongObjectPredicate predicate
         0: .line 298
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 300
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.select:(Lorg/eclipse/collections/api/block/predicate/primitive/LongObjectPredicate;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 2
            monitorexit
         2: areturn
         3: .line 298
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.primitive.LongObjectPredicate java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.LongObjectPredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/LongObjectPredicate<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/predicate/primitive/LongObjectPredicate<-TV;>;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap<TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.map.primitive.MutableLongObjectMap<V> reject(org.eclipse.collections.api.block.predicate.primitive.LongObjectPredicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongObjectPredicate;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.LongObjectPredicate predicate
         0: .line 307
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 309
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/LongObjectPredicate;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 2
            monitorexit
         2: areturn
         3: .line 307
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.primitive.LongObjectPredicate java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.LongObjectPredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/LongObjectPredicate<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/predicate/primitive/LongObjectPredicate<-TV;>;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap<TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 316
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 318
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.size:()I
            aload 1
            monitorexit
         2: ireturn
         3: .line 316
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 325
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 327
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.isEmpty:()Z
            aload 1
            monitorexit
         2: ireturn
         3: .line 325
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public boolean notEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 334
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 336
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.notEmpty:()Z
            aload 1
            monitorexit
         2: ireturn
         3: .line 334
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public V getFirst();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 343
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 345
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.getFirst:()Ljava/lang/Object;
            aload 1
            monitorexit
         2: areturn
         3: .line 343
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()TV;

  public V getLast();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 352
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 354
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.getLast:()Ljava/lang/Object;
            aload 1
            monitorexit
         2: areturn
         3: .line 352
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()TV;

  public V getOnly();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 361
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 363
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.getOnly:()Ljava/lang/Object;
            aload 1
            monitorexit
         2: areturn
         3: .line 361
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()TV;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.lang.Object object
         0: .line 370
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 372
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* object */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.contains:(Ljava/lang/Object;)Z
            aload 2
            monitorexit
         2: ireturn
         3: .line 370
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.lang.Object object
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  object  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    MethodParameters:
        Name  Flags
      object  

  public boolean containsAllIterable(java.lang.Iterable<?>);
    descriptor: (Ljava/lang/Iterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.lang.Iterable source
         0: .line 379
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 381
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* source */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.containsAllIterable:(Ljava/lang/Iterable;)Z
            aload 2
            monitorexit
         2: ireturn
         3: .line 379
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Iterable java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.lang.Iterable source
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  source  Ljava/lang/Iterable<*>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Ljava/lang/Iterable<*>;)Z
    MethodParameters:
        Name  Flags
      source  

  public boolean containsAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.util.Collection source
         0: .line 388
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 390
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* source */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.containsAll:(Ljava/util/Collection;)Z
            aload 2
            monitorexit
         2: ireturn
         3: .line 388
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.util.Collection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.util.Collection source
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  source  Ljava/util/Collection<*>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
        Name  Flags
      source  

  public boolean containsAllArguments(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.lang.Object[] elements
         0: .line 397
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 399
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* elements */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.containsAllArguments:([Ljava/lang/Object;)Z
            aload 2
            monitorexit
         2: ireturn
         3: .line 397
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object[] java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.lang.Object[] elements
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  elements  [Ljava/lang/Object;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.api.bag.MutableBag<V> select(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 406
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 408
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 406
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Lorg/eclipse/collections/api/bag/MutableBag<TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <R extends java.util.Collection<V>> R select(org.eclipse.collections.api.block.predicate.Predicate<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // java.util.Collection target
         0: .line 415
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 417
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
            aload 3
            monitorexit
         2: areturn
         3: .line 415
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate java.util.Collection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            0    5     2     target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      target     

  public <P> org.eclipse.collections.api.bag.MutableBag<V> selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 424
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 426
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            aload 3
            monitorexit
         2: areturn
         3: .line 424
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate2 java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    5     2  parameter  TP;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)Lorg/eclipse/collections/api/bag/MutableBag<TV;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <P, R extends java.util.Collection<V>> R selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, P, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
        start local 3 // java.util.Collection targetCollection
         0: .line 433
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 435
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 3 /* targetCollection */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            aload 4
            monitorexit
         2: areturn
         3: .line 433
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate2 java.lang.Object java.util.Collection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // java.util.Collection targetCollection
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    5     0              this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1         predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    5     2         parameter  TP;
            0    5     3  targetCollection  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <P:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;TR;)TR;
    MethodParameters:
                  Name  Flags
      predicate         
      parameter         
      targetCollection  

  public org.eclipse.collections.api.partition.bag.PartitionMutableBag<V> partition(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 442
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 444
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 442
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag<TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> org.eclipse.collections.api.partition.bag.PartitionMutableBag<V> partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 451
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 453
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag;
            aload 3
            monitorexit
         2: areturn
         3: .line 451
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate2 java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    5     2  parameter  TP;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag<TV;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <S> org.eclipse.collections.api.bag.MutableBag<S> selectInstancesOf(java.lang.Class<S>);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.lang.Class clazz
         0: .line 460
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 462
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* clazz */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/MutableBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 460
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Class java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.lang.Class clazz
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  clazz  Ljava/lang/Class<TS;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Class<TS;>;)Lorg/eclipse/collections/api/bag/MutableBag<TS;>;
    MethodParameters:
       Name  Flags
      clazz  

  public org.eclipse.collections.api.set.MutableSet<org.eclipse.collections.api.tuple.Pair<V, java.lang.Integer>> zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 473
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 475
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.zipWithIndex:()Lorg/eclipse/collections/api/set/MutableSet;
            aload 1
            monitorexit
         2: areturn
         3: .line 473
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()Lorg/eclipse/collections/api/set/MutableSet<Lorg/eclipse/collections/api/tuple/Pair<TV;Ljava/lang/Integer;>;>;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

  public <R extends java.util.Collection<org.eclipse.collections.api.tuple.Pair<V, java.lang.Integer>>> R zipWithIndex();
    descriptor: (Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.util.Collection target
         0: .line 482
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 484
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.zipWithIndex:(Ljava/util/Collection;)Ljava/util/Collection;
            aload 2
            monitorexit
         2: areturn
         3: .line 482
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.util.Collection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.util.Collection target
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <R::Ljava/util/Collection<Lorg/eclipse/collections/api/tuple/Pair<TV;Ljava/lang/Integer;>;>;>(TR;)TR;
    MethodParameters:
        Name  Flags
      target  

  public org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.RichIterable<V>> chunk(int);
    descriptor: (I)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // int size
         0: .line 491
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 493
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            iload 1 /* size */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.chunk:(I)Lorg/eclipse/collections/api/RichIterable;
            aload 2
            monitorexit
         2: areturn
         3: .line 491
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap int java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // int size
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  size  I
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (I)Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/RichIterable<TV;>;>;
    MethodParameters:
      Name  Flags
      size  

  public <K, VV> org.eclipse.collections.api.map.MutableMap<K, VV> aggregateInPlaceBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends K>, org.eclipse.collections.api.block.function.Function0<? extends VV>, org.eclipse.collections.api.block.procedure.Procedure2<? super VV, ? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.Function0 zeroValueFactory
        start local 3 // org.eclipse.collections.api.block.procedure.Procedure2 mutatingAggregator
         0: .line 500
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 502
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* groupBy */
            aload 2 /* zeroValueFactory */
            aload 3 /* mutatingAggregator */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.aggregateInPlaceBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/MutableMap;
            aload 4
            monitorexit
         2: areturn
         3: .line 500
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.block.function.Function0 org.eclipse.collections.api.block.procedure.Procedure2 java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // org.eclipse.collections.api.block.procedure.Procedure2 mutatingAggregator
        end local 2 // org.eclipse.collections.api.block.function.Function0 zeroValueFactory
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    5     0                this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1             groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TK;>;
            0    5     2    zeroValueFactory  Lorg/eclipse/collections/api/block/function/Function0<+TVV;>;
            0    5     3  mutatingAggregator  Lorg/eclipse/collections/api/block/procedure/Procedure2<-TVV;-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <K:Ljava/lang/Object;VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TK;>;Lorg/eclipse/collections/api/block/function/Function0<+TVV;>;Lorg/eclipse/collections/api/block/procedure/Procedure2<-TVV;-TV;>;)Lorg/eclipse/collections/api/map/MutableMap<TK;TVV;>;
    MethodParameters:
                    Name  Flags
      groupBy             
      zeroValueFactory    
      mutatingAggregator  

  public <K, VV> org.eclipse.collections.api.map.MutableMap<K, VV> aggregateBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends K>, org.eclipse.collections.api.block.function.Function0<? extends VV>, org.eclipse.collections.api.block.function.Function2<? super VV, ? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.Function0 zeroValueFactory
        start local 3 // org.eclipse.collections.api.block.function.Function2 nonMutatingAggregator
         0: .line 509
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 511
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* groupBy */
            aload 2 /* zeroValueFactory */
            aload 3 /* nonMutatingAggregator */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.aggregateBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MutableMap;
            aload 4
            monitorexit
         2: areturn
         3: .line 509
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.block.function.Function0 org.eclipse.collections.api.block.function.Function2 java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // org.eclipse.collections.api.block.function.Function2 nonMutatingAggregator
        end local 2 // org.eclipse.collections.api.block.function.Function0 zeroValueFactory
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    5     0                   this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1                groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TK;>;
            0    5     2       zeroValueFactory  Lorg/eclipse/collections/api/block/function/Function0<+TVV;>;
            0    5     3  nonMutatingAggregator  Lorg/eclipse/collections/api/block/function/Function2<-TVV;-TV;+TVV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <K:Ljava/lang/Object;VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TK;>;Lorg/eclipse/collections/api/block/function/Function0<+TVV;>;Lorg/eclipse/collections/api/block/function/Function2<-TVV;-TV;+TVV;>;)Lorg/eclipse/collections/api/map/MutableMap<TK;TVV;>;
    MethodParameters:
                       Name  Flags
      groupBy                
      zeroValueFactory       
      nonMutatingAggregator  

  public org.eclipse.collections.api.bag.MutableBag<V> reject(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 518
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 520
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 518
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Lorg/eclipse/collections/api/bag/MutableBag<TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <R extends java.util.Collection<V>> R reject(org.eclipse.collections.api.block.predicate.Predicate<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // java.util.Collection target
         0: .line 527
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 529
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
            aload 3
            monitorexit
         2: areturn
         3: .line 527
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate java.util.Collection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            0    5     2     target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      target     

  public <P> org.eclipse.collections.api.bag.MutableBag<V> rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 536
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 538
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            aload 3
            monitorexit
         2: areturn
         3: .line 536
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate2 java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    5     2  parameter  TP;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)Lorg/eclipse/collections/api/bag/MutableBag<TV;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <P, R extends java.util.Collection<V>> R rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, P, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
        start local 3 // java.util.Collection targetCollection
         0: .line 545
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 547
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 3 /* targetCollection */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            aload 4
            monitorexit
         2: areturn
         3: .line 545
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate2 java.lang.Object java.util.Collection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // java.util.Collection targetCollection
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    5     0              this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1         predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    5     2         parameter  TP;
            0    5     3  targetCollection  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <P:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;TR;)TR;
    MethodParameters:
                  Name  Flags
      predicate         
      parameter         
      targetCollection  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 554
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 556
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.clear:()V
         2: .line 554
            aload 1
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 1
            monitorexit
         5: athrow
         6: .line 558
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any

  public <VV> org.eclipse.collections.api.bag.MutableBag<VV> collect(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 563
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 565
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 563
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)Lorg/eclipse/collections/api/bag/MutableBag<TVV;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.bag.primitive.MutableBooleanBag collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableBooleanBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
         0: .line 572
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 574
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* booleanFunction */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableBooleanBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 572
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.BooleanFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    5     0             this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  booleanFunction  Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableBooleanBag;
    MethodParameters:
                 Name  Flags
      booleanFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableBooleanCollection> R collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableBooleanCollection target
         0: .line 581
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 583
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* booleanFunction */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
            aload 3
            monitorexit
         2: areturn
         3: .line 581
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.BooleanFunction org.eclipse.collections.api.collection.primitive.MutableBooleanCollection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableBooleanCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    5     0             this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  booleanFunction  Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TV;>;
            0    5     2           target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;>(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TV;>;TR;)TR;
    MethodParameters:
                 Name  Flags
      booleanFunction  
      target           

  public org.eclipse.collections.api.bag.primitive.MutableByteBag collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableByteBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
         0: .line 590
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 592
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* byteFunction */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableByteBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 590
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.ByteFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  byteFunction  Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableByteBag;
    MethodParameters:
              Name  Flags
      byteFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableByteCollection> R collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableByteCollection target
         0: .line 599
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 601
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* byteFunction */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;
            aload 3
            monitorexit
         2: areturn
         3: .line 599
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.ByteFunction org.eclipse.collections.api.collection.primitive.MutableByteCollection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableByteCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  byteFunction  Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TV;>;
            0    5     2        target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;>(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TV;>;TR;)TR;
    MethodParameters:
              Name  Flags
      byteFunction  
      target        

  public org.eclipse.collections.api.bag.primitive.MutableCharBag collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableCharBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
         0: .line 608
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 610
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* charFunction */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableCharBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 608
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.CharFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  charFunction  Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableCharBag;
    MethodParameters:
              Name  Flags
      charFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableCharCollection> R collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableCharCollection target
         0: .line 617
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 619
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* charFunction */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;
            aload 3
            monitorexit
         2: areturn
         3: .line 617
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.CharFunction org.eclipse.collections.api.collection.primitive.MutableCharCollection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableCharCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  charFunction  Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TV;>;
            0    5     2        target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;>(Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TV;>;TR;)TR;
    MethodParameters:
              Name  Flags
      charFunction  
      target        

  public org.eclipse.collections.api.bag.primitive.MutableDoubleBag collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
         0: .line 626
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 628
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* doubleFunction */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 626
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.DoubleFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  doubleFunction  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
    MethodParameters:
                Name  Flags
      doubleFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableDoubleCollection> R collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection target
         0: .line 635
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 637
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* doubleFunction */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
            aload 3
            monitorexit
         2: areturn
         3: .line 635
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.DoubleFunction org.eclipse.collections.api.collection.primitive.MutableDoubleCollection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  doubleFunction  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;
            0    5     2          target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;>(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;TR;)TR;
    MethodParameters:
                Name  Flags
      doubleFunction  
      target          

  public org.eclipse.collections.api.bag.primitive.MutableFloatBag collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableFloatBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
         0: .line 644
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 646
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* floatFunction */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableFloatBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 644
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.FloatFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  floatFunction  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableFloatBag;
    MethodParameters:
               Name  Flags
      floatFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableFloatCollection> R collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableFloatCollection target
         0: .line 653
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 655
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* floatFunction */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
            aload 3
            monitorexit
         2: areturn
         3: .line 653
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.FloatFunction org.eclipse.collections.api.collection.primitive.MutableFloatCollection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableFloatCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  floatFunction  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;
            0    5     2         target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;>(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;TR;)TR;
    MethodParameters:
               Name  Flags
      floatFunction  
      target         

  public org.eclipse.collections.api.bag.primitive.MutableIntBag collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableIntBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
         0: .line 662
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 664
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* intFunction */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableIntBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 662
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.IntFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  intFunction  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableIntBag;
    MethodParameters:
             Name  Flags
      intFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableIntCollection> R collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableIntCollection target
         0: .line 671
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 673
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* intFunction */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
            aload 3
            monitorexit
         2: areturn
         3: .line 671
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.IntFunction org.eclipse.collections.api.collection.primitive.MutableIntCollection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableIntCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  intFunction  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;
            0    5     2       target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;>(Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;TR;)TR;
    MethodParameters:
             Name  Flags
      intFunction  
      target       

  public org.eclipse.collections.api.bag.primitive.MutableLongBag collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableLongBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
         0: .line 680
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 682
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* longFunction */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableLongBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 680
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.LongFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  longFunction  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableLongBag;
    MethodParameters:
              Name  Flags
      longFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableLongCollection> R collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableLongCollection target
         0: .line 689
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 691
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* longFunction */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
            aload 3
            monitorexit
         2: areturn
         3: .line 689
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.LongFunction org.eclipse.collections.api.collection.primitive.MutableLongCollection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableLongCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  longFunction  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;
            0    5     2        target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;>(Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;TR;)TR;
    MethodParameters:
              Name  Flags
      longFunction  
      target        

  public org.eclipse.collections.api.bag.primitive.MutableShortBag collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableShortBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
         0: .line 698
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 700
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* shortFunction */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableShortBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 698
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.ShortFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  shortFunction  Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableShortBag;
    MethodParameters:
               Name  Flags
      shortFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableShortCollection> R collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableShortCollection target
         0: .line 707
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 709
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* shortFunction */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
            aload 3
            monitorexit
         2: areturn
         3: .line 707
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.ShortFunction org.eclipse.collections.api.collection.primitive.MutableShortCollection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableShortCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  shortFunction  Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TV;>;
            0    5     2         target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;>(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TV;>;TR;)TR;
    MethodParameters:
               Name  Flags
      shortFunction  
      target         

  public <P, VV> org.eclipse.collections.api.bag.MutableBag<VV> collectWith(org.eclipse.collections.api.block.function.Function2<? super V, ? super P, ? extends VV>, P);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
        start local 2 // java.lang.Object parameter
         0: .line 716
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 718
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            aload 3
            monitorexit
         2: areturn
         3: .line 716
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function2 java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.function.Function2 function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1   function  Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TVV;>;
            0    5     2  parameter  TP;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <P:Ljava/lang/Object;VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TVV;>;TP;)Lorg/eclipse/collections/api/bag/MutableBag<TVV;>;
    MethodParameters:
           Name  Flags
      function   
      parameter  

  public <P, VV, R extends java.util.Collection<VV>> R collectWith(org.eclipse.collections.api.block.function.Function2<? super V, ? super P, ? extends VV>, P, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
        start local 2 // java.lang.Object parameter
        start local 3 // java.util.Collection targetCollection
         0: .line 725
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 727
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            aload 2 /* parameter */
            aload 3 /* targetCollection */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            aload 4
            monitorexit
         2: areturn
         3: .line 725
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function2 java.lang.Object java.util.Collection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // java.util.Collection targetCollection
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.function.Function2 function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    5     0              this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1          function  Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TVV;>;
            0    5     2         parameter  TP;
            0    5     3  targetCollection  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <P:Ljava/lang/Object;VV:Ljava/lang/Object;R::Ljava/util/Collection<TVV;>;>(Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TVV;>;TP;TR;)TR;
    MethodParameters:
                  Name  Flags
      function          
      parameter         
      targetCollection  

  public <VV, R extends java.util.Collection<VV>> R collect(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // java.util.Collection target
         0: .line 734
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 736
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collect:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            aload 3
            monitorexit
         2: areturn
         3: .line 734
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function java.util.Collection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
            0    5     2    target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <VV:Ljava/lang/Object;R::Ljava/util/Collection<TVV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public <VV> org.eclipse.collections.api.bag.MutableBag<VV> collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super V>, org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function function
         0: .line 743
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 745
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            aload 3
            monitorexit
         2: areturn
         3: .line 743
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate org.eclipse.collections.api.block.function.Function java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.block.function.Function function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            0    5     2   function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)Lorg/eclipse/collections/api/bag/MutableBag<TVV;>;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  public <VV, R extends java.util.Collection<VV>> R collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super V>, org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function function
        start local 3 // java.util.Collection target
         0: .line 752
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 754
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            aload 2 /* function */
            aload 3 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            aload 4
            monitorexit
         2: areturn
         3: .line 752
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate org.eclipse.collections.api.block.function.Function java.util.Collection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // java.util.Collection target
        end local 2 // org.eclipse.collections.api.block.function.Function function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            0    5     2   function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
            0    5     3     target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <VV:Ljava/lang/Object;R::Ljava/util/Collection<TVV;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      function   
      target     

  public <VV> org.eclipse.collections.api.bag.MutableBag<VV> flatCollect(org.eclipse.collections.api.block.function.Function<? super V, ? extends java.lang.Iterable<VV>>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 761
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 763
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 761
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TVV;>;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TVV;>;>;)Lorg/eclipse/collections/api/bag/MutableBag<TVV;>;
    MethodParameters:
          Name  Flags
      function  

  public <VV, R extends java.util.Collection<VV>> R flatCollect(org.eclipse.collections.api.block.function.Function<? super V, ? extends java.lang.Iterable<VV>>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // java.util.Collection target
         0: .line 770
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 772
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            aload 3
            monitorexit
         2: areturn
         3: .line 770
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function java.util.Collection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TVV;>;>;
            0    5     2    target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <VV:Ljava/lang/Object;R::Ljava/util/Collection<TVV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TVV;>;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public V detect(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 779
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 781
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.detect:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
            aload 2
            monitorexit
         2: areturn
         3: .line 779
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)TV;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> V detectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 788
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 790
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.detectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/lang/Object;
            aload 3
            monitorexit
         2: areturn
         3: .line 788
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate2 java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    5     2  parameter  TP;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)TV;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public java.util.Optional<V> detectOptional(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 797
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 799
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.detectOptional:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/util/Optional;
            aload 2
            monitorexit
         2: areturn
         3: .line 797
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Ljava/util/Optional<TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> java.util.Optional<V> detectWithOptional(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 806
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 808
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.detectWithOptional:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/util/Optional;
            aload 3
            monitorexit
         2: areturn
         3: .line 806
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate2 java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    5     2  parameter  TP;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)Ljava/util/Optional<TV;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public V detectIfNone(org.eclipse.collections.api.block.predicate.Predicate<? super V>, org.eclipse.collections.api.block.function.Function0<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function0 function
         0: .line 815
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 817
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.detectIfNone:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
            aload 3
            monitorexit
         2: areturn
         3: .line 815
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate org.eclipse.collections.api.block.function.Function0 java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.block.function.Function0 function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            0    5     2   function  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;Lorg/eclipse/collections/api/block/function/Function0<+TV;>;)TV;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  public <P> V detectWithIfNone(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, P, org.eclipse.collections.api.block.function.Function0<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
        start local 3 // org.eclipse.collections.api.block.function.Function0 function
         0: .line 824
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 826
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.detectWithIfNone:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
            aload 4
            monitorexit
         2: areturn
         3: .line 824
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate2 java.lang.Object org.eclipse.collections.api.block.function.Function0 java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // org.eclipse.collections.api.block.function.Function0 function
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    5     2  parameter  TP;
            0    5     3   function  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;Lorg/eclipse/collections/api/block/function/Function0<+TV;>;)TV;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  
      function   

  public int count(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 833
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 835
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.count:(Lorg/eclipse/collections/api/block/predicate/Predicate;)I
            aload 2
            monitorexit
         2: ireturn
         3: .line 833
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)I
    MethodParameters:
           Name  Flags
      predicate  

  public <P> int countWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 842
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 844
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.countWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)I
            aload 3
            monitorexit
         2: ireturn
         3: .line 842
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate2 java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    5     2  parameter  TP;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)I
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 851
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 853
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.anySatisfy:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            aload 2
            monitorexit
         2: ireturn
         3: .line 851
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean anySatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 860
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 862
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.anySatisfyWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            aload 3
            monitorexit
         2: ireturn
         3: .line 860
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate2 java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    5     2  parameter  TP;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 869
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 871
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.allSatisfy:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            aload 2
            monitorexit
         2: ireturn
         3: .line 869
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean allSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 878
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 880
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.allSatisfyWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            aload 3
            monitorexit
         2: ireturn
         3: .line 878
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate2 java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    5     2  parameter  TP;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 887
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 889
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.noneSatisfy:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            aload 2
            monitorexit
         2: ireturn
         3: .line 887
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean noneSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 896
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 898
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.noneSatisfyWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            aload 3
            monitorexit
         2: ireturn
         3: .line 896
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.predicate.Predicate2 java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    5     2  parameter  TP;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <IV> IV injectInto(IV, org.eclipse.collections.api.block.function.Function2<? super IV, ? super V, ? extends IV>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.Function2 function
         0: .line 905
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 907
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* injectedValue */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            aload 3
            monitorexit
         2: areturn
         3: .line 905
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object org.eclipse.collections.api.block.function.Function2 java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.block.function.Function2 function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  injectedValue  TIV;
            0    5     2       function  Lorg/eclipse/collections/api/block/function/Function2<-TIV;-TV;+TIV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <IV:Ljava/lang/Object;>(TIV;Lorg/eclipse/collections/api/block/function/Function2<-TIV;-TV;+TIV;>;)TIV;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public int injectInto(int, org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction<? super V>);
    descriptor: (ILorg/eclipse/collections/api/block/function/primitive/IntObjectToIntFunction;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // int injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction function
         0: .line 914
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 916
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            iload 1 /* injectedValue */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.injectInto:(ILorg/eclipse/collections/api/block/function/primitive/IntObjectToIntFunction;)I
            aload 3
            monitorexit
         2: ireturn
         3: .line 914
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap int org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction function
        end local 1 // int injectedValue
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  injectedValue  I
            0    5     2       function  Lorg/eclipse/collections/api/block/function/primitive/IntObjectToIntFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (ILorg/eclipse/collections/api/block/function/primitive/IntObjectToIntFunction<-TV;>;)I
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public long injectInto(long, org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction<? super V>);
    descriptor: (JLorg/eclipse/collections/api/block/function/primitive/LongObjectToLongFunction;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // long injectedValue
        start local 3 // org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction function
         0: .line 923
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 925
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            lload 1 /* injectedValue */
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.injectInto:(JLorg/eclipse/collections/api/block/function/primitive/LongObjectToLongFunction;)J
            aload 4
            monitorexit
         2: lreturn
         3: .line 923
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap long org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction function
        end local 1 // long injectedValue
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  injectedValue  J
            0    5     3       function  Lorg/eclipse/collections/api/block/function/primitive/LongObjectToLongFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (JLorg/eclipse/collections/api/block/function/primitive/LongObjectToLongFunction<-TV;>;)J
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public float injectInto(float, org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction<? super V>);
    descriptor: (FLorg/eclipse/collections/api/block/function/primitive/FloatObjectToFloatFunction;)F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // float injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction function
         0: .line 932
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 934
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            fload 1 /* injectedValue */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.injectInto:(FLorg/eclipse/collections/api/block/function/primitive/FloatObjectToFloatFunction;)F
            aload 3
            monitorexit
         2: freturn
         3: .line 932
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap float org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction function
        end local 1 // float injectedValue
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  injectedValue  F
            0    5     2       function  Lorg/eclipse/collections/api/block/function/primitive/FloatObjectToFloatFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (FLorg/eclipse/collections/api/block/function/primitive/FloatObjectToFloatFunction<-TV;>;)F
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public double injectInto(double, org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction<? super V>);
    descriptor: (DLorg/eclipse/collections/api/block/function/primitive/DoubleObjectToDoubleFunction;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // double injectedValue
        start local 3 // org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction function
         0: .line 941
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 943
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            dload 1 /* injectedValue */
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.injectInto:(DLorg/eclipse/collections/api/block/function/primitive/DoubleObjectToDoubleFunction;)D
            aload 4
            monitorexit
         2: dreturn
         3: .line 941
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap double org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction function
        end local 1 // double injectedValue
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  injectedValue  D
            0    5     3       function  Lorg/eclipse/collections/api/block/function/primitive/DoubleObjectToDoubleFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (DLorg/eclipse/collections/api/block/function/primitive/DoubleObjectToDoubleFunction<-TV;>;)D
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public <R extends java.util.Collection<V>> R into();
    descriptor: (Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.util.Collection target
         0: .line 950
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 952
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.into:(Ljava/util/Collection;)Ljava/util/Collection;
            aload 2
            monitorexit
         2: areturn
         3: .line 950
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.util.Collection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.util.Collection target
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <R::Ljava/util/Collection<TV;>;>(TR;)TR;
    MethodParameters:
        Name  Flags
      target  

  public org.eclipse.collections.api.list.MutableList<V> toList();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 959
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 961
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toList:()Lorg/eclipse/collections/api/list/MutableList;
            aload 1
            monitorexit
         2: areturn
         3: .line 959
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()Lorg/eclipse/collections/api/list/MutableList<TV;>;

  public org.eclipse.collections.api.list.MutableList<V> toSortedList();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 968
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 970
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toSortedList:()Lorg/eclipse/collections/api/list/MutableList;
            aload 1
            monitorexit
         2: areturn
         3: .line 968
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()Lorg/eclipse/collections/api/list/MutableList<TV;>;

  public org.eclipse.collections.api.list.MutableList<V> toSortedList(java.util.Comparator<? super V>);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.util.Comparator comparator
         0: .line 977
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 979
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* comparator */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toSortedList:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/list/MutableList;
            aload 2
            monitorexit
         2: areturn
         3: .line 977
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.util.Comparator java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  comparator  Ljava/util/Comparator<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Ljava/util/Comparator<-TV;>;)Lorg/eclipse/collections/api/list/MutableList<TV;>;
    MethodParameters:
            Name  Flags
      comparator  

  public <VV extends java.lang.Comparable<? super VV>> org.eclipse.collections.api.list.MutableList<V> toSortedListBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 986
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 988
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toSortedListBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
            aload 2
            monitorexit
         2: areturn
         3: .line 986
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <VV::Ljava/lang/Comparable<-TVV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)Lorg/eclipse/collections/api/list/MutableList<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.set.MutableSet<V> toSet();
    descriptor: ()Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 995
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 997
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toSet:()Lorg/eclipse/collections/api/set/MutableSet;
            aload 1
            monitorexit
         2: areturn
         3: .line 995
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()Lorg/eclipse/collections/api/set/MutableSet<TV;>;

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<V> toSortedSet();
    descriptor: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1004
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1006
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toSortedSet:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            aload 1
            monitorexit
         2: areturn
         3: .line 1004
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TV;>;

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<V> toSortedSet(java.util.Comparator<? super V>);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.util.Comparator comparator
         0: .line 1013
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1015
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* comparator */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toSortedSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            aload 2
            monitorexit
         2: areturn
         3: .line 1013
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.util.Comparator java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  comparator  Ljava/util/Comparator<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Ljava/util/Comparator<-TV;>;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TV;>;
    MethodParameters:
            Name  Flags
      comparator  

  public <VV extends java.lang.Comparable<? super VV>> org.eclipse.collections.api.set.sorted.MutableSortedSet<V> toSortedSetBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1022
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1024
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toSortedSetBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            aload 2
            monitorexit
         2: areturn
         3: .line 1022
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <VV::Ljava/lang/Comparable<-TVV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.bag.MutableBag<V> toBag();
    descriptor: ()Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1031
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1033
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toBag:()Lorg/eclipse/collections/api/bag/MutableBag;
            aload 1
            monitorexit
         2: areturn
         3: .line 1031
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()Lorg/eclipse/collections/api/bag/MutableBag<TV;>;

  public org.eclipse.collections.api.bag.sorted.MutableSortedBag<V> toSortedBag();
    descriptor: ()Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1040
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1042
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toSortedBag:()Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
            aload 1
            monitorexit
         2: areturn
         3: .line 1040
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag<TV;>;

  public org.eclipse.collections.api.bag.sorted.MutableSortedBag<V> toSortedBag(java.util.Comparator<? super V>);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.util.Comparator comparator
         0: .line 1049
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1051
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* comparator */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toSortedBag:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 1049
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.util.Comparator java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  comparator  Ljava/util/Comparator<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Ljava/util/Comparator<-TV;>;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag<TV;>;
    MethodParameters:
            Name  Flags
      comparator  

  public <VV extends java.lang.Comparable<? super VV>> org.eclipse.collections.api.bag.sorted.MutableSortedBag<V> toSortedBagBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1058
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1060
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toSortedBagBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 1058
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <VV::Ljava/lang/Comparable<-TVV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <NK, NV> org.eclipse.collections.api.map.MutableMap<NK, NV> toMap(org.eclipse.collections.api.block.function.Function<? super V, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super V, ? extends NV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 2 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 1067
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 1069
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* keyFunction */
            aload 2 /* valueFunction */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toMap:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
            aload 3
            monitorexit
         2: areturn
         3: .line 1067
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.block.function.Function java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;
            0    5     2  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;)Lorg/eclipse/collections/api/map/MutableMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      keyFunction    
      valueFunction  

  public <NK, NV> org.eclipse.collections.api.map.sorted.MutableSortedMap<NK, NV> toSortedMap(org.eclipse.collections.api.block.function.Function<? super V, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super V, ? extends NV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 2 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 1076
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 1078
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* keyFunction */
            aload 2 /* valueFunction */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toSortedMap:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
            aload 3
            monitorexit
         2: areturn
         3: .line 1076
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.block.function.Function java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;
            0    5     2  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      keyFunction    
      valueFunction  

  public <NK, NV> org.eclipse.collections.api.map.sorted.MutableSortedMap<NK, NV> toSortedMap(java.util.Comparator<? super NK>, org.eclipse.collections.api.block.function.Function<? super V, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super V, ? extends NV>);
    descriptor: (Ljava/util/Comparator;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.util.Comparator comparator
        start local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 3 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 1085
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 1087
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* comparator */
            aload 2 /* keyFunction */
            aload 3 /* valueFunction */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toSortedMap:(Ljava/util/Comparator;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
            aload 4
            monitorexit
         2: areturn
         3: .line 1085
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.util.Comparator org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.block.function.Function java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1     comparator  Ljava/util/Comparator<-TNK;>;
            0    5     2    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;
            0    5     3  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Ljava/util/Comparator<-TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      comparator     
      keyFunction    
      valueFunction  

  public <KK extends java.lang.Comparable<? super KK>, NK, NV> org.eclipse.collections.api.map.sorted.MutableSortedMap<NK, NV> toSortedMapBy(org.eclipse.collections.api.block.function.Function<? super NK, KK>, org.eclipse.collections.api.block.function.Function<? super V, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super V, ? extends NV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function sortBy
        start local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 3 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 1094
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 1096
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* sortBy */
            aload 2 /* keyFunction */
            aload 3 /* valueFunction */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toSortedMapBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
            aload 4
            monitorexit
         2: areturn
         3: .line 1094
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.block.function.Function java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 1 // org.eclipse.collections.api.block.function.Function sortBy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1         sortBy  Lorg/eclipse/collections/api/block/function/Function<-TNK;TKK;>;
            0    5     2    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;
            0    5     3  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <KK::Ljava/lang/Comparable<-TKK;>;NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TNK;TKK;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      sortBy         
      keyFunction    
      valueFunction  

  public org.eclipse.collections.api.LazyIterable<V> asLazy();
    descriptor: ()Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1103
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1105
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
            aload 1
            monitorexit
         2: areturn
         3: .line 1103
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()Lorg/eclipse/collections/api/LazyIterable<TV;>;

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1112
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1114
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toArray:()[Ljava/lang/Object;
            aload 1
            monitorexit
         2: areturn
         3: .line 1112
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public <T> T[] toArray();
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.lang.Object[] a
         0: .line 1121
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1123
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* a */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            aload 2
            monitorexit
         2: areturn
         3: .line 1121
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object[] java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.lang.Object[] a
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1     a  [Ljava/lang/Object;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <T:Ljava/lang/Object;>([TT;)[TT;
    MethodParameters:
      Name  Flags
      a     

  public V min(java.util.Comparator<? super V>);
    descriptor: (Ljava/util/Comparator;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.util.Comparator comparator
         0: .line 1130
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1132
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* comparator */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.min:(Ljava/util/Comparator;)Ljava/lang/Object;
            aload 2
            monitorexit
         2: areturn
         3: .line 1130
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.util.Comparator java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  comparator  Ljava/util/Comparator<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Ljava/util/Comparator<-TV;>;)TV;
    MethodParameters:
            Name  Flags
      comparator  

  public V max(java.util.Comparator<? super V>);
    descriptor: (Ljava/util/Comparator;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.util.Comparator comparator
         0: .line 1139
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1141
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* comparator */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.max:(Ljava/util/Comparator;)Ljava/lang/Object;
            aload 2
            monitorexit
         2: areturn
         3: .line 1139
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.util.Comparator java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  comparator  Ljava/util/Comparator<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Ljava/util/Comparator<-TV;>;)TV;
    MethodParameters:
            Name  Flags
      comparator  

  public V min();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1148
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1150
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.min:()Ljava/lang/Object;
            aload 1
            monitorexit
         2: areturn
         3: .line 1148
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()TV;

  public V max();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1157
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1159
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.max:()Ljava/lang/Object;
            aload 1
            monitorexit
         2: areturn
         3: .line 1157
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()TV;

  public <VV extends java.lang.Comparable<? super VV>> V maxBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1166
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1168
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.maxBy:(Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
            aload 2
            monitorexit
         2: areturn
         3: .line 1166
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <VV::Ljava/lang/Comparable<-TVV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)TV;
    MethodParameters:
          Name  Flags
      function  

  public <VV extends java.lang.Comparable<? super VV>> V minBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1175
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1177
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.minBy:(Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
            aload 2
            monitorexit
         2: areturn
         3: .line 1175
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <VV::Ljava/lang/Comparable<-TVV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)TV;
    MethodParameters:
          Name  Flags
      function  

  public long sumOfInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction function
         0: .line 1184
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1186
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.sumOfInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)J
            aload 2
            monitorexit
         2: lreturn
         3: .line 1184
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.IntFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;)J
    MethodParameters:
          Name  Flags
      function  

  public double sumOfFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
         0: .line 1193
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1195
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.sumOfFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)D
            aload 2
            monitorexit
         2: dreturn
         3: .line 1193
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.FloatFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;)D
    MethodParameters:
          Name  Flags
      function  

  public long sumOfLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction function
         0: .line 1202
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1204
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.sumOfLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)J
            aload 2
            monitorexit
         2: lreturn
         3: .line 1202
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.LongFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;)J
    MethodParameters:
          Name  Flags
      function  

  public double sumOfDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
         0: .line 1211
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1213
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.sumOfDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)D
            aload 2
            monitorexit
         2: dreturn
         3: .line 1211
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.primitive.DoubleFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;)D
    MethodParameters:
          Name  Flags
      function  

  public <V1> org.eclipse.collections.api.map.primitive.MutableObjectLongMap<V1> sumByInt(org.eclipse.collections.api.block.function.Function<? super V, ? extends V1>, org.eclipse.collections.api.block.function.primitive.IntFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.IntFunction function
         0: .line 1220
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 1222
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* groupBy */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.sumByInt:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
            aload 3
            monitorexit
         2: areturn
         3: .line 1220
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.block.function.primitive.IntFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.block.function.primitive.IntFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;
            0    5     2  function  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <V1:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap<TV1;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public <V1> org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap<V1> sumByFloat(org.eclipse.collections.api.block.function.Function<? super V, ? extends V1>, org.eclipse.collections.api.block.function.primitive.FloatFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
         0: .line 1229
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 1231
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* groupBy */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.sumByFloat:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
            aload 3
            monitorexit
         2: areturn
         3: .line 1229
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.block.function.primitive.FloatFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;
            0    5     2  function  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <V1:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap<TV1;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public <V1> org.eclipse.collections.api.map.primitive.MutableObjectLongMap<V1> sumByLong(org.eclipse.collections.api.block.function.Function<? super V, ? extends V1>, org.eclipse.collections.api.block.function.primitive.LongFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.LongFunction function
         0: .line 1238
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 1240
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* groupBy */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.sumByLong:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
            aload 3
            monitorexit
         2: areturn
         3: .line 1238
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.block.function.primitive.LongFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.block.function.primitive.LongFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;
            0    5     2  function  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <V1:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap<TV1;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public <V1> org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap<V1> sumByDouble(org.eclipse.collections.api.block.function.Function<? super V, ? extends V1>, org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
         0: .line 1247
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 1249
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* groupBy */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.sumByDouble:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
            aload 3
            monitorexit
         2: areturn
         3: .line 1247
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.block.function.primitive.DoubleFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;
            0    5     2  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <V1:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap<TV1;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public org.eclipse.collections.api.set.primitive.MutableLongSet keySet();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1256
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1258
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.keySet:()Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.SynchronizedLongSet.of:(Lorg/eclipse/collections/api/set/primitive/MutableLongSet;Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/mutable/primitive/SynchronizedLongSet;
            aload 1
            monitorexit
         2: areturn
         3: .line 1256
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public java.util.Collection<V> values();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1265
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1267
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.values:()Ljava/util/Collection;
            invokestatic org.eclipse.collections.impl.collection.mutable.CollectionAdapter.adapt:(Ljava/util/Collection;)Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.collection.mutable.SynchronizedMutableCollection.of:(Ljava/util/Collection;Ljava/lang/Object;)Lorg/eclipse/collections/impl/collection/mutable/SynchronizedMutableCollection;
            aload 1
            monitorexit
         2: areturn
         3: .line 1265
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()Ljava/util/Collection<TV;>;

  public org.eclipse.collections.api.LazyLongIterable keysView();
    descriptor: ()Lorg/eclipse/collections/api/LazyLongIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1274
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1276
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.keysView:()Lorg/eclipse/collections/api/LazyLongIterable;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.primitive.SynchronizedLongIterable.of:(Lorg/eclipse/collections/api/LongIterable;Ljava/lang/Object;)Lorg/eclipse/collections/impl/primitive/SynchronizedLongIterable;
            invokevirtual org.eclipse.collections.impl.primitive.SynchronizedLongIterable.asLazy:()Lorg/eclipse/collections/api/LazyLongIterable;
            aload 1
            monitorexit
         2: areturn
         3: .line 1274
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.tuple.primitive.LongObjectPair<V>> keyValuesView();
    descriptor: ()Lorg/eclipse/collections/api/RichIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1283
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1285
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.keyValuesView:()Lorg/eclipse/collections/api/RichIterable;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.SynchronizedRichIterable.of:(Lorg/eclipse/collections/api/RichIterable;Ljava/lang/Object;)Lorg/eclipse/collections/impl/SynchronizedRichIterable;
            invokevirtual org.eclipse.collections.impl.SynchronizedRichIterable.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
            aload 1
            monitorexit
         2: areturn
         3: .line 1283
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/tuple/primitive/LongObjectPair<TV;>;>;

  public org.eclipse.collections.api.map.primitive.MutableObjectLongMap<V> flipUniqueValues();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1292
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1294
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.flipUniqueValues:()Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
            aload 1
            monitorexit
         2: areturn
         3: .line 1292
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap<TV;>;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.lang.Object obj
         0: .line 1301
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1303
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* obj */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.equals:(Ljava/lang/Object;)Z
            aload 2
            monitorexit
         2: ireturn
         3: .line 1301
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.lang.Object obj
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1   obj  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1310
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1312
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.hashCode:()I
            aload 1
            monitorexit
         2: ireturn
         3: .line 1310
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1319
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1321
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.toString:()Ljava/lang/String;
            aload 1
            monitorexit
         2: areturn
         3: .line 1319
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public java.lang.String makeString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1328
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1330
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.makeString:()Ljava/lang/String;
            aload 1
            monitorexit
         2: areturn
         3: .line 1328
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public java.lang.String makeString(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.lang.String separator
         0: .line 1337
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1339
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* separator */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.makeString:(Ljava/lang/String;)Ljava/lang/String;
            aload 2
            monitorexit
         2: areturn
         3: .line 1337
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.String java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.lang.String separator
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  separator  Ljava/lang/String;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    MethodParameters:
           Name  Flags
      separator  

  public java.lang.String makeString(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.lang.String start
        start local 2 // java.lang.String separator
        start local 3 // java.lang.String end
         0: .line 1346
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 1348
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* start */
            aload 2 /* separator */
            aload 3 /* end */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.makeString:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            aload 4
            monitorexit
         2: areturn
         3: .line 1346
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.String java.lang.String java.lang.String java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // java.lang.String end
        end local 2 // java.lang.String separator
        end local 1 // java.lang.String start
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1      start  Ljava/lang/String;
            0    5     2  separator  Ljava/lang/String;
            0    5     3        end  Ljava/lang/String;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    MethodParameters:
           Name  Flags
      start      
      separator  
      end        

  public void appendString(java.lang.Appendable);
    descriptor: (Ljava/lang/Appendable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.lang.Appendable appendable
         0: .line 1355
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1357
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* appendable */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.appendString:(Ljava/lang/Appendable;)V
         2: .line 1355
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Appendable java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 1359
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    7     1  appendable  Ljava/lang/Appendable;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
            Name  Flags
      appendable  

  public void appendString(java.lang.Appendable, java.lang.String);
    descriptor: (Ljava/lang/Appendable;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.lang.Appendable appendable
        start local 2 // java.lang.String separator
         0: .line 1364
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 1366
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* appendable */
            aload 2 /* separator */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.appendString:(Ljava/lang/Appendable;Ljava/lang/String;)V
         2: .line 1364
            aload 3
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Appendable java.lang.String java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 3
            monitorexit
         5: athrow
         6: .line 1368
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.String separator
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    7     1  appendable  Ljava/lang/Appendable;
            0    7     2   separator  Ljava/lang/String;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
            Name  Flags
      appendable  
      separator   

  public void appendString(java.lang.Appendable, java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=5
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.lang.Appendable appendable
        start local 2 // java.lang.String start
        start local 3 // java.lang.String separator
        start local 4 // java.lang.String end
         0: .line 1373
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 5
            monitorenter
         1: .line 1375
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* appendable */
            aload 2 /* start */
            aload 3 /* separator */
            aload 4 /* end */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.appendString:(Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         2: .line 1373
            aload 5
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Appendable java.lang.String java.lang.String java.lang.String java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 5
            monitorexit
         5: athrow
         6: .line 1377
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.lang.String end
        end local 3 // java.lang.String separator
        end local 2 // java.lang.String start
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    7     1  appendable  Ljava/lang/Appendable;
            0    7     2       start  Ljava/lang/String;
            0    7     3   separator  Ljava/lang/String;
            0    7     4         end  Ljava/lang/String;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
            Name  Flags
      appendable  
      start       
      separator   
      end         

  public <VV> org.eclipse.collections.api.multimap.bag.MutableBagMultimap<VV, V> groupBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1382
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1384
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap;
            aload 2
            monitorexit
         2: areturn
         3: .line 1382
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap<TVV;TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <VV, R extends org.eclipse.collections.api.multimap.MutableMultimap<VV, V>> R groupBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
         0: .line 1391
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 1393
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.groupBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            aload 3
            monitorexit
         2: areturn
         3: .line 1391
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.multimap.MutableMultimap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
            0    5     2    target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <VV:Ljava/lang/Object;R::Lorg/eclipse/collections/api/multimap/MutableMultimap<TVV;TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public <VV> org.eclipse.collections.api.multimap.bag.MutableBagMultimap<VV, V> groupByEach(org.eclipse.collections.api.block.function.Function<? super V, ? extends java.lang.Iterable<VV>>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1400
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1402
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap;
            aload 2
            monitorexit
         2: areturn
         3: .line 1400
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TVV;>;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TVV;>;>;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap<TVV;TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <VV, R extends org.eclipse.collections.api.multimap.MutableMultimap<VV, V>> R groupByEach(org.eclipse.collections.api.block.function.Function<? super V, ? extends java.lang.Iterable<VV>>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
         0: .line 1409
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 1411
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            aload 3
            monitorexit
         2: areturn
         3: .line 1409
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.multimap.MutableMultimap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TVV;>;>;
            0    5     2    target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <VV:Ljava/lang/Object;R::Lorg/eclipse/collections/api/multimap/MutableMultimap<TVV;TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TVV;>;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public <VV> org.eclipse.collections.api.map.MutableMap<VV, V> groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1418
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1420
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
            aload 2
            monitorexit
         2: areturn
         3: .line 1418
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)Lorg/eclipse/collections/api/map/MutableMap<TVV;TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <VV, R extends org.eclipse.collections.api.map.MutableMap<VV, V>> R groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/map/MutableMap;)Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.map.MutableMap target
         0: .line 1427
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 1429
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/map/MutableMap;)Lorg/eclipse/collections/api/map/MutableMap;
            aload 3
            monitorexit
         2: areturn
         3: .line 1427
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.map.MutableMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // org.eclipse.collections.api.map.MutableMap target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
            0    5     2    target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <VV:Ljava/lang/Object;R::Lorg/eclipse/collections/api/map/MutableMap<TVV;TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public <S> org.eclipse.collections.api.bag.MutableBag<org.eclipse.collections.api.tuple.Pair<V, S>> zip(java.lang.Iterable<S>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.lang.Iterable that
         0: .line 1440
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1442
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* that */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/MutableBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 1440
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Iterable java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.lang.Iterable that
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1  that  Ljava/lang/Iterable<TS;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Iterable<TS;>;)Lorg/eclipse/collections/api/bag/MutableBag<Lorg/eclipse/collections/api/tuple/Pair<TV;TS;>;>;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      that  

  public <S, R extends java.util.Collection<org.eclipse.collections.api.tuple.Pair<V, S>>> R zip(java.lang.Iterable<S>, );
    descriptor: (Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // java.lang.Iterable that
        start local 2 // java.util.Collection target
         0: .line 1449
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 1451
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* that */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.zip:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            aload 3
            monitorexit
         2: areturn
         3: .line 1449
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Iterable java.util.Collection java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 2 // java.util.Collection target
        end local 1 // java.lang.Iterable that
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    5     1    that  Ljava/lang/Iterable<TS;>;
            0    5     2  target  TR;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <S:Ljava/lang/Object;R::Ljava/util/Collection<Lorg/eclipse/collections/api/tuple/Pair<TV;TS;>;>;>(Ljava/lang/Iterable<TS;>;TR;)TR;
    MethodParameters:
        Name  Flags
      that    
      target  

  public org.eclipse.collections.api.map.primitive.MutableLongObjectMap<V> withKeyValue(long, V);
    descriptor: (JLjava/lang/Object;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // long key
        start local 3 // java.lang.Object value
         0: .line 1458
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 1460
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            lload 1 /* key */
            aload 3 /* value */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.withKeyValue:(JLjava/lang/Object;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            pop
         2: .line 1458
            aload 4
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap long java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 4
            monitorexit
         5: athrow
         6: .line 1462
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 3 // java.lang.Object value
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    7     1    key  J
            0    7     3  value  TV;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    Signature: (JTV;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap<TV;>;
    MethodParameters:
       Name  Flags
      key    
      value  

  public org.eclipse.collections.api.map.primitive.MutableLongObjectMap<V> withoutKey(long);
    descriptor: (J)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // long key
         0: .line 1468
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 1470
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            lload 1 /* key */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.withoutKey:(J)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            pop
         2: .line 1468
            aload 3
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap long java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 3
            monitorexit
         5: athrow
         6: .line 1472
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    7     1   key  J
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    Signature: (J)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap<TV;>;
    MethodParameters:
      Name  Flags
      key   

  public org.eclipse.collections.api.map.primitive.MutableLongObjectMap<V> withoutAllKeys(org.eclipse.collections.api.LongIterable);
    descriptor: (Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.LongIterable keys
         0: .line 1478
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1480
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* keys */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.withoutAllKeys:(Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            pop
         2: .line 1478
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.LongIterable java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 1482
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.LongIterable keys
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    7     1  keys  Lorg/eclipse/collections/api/LongIterable;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    Signature: (Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap<TV;>;
    MethodParameters:
      Name  Flags
      keys  

  public org.eclipse.collections.api.map.primitive.MutableLongObjectMap<V> asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1488
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1490
            new org.eclipse.collections.impl.map.mutable.primitive.UnmodifiableLongObjectMap
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.UnmodifiableLongObjectMap.<init>:(Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;)V
            aload 1
            monitorexit
         2: areturn
         3: .line 1488
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap<TV;>;

  public org.eclipse.collections.api.map.primitive.MutableLongObjectMap<V> asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1497
            aload 0 /* this */
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
    Signature: ()Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap<TV;>;

  public org.eclipse.collections.api.map.primitive.ImmutableLongObjectMap<V> toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/ImmutableLongObjectMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1503
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1505
            getstatic org.eclipse.collections.impl.factory.primitive.LongObjectMaps.immutable:Lorg/eclipse/collections/api/factory/map/primitive/ImmutableLongObjectMapFactory;
            aload 0 /* this */
            invokeinterface org.eclipse.collections.api.factory.map.primitive.ImmutableLongObjectMapFactory.withAll:(Lorg/eclipse/collections/api/map/primitive/LongObjectMap;)Lorg/eclipse/collections/api/map/primitive/ImmutableLongObjectMap;
            aload 1
            monitorexit
         2: areturn
         3: .line 1503
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()Lorg/eclipse/collections/api/map/primitive/ImmutableLongObjectMap<TV;>;

  public void forEach(org.eclipse.collections.api.block.procedure.Procedure<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 1512
            aload 0 /* this */
            aload 1 /* procedure */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.each:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 1513
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public void each(org.eclipse.collections.api.block.procedure.Procedure<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 1518
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1520
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* procedure */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 1518
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.procedure.Procedure java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 1522
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    7     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public void forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 1527
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 1529
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* objectIntProcedure */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.forEachWithIndex:(Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
         2: .line 1527
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 1531
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    7     0                this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    7     1  objectIntProcedure  Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TV;>;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TV;>;)V
    MethodParameters:
                    Name  Flags
      objectIntProcedure  

  public <P> void forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super V, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        start local 2 // java.lang.Object parameter
         0: .line 1536
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 1538
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            aload 1 /* procedure */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.forEachWith:(Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
         2: .line 1536
            aload 3
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap org.eclipse.collections.api.block.procedure.Procedure2 java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 3
            monitorexit
         5: athrow
         6: .line 1540
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
            0    7     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure2<-TV;-TP;>;
            0    7     2  parameter  TP;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/procedure/Procedure2<-TV;-TP;>;TP;)V
    MethodParameters:
           Name  Flags
      procedure  
      parameter  

  public java.util.Iterator<V> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
         0: .line 1548
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.map:Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            invokeinterface org.eclipse.collections.api.map.primitive.MutableLongObjectMap.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/SynchronizedLongObjectMap<TV;>;
    Signature: ()Ljava/util/Iterator<TV;>;

  public org.eclipse.collections.api.map.primitive.ObjectLongMap sumByInt(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.IntFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.sumByInt:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable collectIf(org.eclipse.collections.api.block.predicate.Predicate, org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            aload 2
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag collectIf(org.eclipse.collections.api.block.predicate.Predicate, org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            aload 2
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.zipWithIndex:()Lorg/eclipse/collections/api/set/MutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.UnsortedSetIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/set/UnsortedSetIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.zipWithIndex:()Lorg/eclipse/collections/api/set/MutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable zip(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/RichIterable;
    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.Iterable
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag zip(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/Bag;
    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.Iterable
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.CharIterable collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/CharIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.CharFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableCharBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.CharBag collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/bag/primitive/CharBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.CharFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableCharBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.IntIterable collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/IntIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableIntBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.IntBag collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/bag/primitive/IntBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableIntBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.LongIterable collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/LongIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableLongBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.LongBag collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/bag/primitive/LongBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableLongBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable rejectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag rejectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ByteIterable collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/ByteIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ByteFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableByteBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.ByteBag collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/bag/primitive/ByteBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ByteFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableByteBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.ObjectLongMap sumByLong(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.LongFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.sumByLong:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.PartitionIterable partition(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/PartitionIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.bag.PartitionBag partition(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/bag/PartitionBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.DoubleIterable collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/DoubleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.DoubleBag collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/bag/primitive/DoubleBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.LongObjectMap reject(org.eclipse.collections.api.block.predicate.primitive.LongObjectPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongObjectPredicate;)Lorg/eclipse/collections/api/map/primitive/LongObjectMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.primitive.LongObjectPredicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/LongObjectPredicate;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.Multimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.bag.BagMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/BagMultimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable collectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag collectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.LongObjectMap select(org.eclipse.collections.api.block.predicate.primitive.LongObjectPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongObjectPredicate;)Lorg/eclipse/collections/api/map/primitive/LongObjectMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.primitive.LongObjectPredicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.select:(Lorg/eclipse/collections/api/block/predicate/primitive/LongObjectPredicate;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ShortIterable collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/ShortIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ShortFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableShortBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.ShortBag collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/bag/primitive/ShortBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ShortFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableShortBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.LongObjectMap tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/map/primitive/LongObjectMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.FloatIterable collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/FloatIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableFloatBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.FloatBag collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/bag/primitive/FloatBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableFloatBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.Multimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.bag.BagMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/BagMultimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.ObjectDoubleMap sumByDouble(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.DoubleFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.sumByDouble:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable selectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag selectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.PartitionIterable partitionWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/PartitionIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.bag.PartitionBag partitionWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/bag/PartitionBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag flatCollectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokeinterface org.eclipse.collections.api.map.primitive.MutablePrimitiveObjectMap.flatCollectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable flatCollectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokeinterface org.eclipse.collections.api.map.primitive.MutablePrimitiveObjectMap.flatCollectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.ObjectDoubleMap sumByFloat(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.FloatFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.sumByFloat:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.MapIterable aggregateBy(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.Function0, org.eclipse.collections.api.block.function.Function2);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.Function0
            aload 3
            checkcast org.eclipse.collections.api.block.function.Function2
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.aggregateBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/RichIterable;
    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.Class
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/Bag;
    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.Class
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.BooleanIterable collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/BooleanIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.BooleanFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableBooleanBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.BooleanBag collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/bag/primitive/BooleanBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.BooleanFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableBooleanBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable collect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag collect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.ObjectLongMap flipUniqueValues();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.flipUniqueValues:()Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.MapIterable aggregateInPlaceBy(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.Function0, org.eclipse.collections.api.block.procedure.Procedure2);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/MapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.Function0
            aload 3
            checkcast org.eclipse.collections.api.block.procedure.Procedure2
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.aggregateInPlaceBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/MutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.MapIterable groupByUniqueKey(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.UnsortedMapIterable groupByUniqueKey(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/UnsortedMapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static java.lang.Object $deserializeLambda$(java.lang.invoke.SerializedLambda);
    descriptor: (Ljava/lang/invoke/SerializedLambda;)Ljava/lang/Object;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=3, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodName:()Ljava/lang/String;
            astore 1
            iconst_m1
            istore 2
            aload 1
            invokevirtual java.lang.String.hashCode:()I
            lookupswitch { // 1
               111375: 1
              default: 2
          }
      StackMap locals: java.lang.String int
      StackMap stack:
         1: aload 1
            ldc "put"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 2
            iconst_0
            istore 2
      StackMap locals:
      StackMap stack:
         2: iload 2
            lookupswitch { // 1
                    0: 3
              default: 4
          }
      StackMap locals:
      StackMap stack:
         3: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 9
            if_icmpne 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/procedure/primitive/LongObjectProcedure"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "value"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(JLjava/lang/Object;)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/map/primitive/MutableLongObjectMap"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(JLjava/lang/Object;)Ljava/lang/Object;"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.MutableLongObjectMap
            invokedynamic value(Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;)Lorg/eclipse/collections/api/block/procedure/primitive/LongObjectProcedure;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (JLjava/lang/Object;)V
                  org/eclipse/collections/api/map/primitive/MutableLongObjectMap.put(JLjava/lang/Object;)Ljava/lang/Object; (9 itf)
                  (JLjava/lang/Object;)V
                  1
            areturn
      StackMap locals:
      StackMap stack:
         4: new java.lang.IllegalArgumentException
            dup
            ldc "Invalid lambda deserialization"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <V:Ljava/lang/Object;>Ljava/lang/Object;Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap<TV;>;Ljava/io/Serializable;
SourceFile: "SynchronizedLongObjectMap.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles