public abstract class org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable<K, V> extends org.eclipse.collections.impl.map.AbstractMapIterable<K, V> implements org.eclipse.collections.api.map.MutableMapIterable<K, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable
  super_class: org.eclipse.collections.impl.map.AbstractMapIterable
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
         0: .line 43
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.map.AbstractMapIterable.<init>:()V
            return
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;

  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.AbstractMutableMapIterable this
         0: .line 48
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.values:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
    Signature: ()Ljava/util/Iterator<TV;>;

  public V getIfAbsentPut(K, org.eclipse.collections.api.block.function.Function0<? extends V>);
    descriptor: (Ljava/lang/Object;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.AbstractMutableMapIterable this
        start local 1 // java.lang.Object key
        start local 2 // org.eclipse.collections.api.block.function.Function0 function
         0: .line 54
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 55
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.isAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 4
         2: .line 57
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            astore 3 /* result */
         3: .line 58
            aload 0 /* this */
            aload 1 /* key */
            aload 3 /* result */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 60
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 3 /* result */
            areturn
        end local 3 // java.lang.Object result
        end local 2 // org.eclipse.collections.api.block.function.Function0 function
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    5     1       key  TK;
            0    5     2  function  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
            1    5     3    result  TV;
    Signature: (TK;Lorg/eclipse/collections/api/block/function/Function0<+TV;>;)TV;
    MethodParameters:
          Name  Flags
      key       
      function  

  public V getIfAbsentPut(K, );
    descriptor: (Ljava/lang/Object;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.AbstractMutableMapIterable this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 66
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 67
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.isAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 4
         2: .line 69
            aload 2 /* value */
            astore 3 /* result */
         3: .line 70
            aload 0 /* this */
            aload 1 /* key */
            aload 3 /* result */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 72
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 3 /* result */
            areturn
        end local 3 // java.lang.Object result
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    5     1     key  TK;
            0    5     2   value  TV;
            1    5     3  result  TV;
    Signature: (TK;TV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

  public V getIfAbsentPutWithKey(K, org.eclipse.collections.api.block.function.Function<? super K, ? extends V>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
        start local 1 // java.lang.Object key
        start local 2 // org.eclipse.collections.api.block.function.Function function
         0: .line 78
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* function */
            aload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.getIfAbsentPutWith:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function function
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    1     1       key  TK;
            0    1     2  function  Lorg/eclipse/collections/api/block/function/Function<-TK;+TV;>;
    Signature: (TK;Lorg/eclipse/collections/api/block/function/Function<-TK;+TV;>;)TV;
    MethodParameters:
          Name  Flags
      key       
      function  

  public <P> V getIfAbsentPutWith(K, org.eclipse.collections.api.block.function.Function<? super P, ? extends V>, );
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
        start local 1 // java.lang.Object key
        start local 2 // org.eclipse.collections.api.block.function.Function function
        start local 3 // java.lang.Object parameter
         0: .line 84
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 4 /* result */
        start local 4 // java.lang.Object result
         1: .line 85
            aload 0 /* this */
            aload 4 /* result */
            aload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.isAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 4
         2: .line 87
            aload 2 /* function */
            aload 3 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 4 /* result */
         3: .line 88
            aload 0 /* this */
            aload 1 /* key */
            aload 4 /* result */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 90
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 4 /* result */
            areturn
        end local 4 // java.lang.Object result
        end local 3 // java.lang.Object parameter
        end local 2 // org.eclipse.collections.api.block.function.Function function
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    5     1        key  TK;
            0    5     2   function  Lorg/eclipse/collections/api/block/function/Function<-TP;+TV;>;
            0    5     3  parameter  TP;
            1    5     4     result  TV;
    Signature: <P:Ljava/lang/Object;>(TK;Lorg/eclipse/collections/api/block/function/Function<-TP;+TV;>;TP;)TV;
    MethodParameters:
           Name  Flags
      key        
      function   
      parameter  

  public V updateValue(K, org.eclipse.collections.api.block.function.Function0<? extends V>, org.eclipse.collections.api.block.function.Function<? super V, ? extends V>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
        start local 1 // java.lang.Object key
        start local 2 // org.eclipse.collections.api.block.function.Function0 factory
        start local 3 // org.eclipse.collections.api.block.function.Function function
         0: .line 96
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* factory */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.getIfAbsent:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
            astore 4 /* oldValue */
        start local 4 // java.lang.Object oldValue
         1: .line 97
            aload 3 /* function */
            aload 4 /* oldValue */
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 5 /* newValue */
        start local 5 // java.lang.Object newValue
         2: .line 98
            aload 0 /* this */
            aload 1 /* key */
            aload 5 /* newValue */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 99
            aload 5 /* newValue */
            areturn
        end local 5 // java.lang.Object newValue
        end local 4 // java.lang.Object oldValue
        end local 3 // org.eclipse.collections.api.block.function.Function function
        end local 2 // org.eclipse.collections.api.block.function.Function0 factory
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    4     1       key  TK;
            0    4     2   factory  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
            0    4     3  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TV;>;
            1    4     4  oldValue  TV;
            2    4     5  newValue  TV;
    Signature: (TK;Lorg/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(K, org.eclipse.collections.api.block.function.Function0<? extends V>, org.eclipse.collections.api.block.function.Function2<? super V, ? super P, ? extends V>, );
    descriptor: (Ljava/lang/Object;Lorg/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=3, locals=7, args_size=5
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
        start local 1 // java.lang.Object key
        start local 2 // org.eclipse.collections.api.block.function.Function0 factory
        start local 3 // org.eclipse.collections.api.block.function.Function2 function
        start local 4 // java.lang.Object parameter
         0: .line 105
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* factory */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.getIfAbsent:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
            astore 5 /* oldValue */
        start local 5 // java.lang.Object oldValue
         1: .line 106
            aload 3 /* function */
            aload 5 /* oldValue */
            aload 4 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 6 /* newValue */
        start local 6 // java.lang.Object newValue
         2: .line 107
            aload 0 /* this */
            aload 1 /* key */
            aload 6 /* newValue */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 108
            aload 6 /* newValue */
            areturn
        end local 6 // java.lang.Object newValue
        end local 5 // java.lang.Object oldValue
        end local 4 // java.lang.Object parameter
        end local 3 // org.eclipse.collections.api.block.function.Function2 function
        end local 2 // org.eclipse.collections.api.block.function.Function0 factory
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    4     1        key  TK;
            0    4     2    factory  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
            0    4     3   function  Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TV;>;
            0    4     4  parameter  TP;
            1    4     5   oldValue  TV;
            2    4     6   newValue  TV;
    Signature: <P:Ljava/lang/Object;>(TK;Lorg/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 <VV> org.eclipse.collections.api.map.MutableMapIterable<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/MutableMapIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 114
            aload 0 /* this */
            aload 1 /* function */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.size:()I
            invokestatic org.eclipse.collections.impl.map.mutable.UnifiedMap.newMap:(I)Lorg/eclipse/collections/impl/map/mutable/UnifiedMap;
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/map/MutableMapIterable;)Lorg/eclipse/collections/api/map/MutableMapIterable;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
    Signature: <VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)Lorg/eclipse/collections/api/map/MutableMapIterable<TVV;TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <K2, V2> org.eclipse.collections.api.map.MutableMap<K2, V2> aggregateInPlaceBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends K2>, org.eclipse.collections.api.block.function.Function0<? extends V2>, org.eclipse.collections.api.block.procedure.Procedure2<? super V2, ? 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=7, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable 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 123
            invokestatic org.eclipse.collections.impl.map.mutable.UnifiedMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/UnifiedMap;
            astore 4 /* map */
        start local 4 // org.eclipse.collections.api.map.MutableMap map
         1: .line 124
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.MutatingAggregationProcedure
            dup
            aload 4 /* map */
            aload 1 /* groupBy */
            aload 2 /* zeroValueFactory */
            aload 3 /* mutatingAggregator */
            invokespecial org.eclipse.collections.impl.block.procedure.MutatingAggregationProcedure.<init>:(Lorg/eclipse/collections/api/map/MutableMapIterable;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 125
            aload 4 /* map */
            areturn
        end local 4 // org.eclipse.collections.api.map.MutableMap map
        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.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    3     0                this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    3     1             groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TK2;>;
            0    3     2    zeroValueFactory  Lorg/eclipse/collections/api/block/function/Function0<+TV2;>;
            0    3     3  mutatingAggregator  Lorg/eclipse/collections/api/block/procedure/Procedure2<-TV2;-TV;>;
            1    3     4                 map  Lorg/eclipse/collections/api/map/MutableMap<TK2;TV2;>;
    Signature: <K2:Ljava/lang/Object;V2:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TK2;>;Lorg/eclipse/collections/api/block/function/Function0<+TV2;>;Lorg/eclipse/collections/api/block/procedure/Procedure2<-TV2;-TV;>;)Lorg/eclipse/collections/api/map/MutableMap<TK2;TV2;>;
    MethodParameters:
                    Name  Flags
      groupBy             
      zeroValueFactory    
      mutatingAggregator  

  public <K2, V2> org.eclipse.collections.api.map.MutableMap<K2, V2> aggregateBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends K2>, org.eclipse.collections.api.block.function.Function0<? extends V2>, org.eclipse.collections.api.block.function.Function2<? super V2, ? super V, ? extends V2>);
    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=7, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable 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 134
            invokestatic org.eclipse.collections.impl.map.mutable.UnifiedMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/UnifiedMap;
            astore 4 /* map */
        start local 4 // org.eclipse.collections.api.map.MutableMap map
         1: .line 135
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.NonMutatingAggregationProcedure
            dup
            aload 4 /* map */
            aload 1 /* groupBy */
            aload 2 /* zeroValueFactory */
            aload 3 /* nonMutatingAggregator */
            invokespecial org.eclipse.collections.impl.block.procedure.NonMutatingAggregationProcedure.<init>:(Lorg/eclipse/collections/api/map/MutableMapIterable;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 136
            aload 4 /* map */
            areturn
        end local 4 // org.eclipse.collections.api.map.MutableMap map
        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.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    3     0                   this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    3     1                groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TK2;>;
            0    3     2       zeroValueFactory  Lorg/eclipse/collections/api/block/function/Function0<+TV2;>;
            0    3     3  nonMutatingAggregator  Lorg/eclipse/collections/api/block/function/Function2<-TV2;-TV;+TV2;>;
            1    3     4                    map  Lorg/eclipse/collections/api/map/MutableMap<TK2;TV2;>;
    Signature: <K2:Ljava/lang/Object;V2:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TK2;>;Lorg/eclipse/collections/api/block/function/Function0<+TV2;>;Lorg/eclipse/collections/api/block/function/Function2<-TV2;-TV;+TV2;>;)Lorg/eclipse/collections/api/map/MutableMap<TK2;TV2;>;
    MethodParameters:
                       Name  Flags
      groupBy                
      zeroValueFactory       
      nonMutatingAggregator  

  public org.eclipse.collections.api.RichIterable<K> keysView();
    descriptor: ()Lorg/eclipse/collections/api/RichIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
         0: .line 142
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.keySet:()Ljava/util/Set;
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.adapt:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
    Signature: ()Lorg/eclipse/collections/api/RichIterable<TK;>;

  public org.eclipse.collections.api.RichIterable<V> valuesView();
    descriptor: ()Lorg/eclipse/collections/api/RichIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
         0: .line 148
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.values:()Ljava/util/Collection;
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.adapt:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
    Signature: ()Lorg/eclipse/collections/api/RichIterable<TV;>;

  public org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.tuple.Pair<K, V>> keyValuesView();
    descriptor: ()Lorg/eclipse/collections/api/RichIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
         0: .line 154
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.entrySet:()Ljava/util/Set;
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.adapt:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
            invokestatic org.eclipse.collections.impl.tuple.AbstractImmutableEntry.getPairFunction:()Lorg/eclipse/collections/api/block/function/Function;
            invokeinterface org.eclipse.collections.api.LazyIterable.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
    Signature: ()Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/tuple/Pair<TK;TV;>;>;

  public <K2, V2> org.eclipse.collections.api.map.MutableMap<K2, V2> collect(org.eclipse.collections.api.block.function.Function2<? super K, ? super V, org.eclipse.collections.api.tuple.Pair<K2, V2>>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
         0: .line 161
            aload 0 /* this */
            aload 1 /* function */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.size:()I
            invokestatic org.eclipse.collections.impl.map.mutable.UnifiedMap.newMap:(I)Lorg/eclipse/collections/impl/map/mutable/UnifiedMap;
            invokestatic org.eclipse.collections.impl.utility.MapIterate.collect:(Ljava/util/Map;Lorg/eclipse/collections/api/block/function/Function2;Ljava/util/Map;)Ljava/util/Map;
            checkcast org.eclipse.collections.api.map.MutableMap
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function2 function
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function2<-TK;-TV;Lorg/eclipse/collections/api/tuple/Pair<TK2;TV2;>;>;
    Signature: <K2:Ljava/lang/Object;V2:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TK;-TV;Lorg/eclipse/collections/api/tuple/Pair<TK2;TV2;>;>;)Lorg/eclipse/collections/api/map/MutableMap<TK2;TV2;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.map.MutableMap<V, K> flipUniqueValues();
    descriptor: ()Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
         0: .line 168
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.utility.MapIterate.flipUniqueValues:(Lorg/eclipse/collections/api/map/MapIterable;)Lorg/eclipse/collections/api/map/MutableMap;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
    Signature: ()Lorg/eclipse/collections/api/map/MutableMap<TV;TK;>;

  public org.eclipse.collections.api.tuple.Pair<K, V> detect(org.eclipse.collections.api.block.predicate.Predicate2<? super K, ? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/tuple/Pair;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
         0: .line 174
            aload 0 /* this */
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.MapIterate.detect:(Ljava/util/Map;Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/tuple/Pair;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TK;-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate2<-TK;-TV;>;)Lorg/eclipse/collections/api/tuple/Pair<TK;TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  public java.util.Optional<org.eclipse.collections.api.tuple.Pair<K, V>> detectOptional(org.eclipse.collections.api.block.predicate.Predicate2<? super K, ? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
         0: .line 180
            aload 0 /* this */
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.MapIterate.detectOptional:(Ljava/util/Map;Lorg/eclipse/collections/api/block/predicate/Predicate2;)Ljava/util/Optional;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TK;-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate2<-TK;-TV;>;)Ljava/util/Optional<Lorg/eclipse/collections/api/tuple/Pair<TK;TV;>;>;
    MethodParameters:
           Name  Flags
      predicate  

  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=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable 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 186
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ObjectLongHashMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/primitive/ObjectLongHashMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.map.primitive.MutableObjectLongMap result
         1: .line 187
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.PrimitiveFunctions.sumByIntFunction:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/block/function/Function2;
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.MutableObjectLongMap
            areturn
        end local 3 // org.eclipse.collections.api.map.primitive.MutableObjectLongMap result
        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.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    2     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;
            0    2     2  function  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;
            1    2     3    result  Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap<TV1;>;
    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=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable 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 193
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ObjectDoubleHashMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/primitive/ObjectDoubleHashMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap result
         1: .line 194
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.PrimitiveFunctions.sumByFloatFunction:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/block/function/Function2;
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap
            areturn
        end local 3 // org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap result
        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.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    2     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;
            0    2     2  function  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;
            1    2     3    result  Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap<TV1;>;
    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=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable 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 200
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ObjectLongHashMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/primitive/ObjectLongHashMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.map.primitive.MutableObjectLongMap result
         1: .line 201
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.PrimitiveFunctions.sumByLongFunction:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/block/function/Function2;
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.MutableObjectLongMap
            areturn
        end local 3 // org.eclipse.collections.api.map.primitive.MutableObjectLongMap result
        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.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    2     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;
            0    2     2  function  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;
            1    2     3    result  Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap<TV1;>;
    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=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable 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 207
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ObjectDoubleHashMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/primitive/ObjectDoubleHashMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap result
         1: .line 208
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.PrimitiveFunctions.sumByDoubleFunction:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/block/function/Function2;
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap
            areturn
        end local 3 // org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap result
        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.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    2     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;
            0    2     2  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;
            1    2     3    result  Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap<TV1;>;
    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 <V1> org.eclipse.collections.api.bag.MutableBag<V1> countBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends V1>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 217
            aload 0 /* this */
            aload 1 /* function */
            getstatic org.eclipse.collections.impl.factory.Bags.mutable:Lorg/eclipse/collections/api/factory/bag/MutableBagFactory;
            invokeinterface org.eclipse.collections.api.factory.bag.MutableBagFactory.empty:()Lorg/eclipse/collections/api/bag/MutableBag;
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.collect:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.bag.MutableBag
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;
    Signature: <V1:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;)Lorg/eclipse/collections/api/bag/MutableBag<TV1;>;
    MethodParameters:
          Name  Flags
      function  

  public <V1, P> org.eclipse.collections.api.bag.MutableBag<V1> countByWith(org.eclipse.collections.api.block.function.Function2<? super V, ? super P, ? extends V1>, P);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
        start local 2 // java.lang.Object parameter
         0: .line 226
            aload 0 /* this */
            aload 1 /* function */
            aload 2 /* parameter */
            getstatic org.eclipse.collections.impl.factory.Bags.mutable:Lorg/eclipse/collections/api/factory/bag/MutableBagFactory;
            invokeinterface org.eclipse.collections.api.factory.bag.MutableBagFactory.empty:()Lorg/eclipse/collections/api/bag/MutableBag;
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.bag.MutableBag
            areturn
        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.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    1     1   function  Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TV1;>;
            0    1     2  parameter  TP;
    Signature: <V1:Ljava/lang/Object;P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TV1;>;TP;)Lorg/eclipse/collections/api/bag/MutableBag<TV1;>;
    MethodParameters:
           Name  Flags
      function   
      parameter  

  public <V1> org.eclipse.collections.api.bag.MutableBag<V1> countByEach(org.eclipse.collections.api.block.function.Function<? super V, ? extends java.lang.Iterable<V1>>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 235
            aload 0 /* this */
            aload 1 /* function */
            getstatic org.eclipse.collections.impl.factory.Bags.mutable:Lorg/eclipse/collections/api/factory/bag/MutableBagFactory;
            invokeinterface org.eclipse.collections.api.factory.bag.MutableBagFactory.empty:()Lorg/eclipse/collections/api/bag/MutableBag;
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.bag.MutableBag
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TV1;>;>;
    Signature: <V1:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TV1;>;>;)Lorg/eclipse/collections/api/bag/MutableBag<TV1;>;
    MethodParameters:
          Name  Flags
      function  

  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.AbstractMutableMapIterable.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.bag.Bag countBy(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.AbstractMutableMapIterable.countBy:(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 countByEach(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.AbstractMutableMapIterable.countByEach:(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 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.AbstractMutableMapIterable.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.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.AbstractMutableMapIterable.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.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.AbstractMutableMapIterable.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.AbstractMutableMapIterable.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.map.MapIterable collect(org.eclipse.collections.api.block.function.Function2);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)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.Function2
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.collect:(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.map.MutableMapIterable collect(org.eclipse.collections.api.block.function.Function2);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MutableMapIterable;
    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.Function2
            invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.collect:(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.map.MapIterable flipUniqueValues();
    descriptor: ()Lorg/eclipse/collections/api/map/MapIterable;
    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.AbstractMutableMapIterable.flipUniqueValues:()Lorg/eclipse/collections/api/map/MutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.MutableMapIterable flipUniqueValues();
    descriptor: ()Lorg/eclipse/collections/api/map/MutableMapIterable;
    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.AbstractMutableMapIterable.flipUniqueValues:()Lorg/eclipse/collections/api/map/MutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag countByWith(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.AbstractMutableMapIterable.countByWith:(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.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.AbstractMutableMapIterable.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.AbstractMutableMapIterable.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMapIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;Lorg/eclipse/collections/api/map/MutableMapIterable<TK;TV;>;
SourceFile: "AbstractMutableMapIterable.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map