public abstract class org.eclipse.collections.impl.map.mutable.AbstractMutableMap<K, V> extends org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable<K, V> implements org.eclipse.collections.api.map.MutableMap<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.AbstractMutableMap
super_class: org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable
{
public void <init>();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokespecial org.eclipse.collections.impl.map.mutable.AbstractMutableMapIterable.<init>:()V
return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
public abstract org.eclipse.collections.api.map.MutableMap<K, V> clone();
descriptor: ()Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: ()Lorg/eclipse/collections/api/map/MutableMap<TK;TV;>;
public abstract <K, V> org.eclipse.collections.api.map.MutableMap<K, V> newEmpty(int);
descriptor: (I)Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(I)Lorg/eclipse/collections/api/map/MutableMap<TK;TV;>;
MethodParameters:
Name Flags
capacity
public org.eclipse.collections.api.map.MutableMap<K, V> asUnmodifiable();
descriptor: ()Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokestatic org.eclipse.collections.impl.map.mutable.UnmodifiableMutableMap.of:(Ljava/util/Map;)Lorg/eclipse/collections/impl/map/mutable/UnmodifiableMutableMap;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
Signature: ()Lorg/eclipse/collections/api/map/MutableMap<TK;TV;>;
public org.eclipse.collections.api.map.ImmutableMap<K, V> toImmutable();
descriptor: ()Lorg/eclipse/collections/api/map/ImmutableMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: getstatic org.eclipse.collections.impl.factory.Maps.immutable:Lorg/eclipse/collections/api/factory/map/ImmutableMapFactory;
aload 0
invokeinterface org.eclipse.collections.api.factory.map.ImmutableMapFactory.withAll:(Ljava/util/Map;)Lorg/eclipse/collections/api/map/ImmutableMap;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
Signature: ()Lorg/eclipse/collections/api/map/ImmutableMap<TK;TV;>;
public org.eclipse.collections.api.map.MutableMap<K, V> asSynchronized();
descriptor: ()Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokestatic org.eclipse.collections.impl.map.mutable.SynchronizedMutableMap.of:(Ljava/util/Map;)Lorg/eclipse/collections/impl/map/mutable/SynchronizedMutableMap;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
Signature: ()Lorg/eclipse/collections/api/map/MutableMap<TK;TV;>;
public org.eclipse.collections.api.multimap.set.MutableSetMultimap<V, K> flip();
descriptor: ()Lorg/eclipse/collections/api/multimap/set/MutableSetMultimap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokestatic org.eclipse.collections.impl.utility.MapIterate.flip:(Lorg/eclipse/collections/api/map/MapIterable;)Lorg/eclipse/collections/api/multimap/set/MutableSetMultimap;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
Signature: ()Lorg/eclipse/collections/api/multimap/set/MutableSetMultimap<TV;TK;>;
public <R> org.eclipse.collections.api.map.MutableMap<K, R> collectValues(org.eclipse.collections.api.block.function.Function2<? super K, ? super V, ? extends R>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
aload 0
aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.size:()I
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.newEmpty:(I)Lorg/eclipse/collections/api/map/MutableMap;
invokestatic org.eclipse.collections.impl.utility.MapIterate.collectValues:(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 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function2<-TK;-TV;+TR;>;
Signature: <R:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TK;-TV;+TR;>;)Lorg/eclipse/collections/api/map/MutableMap<TK;TR;>;
MethodParameters:
Name Flags
function
public org.eclipse.collections.api.map.MutableMap<K, V> select(org.eclipse.collections.api.block.predicate.Predicate2<? super K, ? super V>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.newEmpty:()Lorg/eclipse/collections/api/map/MutableMap;
invokestatic org.eclipse.collections.impl.utility.MapIterate.selectMapOnEntry:(Ljava/util/Map;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/util/Map;)Ljava/util/Map;
checkcast org.eclipse.collections.api.map.MutableMap
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<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/map/MutableMap<TK;TV;>;
MethodParameters:
Name Flags
predicate
public org.eclipse.collections.api.map.MutableMap<K, V> reject(org.eclipse.collections.api.block.predicate.Predicate2<? super K, ? super V>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.newEmpty:()Lorg/eclipse/collections/api/map/MutableMap;
invokestatic org.eclipse.collections.impl.utility.MapIterate.rejectMapOnEntry:(Ljava/util/Map;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/util/Map;)Ljava/util/Map;
checkcast org.eclipse.collections.api.map.MutableMap
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<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/map/MutableMap<TK;TV;>;
MethodParameters:
Name Flags
predicate
public <R> org.eclipse.collections.api.bag.MutableBag<R> collect(org.eclipse.collections.api.block.function.Function<? super V, ? extends R>);
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 start local 1 0: aload 0
aload 1
invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:()Lorg/eclipse/collections/impl/bag/mutable/HashBag;
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function<-TV;+TR;>;
Signature: <R:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TR;>;)Lorg/eclipse/collections/api/bag/MutableBag<TR;>;
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=5, locals=3, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.bag.mutable.primitive.BooleanHashBag
dup
invokespecial org.eclipse.collections.impl.bag.mutable.primitive.BooleanHashBag.<init>:()V
astore 2
start local 2 1: aload 0
new org.eclipse.collections.impl.block.procedure.primitive.CollectBooleanProcedure
dup
aload 1
aload 2
invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectBooleanProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;)V
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
2: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 3 1 booleanFunction Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TV;>;
1 3 2 result Lorg/eclipse/collections/api/bag/primitive/MutableBooleanBag;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableBooleanBag;
MethodParameters:
Name Flags
booleanFunction
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=5, locals=3, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.bag.mutable.primitive.ByteHashBag
dup
invokespecial org.eclipse.collections.impl.bag.mutable.primitive.ByteHashBag.<init>:()V
astore 2
start local 2 1: aload 0
new org.eclipse.collections.impl.block.procedure.primitive.CollectByteProcedure
dup
aload 1
aload 2
invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectByteProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;)V
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
2: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 3 1 byteFunction Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TV;>;
1 3 2 result Lorg/eclipse/collections/api/bag/primitive/MutableByteBag;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableByteBag;
MethodParameters:
Name Flags
byteFunction
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=5, locals=3, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.bag.mutable.primitive.CharHashBag
dup
invokespecial org.eclipse.collections.impl.bag.mutable.primitive.CharHashBag.<init>:()V
astore 2
start local 2 1: aload 0
new org.eclipse.collections.impl.block.procedure.primitive.CollectCharProcedure
dup
aload 1
aload 2
invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectCharProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;)V
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
2: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 3 1 charFunction Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TV;>;
1 3 2 result Lorg/eclipse/collections/api/bag/primitive/MutableCharBag;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableCharBag;
MethodParameters:
Name Flags
charFunction
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=5, locals=3, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.bag.mutable.primitive.DoubleHashBag
dup
invokespecial org.eclipse.collections.impl.bag.mutable.primitive.DoubleHashBag.<init>:()V
astore 2
start local 2 1: aload 0
new org.eclipse.collections.impl.block.procedure.primitive.CollectDoubleProcedure
dup
aload 1
aload 2
invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectDoubleProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)V
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
2: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 3 1 doubleFunction Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;
1 3 2 result Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
MethodParameters:
Name Flags
doubleFunction
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=5, locals=3, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.bag.mutable.primitive.FloatHashBag
dup
invokespecial org.eclipse.collections.impl.bag.mutable.primitive.FloatHashBag.<init>:()V
astore 2
start local 2 1: aload 0
new org.eclipse.collections.impl.block.procedure.primitive.CollectFloatProcedure
dup
aload 1
aload 2
invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectFloatProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;)V
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
2: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 3 1 floatFunction Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;
1 3 2 result Lorg/eclipse/collections/api/bag/primitive/MutableFloatBag;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableFloatBag;
MethodParameters:
Name Flags
floatFunction
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=5, locals=3, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.bag.mutable.primitive.IntHashBag
dup
invokespecial org.eclipse.collections.impl.bag.mutable.primitive.IntHashBag.<init>:()V
astore 2
start local 2 1: aload 0
new org.eclipse.collections.impl.block.procedure.primitive.CollectIntProcedure
dup
aload 1
aload 2
invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectIntProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;)V
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
2: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 3 1 intFunction Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;
1 3 2 result Lorg/eclipse/collections/api/bag/primitive/MutableIntBag;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableIntBag;
MethodParameters:
Name Flags
intFunction
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=5, locals=3, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.bag.mutable.primitive.LongHashBag
dup
invokespecial org.eclipse.collections.impl.bag.mutable.primitive.LongHashBag.<init>:()V
astore 2
start local 2 1: aload 0
new org.eclipse.collections.impl.block.procedure.primitive.CollectLongProcedure
dup
aload 1
aload 2
invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectLongProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;)V
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
2: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 3 1 longFunction Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;
1 3 2 result Lorg/eclipse/collections/api/bag/primitive/MutableLongBag;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableLongBag;
MethodParameters:
Name Flags
longFunction
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=5, locals=3, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.bag.mutable.primitive.ShortHashBag
dup
invokespecial org.eclipse.collections.impl.bag.mutable.primitive.ShortHashBag.<init>:()V
astore 2
start local 2 1: aload 0
new org.eclipse.collections.impl.block.procedure.primitive.CollectShortProcedure
dup
aload 1
aload 2
invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectShortProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;)V
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
2: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 3 1 shortFunction Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TV;>;
1 3 2 result Lorg/eclipse/collections/api/bag/primitive/MutableShortBag;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableShortBag;
MethodParameters:
Name Flags
shortFunction
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=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
invokestatic org.eclipse.collections.impl.block.factory.Functions.bind:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/block/function/Function;
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TVV;>;
0 1 2 parameter TP;
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 <R> org.eclipse.collections.api.bag.MutableBag<R> collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super V>, org.eclipse.collections.api.block.function.Function<? super V, ? extends R>);
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=5, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
new org.eclipse.collections.impl.bag.mutable.HashBag
dup
invokespecial org.eclipse.collections.impl.bag.mutable.HashBag.<init>:()V
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
checkcast org.eclipse.collections.api.bag.MutableBag
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
0 1 2 function Lorg/eclipse/collections/api/block/function/Function<-TV;+TR;>;
Signature: <R:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TR;>;)Lorg/eclipse/collections/api/bag/MutableBag<TR;>;
MethodParameters:
Name Flags
predicate
function
public <R> org.eclipse.collections.api.bag.MutableBag<R> flatCollect(org.eclipse.collections.api.block.function.Function<? super V, ? extends java.lang.Iterable<R>>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
new org.eclipse.collections.impl.bag.mutable.HashBag
dup
invokespecial org.eclipse.collections.impl.bag.mutable.HashBag.<init>:()V
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TR;>;>;
Signature: <R:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TR;>;>;)Lorg/eclipse/collections/api/bag/MutableBag<TR;>;
MethodParameters:
Name Flags
function
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=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
new org.eclipse.collections.impl.bag.mutable.HashBag
dup
invokespecial org.eclipse.collections.impl.bag.mutable.HashBag.<init>:()V
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
checkcast org.eclipse.collections.api.bag.MutableBag
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Lorg/eclipse/collections/api/bag/MutableBag<TV;>;
MethodParameters:
Name Flags
predicate
public org.eclipse.collections.api.map.MutableMap<K, V> tap(org.eclipse.collections.api.block.procedure.Procedure<? super V>);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 2 1 procedure Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;
Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;)Lorg/eclipse/collections/api/map/MutableMap<TK;TV;>;
MethodParameters:
Name Flags
procedure
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=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
invokestatic org.eclipse.collections.impl.block.factory.Predicates.bind:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/block/predicate/Predicate;
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
0 1 2 parameter TP;
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 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=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
new org.eclipse.collections.impl.bag.mutable.HashBag
dup
invokespecial org.eclipse.collections.impl.bag.mutable.HashBag.<init>:()V
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
checkcast org.eclipse.collections.api.bag.MutableBag
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Lorg/eclipse/collections/api/bag/MutableBag<TV;>;
MethodParameters:
Name Flags
predicate
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=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
invokestatic org.eclipse.collections.impl.block.factory.Predicates.bind:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/block/predicate/Predicate;
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
0 1 2 parameter TP;
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 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=5, locals=3, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.partition.bag.PartitionHashBag
dup
invokespecial org.eclipse.collections.impl.partition.bag.PartitionHashBag.<init>:()V
astore 2
start local 2 1: aload 0
new org.eclipse.collections.impl.block.procedure.PartitionProcedure
dup
aload 1
aload 2
invokespecial org.eclipse.collections.impl.block.procedure.PartitionProcedure.<init>:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/partition/PartitionMutableCollection;)V
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
2: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 3 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
1 3 2 partitionMutableBag Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag<TV;>;
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=6, locals=4, args_size=3
start local 0 start local 1 start local 2 0: new org.eclipse.collections.impl.partition.bag.PartitionHashBag
dup
invokespecial org.eclipse.collections.impl.partition.bag.PartitionHashBag.<init>:()V
astore 3
start local 3 1: aload 0
new org.eclipse.collections.impl.block.procedure.PartitionPredicate2Procedure
dup
aload 1
aload 2
aload 3
invokespecial org.eclipse.collections.impl.block.procedure.PartitionPredicate2Procedure.<init>:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Lorg/eclipse/collections/api/partition/PartitionMutableCollection;)V
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
2: aload 3
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 3 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
0 3 2 parameter TP;
1 3 3 partitionMutableBag Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag<TV;>;
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=5, locals=3, args_size=2
start local 0 start local 1 0: invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:()Lorg/eclipse/collections/impl/bag/mutable/HashBag;
astore 2
start local 2 1: aload 0
new org.eclipse.collections.impl.block.procedure.SelectInstancesOfProcedure
dup
aload 1
aload 2
invokespecial org.eclipse.collections.impl.block.procedure.SelectInstancesOfProcedure.<init>:(Ljava/lang/Class;Ljava/util/Collection;)V
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
2: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 3 1 clazz Ljava/lang/Class<TS;>;
1 3 2 result Lorg/eclipse/collections/api/bag/MutableBag<TS;>;
Signature: <S:Ljava/lang/Object;>(Ljava/lang/Class<TS;>;)Lorg/eclipse/collections/api/bag/MutableBag<TS;>;
MethodParameters:
Name Flags
clazz
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=5, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
new org.eclipse.collections.impl.bag.mutable.HashBag
dup
aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.size:()I
invokespecial org.eclipse.collections.impl.bag.mutable.HashBag.<init>:(I)V
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.zip:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
checkcast org.eclipse.collections.api.bag.MutableBag
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 1 1 that Ljava/lang/Iterable<TS;>;
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 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=4, locals=1, args_size=1
start local 0 0: aload 0
new org.eclipse.collections.impl.set.mutable.UnifiedSet
dup
aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.size:()I
invokespecial org.eclipse.collections.impl.set.mutable.UnifiedSet.<init>:(I)V
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.zipWithIndex:(Ljava/util/Collection;)Ljava/util/Collection;
checkcast org.eclipse.collections.api.set.MutableSet
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
Signature: ()Lorg/eclipse/collections/api/set/MutableSet<Lorg/eclipse/collections/api/tuple/Pair<TV;Ljava/lang/Integer;>;>;
RuntimeVisibleAnnotations:
java.lang.Deprecated()
public org.eclipse.collections.api.map.MutableMap<K, V> withKeyValue(K, V);
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
pop
1: aload 0
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 2 1 key TK;
0 2 2 value TV;
Signature: (TK;TV;)Lorg/eclipse/collections/api/map/MutableMap<TK;TV;>;
MethodParameters:
Name Flags
key
value
public org.eclipse.collections.api.map.MutableMap<K, V> withAllKeyValues(java.lang.Iterable<? extends org.eclipse.collections.api.tuple.Pair<? extends K, ? extends V>>);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=4, args_size=2
start local 0 start local 1 0: aload 1
invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
astore 3
goto 3
StackMap locals: org.eclipse.collections.impl.map.mutable.AbstractMutableMap java.lang.Iterable top java.util.Iterator
StackMap stack:
1: aload 3
invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
checkcast org.eclipse.collections.api.tuple.Pair
astore 2
start local 2 2: aload 0
aload 2
invokeinterface org.eclipse.collections.api.tuple.Pair.getOne:()Ljava/lang/Object;
aload 2
invokeinterface org.eclipse.collections.api.tuple.Pair.getTwo:()Ljava/lang/Object;
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
pop
end local 2 3: StackMap locals:
StackMap stack:
aload 3
invokeinterface java.util.Iterator.hasNext:()Z
ifne 1
4: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 5 1 keyValues Ljava/lang/Iterable<+Lorg/eclipse/collections/api/tuple/Pair<+TK;+TV;>;>;
2 3 2 keyVal Lorg/eclipse/collections/api/tuple/Pair<+TK;+TV;>;
Signature: (Ljava/lang/Iterable<+Lorg/eclipse/collections/api/tuple/Pair<+TK;+TV;>;>;)Lorg/eclipse/collections/api/map/MutableMap<TK;TV;>;
MethodParameters:
Name Flags
keyValues
public org.eclipse.collections.api.map.MutableMap<K, V> withAllKeyValueArguments(org.eclipse.collections.api.tuple.Pair<? extends K, ? extends V>[]);
descriptor: ([Lorg/eclipse/collections/api/tuple/Pair;)Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic org.eclipse.collections.impl.list.fixed.ArrayAdapter.adapt:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.withAllKeyValues:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/map/MutableMap;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 1 1 keyValues [Lorg/eclipse/collections/api/tuple/Pair;
Signature: ([Lorg/eclipse/collections/api/tuple/Pair<+TK;+TV;>;)Lorg/eclipse/collections/api/map/MutableMap<TK;TV;>;
MethodParameters:
Name Flags
keyValues
public org.eclipse.collections.api.map.MutableMap<K, V> withoutKey(K);
descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.removeKey:(Ljava/lang/Object;)Ljava/lang/Object;
pop
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 2 1 key TK;
Signature: (TK;)Lorg/eclipse/collections/api/map/MutableMap<TK;TV;>;
MethodParameters:
Name Flags
key
public org.eclipse.collections.api.map.MutableMap<K, V> withoutAllKeys(java.lang.Iterable<? extends K>);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=4, args_size=2
start local 0 start local 1 0: aload 1
invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
astore 3
goto 3
StackMap locals: org.eclipse.collections.impl.map.mutable.AbstractMutableMap java.lang.Iterable top java.util.Iterator
StackMap stack:
1: aload 3
invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
checkcast java.lang.Object
astore 2
start local 2 2: aload 0
aload 2
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.removeKey:(Ljava/lang/Object;)Ljava/lang/Object;
pop
end local 2 3: StackMap locals:
StackMap stack:
aload 3
invokeinterface java.util.Iterator.hasNext:()Z
ifne 1
4: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 5 1 keys Ljava/lang/Iterable<+TK;>;
2 3 2 key TK;
Signature: (Ljava/lang/Iterable<+TK;>;)Lorg/eclipse/collections/api/map/MutableMap<TK;TV;>;
MethodParameters:
Name Flags
keys
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=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic org.eclipse.collections.impl.multimap.bag.HashBagMultimap.newMultimap:()Lorg/eclipse/collections/impl/multimap/bag/HashBagMultimap;
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.groupBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
checkcast org.eclipse.collections.api.multimap.bag.MutableBagMultimap
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<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/multimap/bag/MutableBagMultimap<TVV;TV;>;
MethodParameters:
Name Flags
function
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=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic org.eclipse.collections.impl.multimap.bag.HashBagMultimap.newMultimap:()Lorg/eclipse/collections/impl/multimap/bag/HashBagMultimap;
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
checkcast org.eclipse.collections.api.multimap.bag.MutableBagMultimap
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<TK;TV;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TVV;>;>;
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> 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=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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.AbstractMutableMap.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/map/MutableMap;)Lorg/eclipse/collections/api/map/MutableMap;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMap<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/MutableMap<TVV;TV;>;
MethodParameters:
Name Flags
function
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: 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.AbstractMutableMap.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: 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.AbstractMutableMap.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.map.ImmutableMapIterable toImmutable();
descriptor: ()Lorg/eclipse/collections/api/map/ImmutableMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.toImmutable:()Lorg/eclipse/collections/api/map/ImmutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.MapIterable collectValues(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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function2
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.collectValues:(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 collectValues(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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function2
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.collectValues:(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.UnsortedMapIterable collectValues(org.eclipse.collections.api.block.function.Function2);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/UnsortedMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function2
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.collectValues:(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 withKeyValue(java.lang.Object, java.lang.Object);
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/map/MutableMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast java.lang.Object
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.withKeyValue:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/map/MutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public java.lang.Object clone();
descriptor: ()Ljava/lang/Object;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.clone:()Lorg/eclipse/collections/api/map/MutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
Exceptions:
throws java.lang.CloneNotSupportedException
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: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.zipWithIndex:()Lorg/eclipse/collections/api/set/MutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.MutableCollection zipWithIndex();
descriptor: ()Lorg/eclipse/collections/api/collection/MutableCollection;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast java.lang.Iterable
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/MutableBag;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.MutableCollection zip(java.lang.Iterable);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/collection/MutableCollection;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Iterable
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast java.lang.Iterable
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/MutableBag;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.MutableMapIterable withAllKeyValueArguments(org.eclipse.collections.api.tuple.Pair[]);
descriptor: ([Lorg/eclipse/collections/api/tuple/Pair;)Lorg/eclipse/collections/api/map/MutableMapIterable;
flags: (0x10c1) ACC_PUBLIC, ACC_BRIDGE, ACC_VARARGS, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.tuple.Pair[]
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.withAllKeyValueArguments:([Lorg/eclipse/collections/api/tuple/Pair;)Lorg/eclipse/collections/api/map/MutableMap;
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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.CharFunction
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.CharFunction
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: 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.AbstractMutableMap.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.collection.MutableCollection 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/collection/MutableCollection;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: 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.AbstractMutableMap.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: 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.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.ByteFunction
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.ByteFunction
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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.PartitionMutableCollection partition(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/PartitionMutableCollection;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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.map.MutableMapIterable withoutKey(java.lang.Object);
descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/map/MutableMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.withoutKey:(Ljava/lang/Object;)Lorg/eclipse/collections/api/map/MutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.MutableMapIterable asSynchronized();
descriptor: ()Lorg/eclipse/collections/api/map/MutableMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.asSynchronized:()Lorg/eclipse/collections/api/map/MutableMap;
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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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.collection.MutableCollection reject(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/collection/MutableCollection;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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.MapIterable reject(org.eclipse.collections.api.block.predicate.Predicate2);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate2
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/MutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.MutableMapIterable reject(org.eclipse.collections.api.block.predicate.Predicate2);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/MutableMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate2
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/MutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.UnsortedMapIterable reject(org.eclipse.collections.api.block.predicate.Predicate2);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/UnsortedMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate2
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/MutableMap;
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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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.MutableMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: 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.AbstractMutableMap.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: 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.AbstractMutableMap.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.map.MutableMapIterable withAllKeyValues(java.lang.Iterable);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/map/MutableMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Iterable
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.withAllKeyValues:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/map/MutableMap;
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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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.collection.MutableCollection select(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/collection/MutableCollection;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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.MapIterable select(org.eclipse.collections.api.block.predicate.Predicate2);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate2
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/MutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.MutableMapIterable select(org.eclipse.collections.api.block.predicate.Predicate2);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/MutableMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate2
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/MutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.UnsortedMapIterable select(org.eclipse.collections.api.block.predicate.Predicate2);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/UnsortedMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate2
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/MutableMap;
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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.ShortFunction
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.ShortFunction
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.procedure.Procedure
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/map/MutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.MapIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.procedure.Procedure
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/map/MutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.MutableMapIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/map/MutableMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.procedure.Procedure
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/map/MutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.UnsortedMapIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/map/UnsortedMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.procedure.Procedure
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/map/MutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.MutableMapIterable withoutAllKeys(java.lang.Iterable);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/map/MutableMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Iterable
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.withoutAllKeys:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/map/MutableMap;
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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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.MutableMultimap groupBy(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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.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: 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.AbstractMutableMap.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.collection.MutableCollection 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/collection/MutableCollection;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: 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.AbstractMutableMap.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: 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.AbstractMutableMap.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: 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.AbstractMutableMap.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: 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.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function2
aload 2
checkcast java.lang.Object
invokeinterface org.eclipse.collections.api.map.MutableMap.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 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: aload 0
aload 1
checkcast java.lang.Class
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/MutableBag;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.MutableCollection selectInstancesOf(java.lang.Class);
descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/collection/MutableCollection;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Class
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast java.lang.Class
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.BooleanFunction
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.BooleanFunction
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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.UnsortedMapIterable collect(org.eclipse.collections.api.block.function.Function2);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/UnsortedMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function2
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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.UnsortedMapIterable flipUniqueValues();
descriptor: ()Lorg/eclipse/collections/api/map/UnsortedMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.flipUniqueValues:()Lorg/eclipse/collections/api/map/MutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.multimap.Multimap flip();
descriptor: ()Lorg/eclipse/collections/api/multimap/Multimap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.flip:()Lorg/eclipse/collections/api/multimap/set/MutableSetMultimap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.multimap.MutableMultimap flip();
descriptor: ()Lorg/eclipse/collections/api/multimap/MutableMultimap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.flip:()Lorg/eclipse/collections/api/multimap/set/MutableSetMultimap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.multimap.set.UnsortedSetMultimap flip();
descriptor: ()Lorg/eclipse/collections/api/multimap/set/UnsortedSetMultimap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.flip:()Lorg/eclipse/collections/api/multimap/set/MutableSetMultimap;
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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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.MutableMapIterable groupByUniqueKey(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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.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: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.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.MutableMapIterable asUnmodifiable();
descriptor: ()Lorg/eclipse/collections/api/map/MutableMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.AbstractMutableMap.asUnmodifiable:()Lorg/eclipse/collections/api/map/MutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Lorg/eclipse/collections/impl/map/mutable/AbstractMutableMapIterable<TK;TV;>;Lorg/eclipse/collections/api/map/MutableMap<TK;TV;>;
SourceFile: "AbstractMutableMap.java"
NestMembers:
org.eclipse.collections.impl.map.mutable.AbstractMutableMap$ValuesCollectionCommon
InnerClasses:
protected abstract ValuesCollectionCommon = org.eclipse.collections.impl.map.mutable.AbstractMutableMap$ValuesCollectionCommon of org.eclipse.collections.impl.map.mutable.AbstractMutableMap