public abstract class org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap<K, V> extends org.eclipse.collections.impl.bimap.AbstractBiMap<K, V> implements org.eclipse.collections.api.bimap.ImmutableBiMap<K, V>, java.util.Map<K, V>
minor version: 0
major version: 59
flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
this_class: org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap
super_class: org.eclipse.collections.impl.bimap.AbstractBiMap
{
private final org.eclipse.collections.api.map.ImmutableMap<K, V> delegate;
descriptor: Lorg/eclipse/collections/api/map/ImmutableMap;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
Signature: Lorg/eclipse/collections/api/map/ImmutableMap<TK;TV;>;
private final org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap<V, K> inverse;
descriptor: Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
Signature: Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TV;TK;>;
private void <init>(org.eclipse.collections.api.map.ImmutableMap<K, V>, org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap<V, K>);
descriptor: (Lorg/eclipse/collections/api/map/ImmutableMap;Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap;)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=2, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
invokespecial org.eclipse.collections.impl.bimap.AbstractBiMap.<init>:()V
1: aload 0
aload 1
putfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
2: aload 0
aload 2
putfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.inverse:Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap;
3: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 4 1 delegate Lorg/eclipse/collections/api/map/ImmutableMap<TK;TV;>;
0 4 2 valuesToKeys Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TV;TK;>;
Signature: (Lorg/eclipse/collections/api/map/ImmutableMap<TK;TV;>;Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TV;TK;>;)V
MethodParameters:
Name Flags
delegate
valuesToKeys
void <init>(org.eclipse.collections.api.map.ImmutableMap<K, V>, org.eclipse.collections.api.map.ImmutableMap<V, K>);
descriptor: (Lorg/eclipse/collections/api/map/ImmutableMap;Lorg/eclipse/collections/api/map/ImmutableMap;)V
flags: (0x0000)
Code:
stack=5, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
invokespecial org.eclipse.collections.impl.bimap.AbstractBiMap.<init>:()V
1: aload 0
aload 1
putfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
2: aload 0
new org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap$Inverse
dup
aload 2
aload 0
invokespecial org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap$Inverse.<init>:(Lorg/eclipse/collections/api/map/ImmutableMap;Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap;)V
putfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.inverse:Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap;
3: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 4 1 map Lorg/eclipse/collections/api/map/ImmutableMap<TK;TV;>;
0 4 2 inverse Lorg/eclipse/collections/api/map/ImmutableMap<TV;TK;>;
Signature: (Lorg/eclipse/collections/api/map/ImmutableMap<TK;TV;>;Lorg/eclipse/collections/api/map/ImmutableMap<TV;TK;>;)V
MethodParameters:
Name Flags
map
inverse
protected org.eclipse.collections.api.map.ImmutableMap<K, V> getDelegate();
descriptor: ()Lorg/eclipse/collections/api/map/ImmutableMap;
flags: (0x0004) ACC_PROTECTED
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
Signature: ()Lorg/eclipse/collections/api/map/ImmutableMap<TK;TV;>;
protected org.eclipse.collections.api.map.ImmutableMap<V, K> getInverse();
descriptor: ()Lorg/eclipse/collections/api/map/ImmutableMap;
flags: (0x0004) ACC_PROTECTED
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.inverse:Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap;
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
Signature: ()Lorg/eclipse/collections/api/map/ImmutableMap<TV;TK;>;
public org.eclipse.collections.api.bimap.ImmutableBiMap<K, V> newWithKeyValue(K, V);
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=4, args_size=3
start local 0 start local 1 start local 2 0: new org.eclipse.collections.impl.bimap.mutable.HashBiMap
dup
aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
invokeinterface org.eclipse.collections.api.map.ImmutableMap.castToMap:()Ljava/util/Map;
invokespecial org.eclipse.collections.impl.bimap.mutable.HashBiMap.<init>:(Ljava/util/Map;)V
astore 3
start local 3 1: aload 3
aload 1
aload 2
invokevirtual org.eclipse.collections.impl.bimap.mutable.HashBiMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
pop
2: aload 3
invokevirtual org.eclipse.collections.impl.bimap.mutable.HashBiMap.toImmutable:()Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
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/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 3 1 key TK;
0 3 2 value TV;
1 3 3 map Lorg/eclipse/collections/impl/bimap/mutable/HashBiMap<TK;TV;>;
Signature: (TK;TV;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap<TK;TV;>;
MethodParameters:
Name Flags
key
value
public org.eclipse.collections.api.bimap.ImmutableBiMap<K, V> newWithAllKeyValues(java.lang.Iterable<? extends org.eclipse.collections.api.tuple.Pair<? extends K, ? extends V>>);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=5, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.bimap.mutable.HashBiMap
dup
aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
invokeinterface org.eclipse.collections.api.map.ImmutableMap.castToMap:()Ljava/util/Map;
invokespecial org.eclipse.collections.impl.bimap.mutable.HashBiMap.<init>:(Ljava/util/Map;)V
astore 2
start local 2 1: aload 1
invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
astore 4
goto 4
StackMap locals: org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap java.lang.Iterable org.eclipse.collections.impl.bimap.mutable.HashBiMap top java.util.Iterator
StackMap stack:
2: aload 4
invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
checkcast org.eclipse.collections.api.tuple.Pair
astore 3
start local 3 3: aload 2
aload 3
invokeinterface org.eclipse.collections.api.tuple.Pair.getOne:()Ljava/lang/Object;
aload 3
invokeinterface org.eclipse.collections.api.tuple.Pair.getTwo:()Ljava/lang/Object;
invokevirtual org.eclipse.collections.impl.bimap.mutable.HashBiMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
pop
end local 3 4: StackMap locals:
StackMap stack:
aload 4
invokeinterface java.util.Iterator.hasNext:()Z
ifne 2
5: aload 2
invokevirtual org.eclipse.collections.impl.bimap.mutable.HashBiMap.toImmutable:()Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 6 1 keyValues Ljava/lang/Iterable<+Lorg/eclipse/collections/api/tuple/Pair<+TK;+TV;>;>;
1 6 2 map Lorg/eclipse/collections/impl/bimap/mutable/HashBiMap<TK;TV;>;
3 4 3 keyValuePair Lorg/eclipse/collections/api/tuple/Pair<+TK;+TV;>;
Signature: (Ljava/lang/Iterable<+Lorg/eclipse/collections/api/tuple/Pair<+TK;+TV;>;>;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap<TK;TV;>;
MethodParameters:
Name Flags
keyValues
public org.eclipse.collections.api.bimap.ImmutableBiMap<K, V> newWithAllKeyValueArguments(org.eclipse.collections.api.tuple.Pair<? extends K, ? extends V>[]);
descriptor: ([Lorg/eclipse/collections/api/tuple/Pair;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
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.bimap.immutable.AbstractImmutableBiMap.newWithAllKeyValues:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 1 1 keyValuePairs [Lorg/eclipse/collections/api/tuple/Pair;
Signature: ([Lorg/eclipse/collections/api/tuple/Pair<+TK;+TV;>;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap<TK;TV;>;
MethodParameters:
Name Flags
keyValuePairs
public org.eclipse.collections.api.bimap.ImmutableBiMap<K, V> newWithoutKey(K);
descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.bimap.mutable.HashBiMap
dup
aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
invokeinterface org.eclipse.collections.api.map.ImmutableMap.castToMap:()Ljava/util/Map;
invokespecial org.eclipse.collections.impl.bimap.mutable.HashBiMap.<init>:(Ljava/util/Map;)V
astore 2
start local 2 1: aload 2
aload 1
invokevirtual org.eclipse.collections.impl.bimap.mutable.HashBiMap.removeKey:(Ljava/lang/Object;)Ljava/lang/Object;
pop
2: aload 2
invokevirtual org.eclipse.collections.impl.bimap.mutable.HashBiMap.toImmutable:()Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 3 1 key TK;
1 3 2 map Lorg/eclipse/collections/impl/bimap/mutable/HashBiMap<TK;TV;>;
Signature: (TK;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap<TK;TV;>;
MethodParameters:
Name Flags
key
public org.eclipse.collections.api.bimap.ImmutableBiMap<K, V> newWithoutAllKeys(java.lang.Iterable<? extends K>);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=5, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.bimap.mutable.HashBiMap
dup
aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
invokeinterface org.eclipse.collections.api.map.ImmutableMap.castToMap:()Ljava/util/Map;
invokespecial org.eclipse.collections.impl.bimap.mutable.HashBiMap.<init>:(Ljava/util/Map;)V
astore 2
start local 2 1: aload 1
invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
astore 4
goto 4
StackMap locals: org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap java.lang.Iterable org.eclipse.collections.impl.bimap.mutable.HashBiMap top java.util.Iterator
StackMap stack:
2: aload 4
invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
checkcast java.lang.Object
astore 3
start local 3 3: aload 2
aload 3
invokevirtual org.eclipse.collections.impl.bimap.mutable.HashBiMap.removeKey:(Ljava/lang/Object;)Ljava/lang/Object;
pop
end local 3 4: StackMap locals:
StackMap stack:
aload 4
invokeinterface java.util.Iterator.hasNext:()Z
ifne 2
5: aload 2
invokevirtual org.eclipse.collections.impl.bimap.mutable.HashBiMap.toImmutable:()Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 6 1 keys Ljava/lang/Iterable<+TK;>;
1 6 2 map Lorg/eclipse/collections/impl/bimap/mutable/HashBiMap<TK;TV;>;
3 4 3 key TK;
Signature: (Ljava/lang/Iterable<+TK;>;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap<TK;TV;>;
MethodParameters:
Name Flags
keys
public org.eclipse.collections.api.bimap.ImmutableBiMap<V, K> inverse();
descriptor: ()Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.inverse:Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
Signature: ()Lorg/eclipse/collections/api/bimap/ImmutableBiMap<TV;TK;>;
public org.eclipse.collections.api.multimap.set.ImmutableSetMultimap<V, K> flip();
descriptor: ()Lorg/eclipse/collections/api/multimap/set/ImmutableSetMultimap;
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;
invokeinterface org.eclipse.collections.api.multimap.set.MutableSetMultimap.toImmutable:()Lorg/eclipse/collections/api/multimap/set/ImmutableSetMultimap;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
Signature: ()Lorg/eclipse/collections/api/multimap/set/ImmutableSetMultimap<TV;TK;>;
public org.eclipse.collections.api.bimap.ImmutableBiMap<V, K> flipUniqueValues();
descriptor: ()Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.inverse:()Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
Signature: ()Lorg/eclipse/collections/api/bimap/ImmutableBiMap<TV;TK;>;
public V put(K, );
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=3, args_size=3
start local 0 start local 1 start local 2 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call put() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 1 1 key TK;
0 1 2 value TV;
Signature: (TK;TV;)TV;
MethodParameters:
Name Flags
key
value
public void putAll(java.util.Map<? extends K, ? extends V>);
descriptor: (Ljava/util/Map;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call putAll() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 1 1 map Ljava/util/Map<+TK;+TV;>;
Signature: (Ljava/util/Map<+TK;+TV;>;)V
MethodParameters:
Name Flags
map
public V remove();
descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call remove() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 1 1 key Ljava/lang/Object;
Signature: (Ljava/lang/Object;)TV;
MethodParameters:
Name Flags
key
public void clear();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=1, args_size=1
start local 0 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call clear() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
public java.util.Set<K> keySet();
descriptor: ()Ljava/util/Set;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
invokeinterface org.eclipse.collections.api.map.ImmutableMap.castToMap:()Ljava/util/Map;
invokeinterface java.util.Map.keySet:()Ljava/util/Set;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
Signature: ()Ljava/util/Set<TK;>;
public java.util.Collection<V> values();
descriptor: ()Ljava/util/Collection;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
invokeinterface org.eclipse.collections.api.map.ImmutableMap.castToMap:()Ljava/util/Map;
invokeinterface java.util.Map.values:()Ljava/util/Collection;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
Signature: ()Ljava/util/Collection<TV;>;
public java.util.Set<java.util.Map$Entry<K, V>> entrySet();
descriptor: ()Ljava/util/Set;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
invokeinterface org.eclipse.collections.api.map.ImmutableMap.castToMap:()Ljava/util/Map;
invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
Signature: ()Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;
public java.util.Iterator<V> iterator();
descriptor: ()Ljava/util/Iterator;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
invokeinterface org.eclipse.collections.api.map.ImmutableMap.iterator:()Ljava/util/Iterator;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
Signature: ()Ljava/util/Iterator<TV;>;
public org.eclipse.collections.api.bimap.ImmutableBiMap<K, V> toImmutable();
descriptor: ()Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
Signature: ()Lorg/eclipse/collections/api/bimap/ImmutableBiMap<TK;TV;>;
public java.util.Map<K, V> castToMap();
descriptor: ()Ljava/util/Map;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
Signature: ()Ljava/util/Map<TK;TV;>;
public org.eclipse.collections.api.map.MutableMap<K, V> toMap();
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
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.getDelegate:()Lorg/eclipse/collections/api/map/ImmutableMap;
invokeinterface org.eclipse.collections.api.map.ImmutableMap.toMap:()Lorg/eclipse/collections/api/map/MutableMap;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
Signature: ()Lorg/eclipse/collections/api/map/MutableMap<TK;TV;>;
public <K2, V2> org.eclipse.collections.api.bimap.ImmutableBiMap<K2, V2> collect(org.eclipse.collections.api.block.function.Function2<? super K, ? super V, org.eclipse.collections.api.tuple.Pair<K2, V2>>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=3, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
invokeinterface org.eclipse.collections.api.map.ImmutableMap.collect:(Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/ImmutableMap;
astore 2
start local 2 1: getstatic org.eclipse.collections.impl.factory.BiMaps.immutable:Lorg/eclipse/collections/api/factory/bimap/ImmutableBiMapFactory;
aload 2
invokeinterface org.eclipse.collections.api.factory.bimap.ImmutableBiMapFactory.withAll:(Lorg/eclipse/collections/api/map/ImmutableMap;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 2 1 function Lorg/eclipse/collections/api/block/function/Function2<-TK;-TV;Lorg/eclipse/collections/api/tuple/Pair<TK2;TV2;>;>;
1 2 2 result Lorg/eclipse/collections/api/map/ImmutableMap<TK2;TV2;>;
Signature: <K2:Ljava/lang/Object;V2:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TK;-TV;Lorg/eclipse/collections/api/tuple/Pair<TK2;TV2;>;>;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap<TK2;TV2;>;
MethodParameters:
Name Flags
function
public <VV> org.eclipse.collections.api.bag.ImmutableBag<VV> collect(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
invokeinterface org.eclipse.collections.api.map.ImmutableMap.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<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/bag/ImmutableBag<TVV;>;
MethodParameters:
Name Flags
function
public <R> org.eclipse.collections.api.bimap.ImmutableBiMap<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/bimap/ImmutableBiMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=3, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
invokeinterface org.eclipse.collections.api.map.ImmutableMap.collectValues:(Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/ImmutableMap;
astore 2
start local 2 1: getstatic org.eclipse.collections.impl.factory.BiMaps.immutable:Lorg/eclipse/collections/api/factory/bimap/ImmutableBiMapFactory;
aload 2
invokeinterface org.eclipse.collections.api.factory.bimap.ImmutableBiMapFactory.withAll:(Lorg/eclipse/collections/api/map/ImmutableMap;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 2 1 function Lorg/eclipse/collections/api/block/function/Function2<-TK;-TV;+TR;>;
1 2 2 result Lorg/eclipse/collections/api/map/ImmutableMap<TK;TR;>;
Signature: <R:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TK;-TV;+TR;>;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap<TK;TR;>;
MethodParameters:
Name Flags
function
public org.eclipse.collections.api.bag.primitive.ImmutableBooleanBag 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/ImmutableBooleanBag;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
invokeinterface org.eclipse.collections.api.map.ImmutableMap.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/bag/primitive/ImmutableBooleanBag;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 1 1 booleanFunction Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TV;>;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/ImmutableBooleanBag;
MethodParameters:
Name Flags
booleanFunction
public org.eclipse.collections.api.bag.primitive.ImmutableByteBag 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/ImmutableByteBag;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
invokeinterface org.eclipse.collections.api.map.ImmutableMap.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/bag/primitive/ImmutableByteBag;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 1 1 byteFunction Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TV;>;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/ImmutableByteBag;
MethodParameters:
Name Flags
byteFunction
public org.eclipse.collections.api.bag.primitive.ImmutableCharBag 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/ImmutableCharBag;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
invokeinterface org.eclipse.collections.api.map.ImmutableMap.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/bag/primitive/ImmutableCharBag;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 1 1 charFunction Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TV;>;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/ImmutableCharBag;
MethodParameters:
Name Flags
charFunction
public org.eclipse.collections.api.bag.primitive.ImmutableDoubleBag 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/ImmutableDoubleBag;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
invokeinterface org.eclipse.collections.api.map.ImmutableMap.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/bag/primitive/ImmutableDoubleBag;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 1 1 doubleFunction Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/ImmutableDoubleBag;
MethodParameters:
Name Flags
doubleFunction
public org.eclipse.collections.api.bag.primitive.ImmutableFloatBag 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/ImmutableFloatBag;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
invokeinterface org.eclipse.collections.api.map.ImmutableMap.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/bag/primitive/ImmutableFloatBag;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 1 1 floatFunction Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/ImmutableFloatBag;
MethodParameters:
Name Flags
floatFunction
public org.eclipse.collections.api.bag.primitive.ImmutableIntBag 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/ImmutableIntBag;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
invokeinterface org.eclipse.collections.api.map.ImmutableMap.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/bag/primitive/ImmutableIntBag;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 1 1 intFunction Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/ImmutableIntBag;
MethodParameters:
Name Flags
intFunction
public org.eclipse.collections.api.bag.primitive.ImmutableLongBag 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/ImmutableLongBag;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
invokeinterface org.eclipse.collections.api.map.ImmutableMap.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/bag/primitive/ImmutableLongBag;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 1 1 longFunction Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/ImmutableLongBag;
MethodParameters:
Name Flags
longFunction
public org.eclipse.collections.api.bag.primitive.ImmutableShortBag 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/ImmutableShortBag;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
invokeinterface org.eclipse.collections.api.map.ImmutableMap.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/bag/primitive/ImmutableShortBag;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 1 1 shortFunction Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TV;>;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/ImmutableShortBag;
MethodParameters:
Name Flags
shortFunction
public <P, VV> org.eclipse.collections.api.bag.ImmutableBag<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/ImmutableBag;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
aload 2
invokeinterface org.eclipse.collections.api.map.ImmutableMap.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ImmutableBag;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<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/ImmutableBag<TVV;>;
MethodParameters:
Name Flags
function
parameter
public <VV> org.eclipse.collections.api.bag.ImmutableBag<VV> collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super V>, org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
aload 2
invokeinterface org.eclipse.collections.api.map.ImmutableMap.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<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;+TVV;>;
Signature: <VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)Lorg/eclipse/collections/api/bag/ImmutableBag<TVV;>;
MethodParameters:
Name Flags
predicate
function
public <VV> org.eclipse.collections.api.bag.ImmutableBag<VV> flatCollect(org.eclipse.collections.api.block.function.Function<? super V, ? extends java.lang.Iterable<VV>>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
invokeinterface org.eclipse.collections.api.map.ImmutableMap.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<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/bag/ImmutableBag<TVV;>;
MethodParameters:
Name Flags
function
public org.eclipse.collections.api.bimap.ImmutableBiMap<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/bimap/ImmutableBiMap;
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.bimap.mutable.HashBiMap.newMap:()Lorg/eclipse/collections/impl/bimap/mutable/HashBiMap;
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.impl.bimap.mutable.HashBiMap
invokevirtual org.eclipse.collections.impl.bimap.mutable.HashBiMap.toImmutable:()Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<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/bimap/ImmutableBiMap<TK;TV;>;
MethodParameters:
Name Flags
predicate
public org.eclipse.collections.api.bimap.ImmutableBiMap<K, V> tap(org.eclipse.collections.api.block.procedure.Procedure<? super V>);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
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.bimap.immutable.AbstractImmutableBiMap.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/bimap/immutable/AbstractImmutableBiMap<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/bimap/ImmutableBiMap<TK;TV;>;
MethodParameters:
Name Flags
procedure
public org.eclipse.collections.api.set.ImmutableSet<V> select(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/ImmutableSet;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
getstatic org.eclipse.collections.impl.factory.Sets.mutable:Lorg/eclipse/collections/api/factory/set/MutableSetFactory;
invokeinterface org.eclipse.collections.api.factory.set.MutableSetFactory.empty:()Lorg/eclipse/collections/api/set/MutableSet;
invokeinterface org.eclipse.collections.api.map.ImmutableMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
checkcast org.eclipse.collections.api.set.MutableSet
invokeinterface org.eclipse.collections.api.set.MutableSet.toImmutable:()Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<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/set/ImmutableSet<TV;>;
MethodParameters:
Name Flags
predicate
public <P> org.eclipse.collections.api.set.ImmutableSet<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/set/ImmutableSet;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
aload 2
getstatic org.eclipse.collections.impl.factory.Sets.mutable:Lorg/eclipse/collections/api/factory/set/MutableSetFactory;
invokeinterface org.eclipse.collections.api.factory.set.MutableSetFactory.empty:()Lorg/eclipse/collections/api/set/MutableSet;
invokeinterface org.eclipse.collections.api.map.ImmutableMap.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
checkcast org.eclipse.collections.api.set.MutableSet
invokeinterface org.eclipse.collections.api.set.MutableSet.toImmutable:()Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<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/set/ImmutableSet<TV;>;
MethodParameters:
Name Flags
predicate
parameter
public org.eclipse.collections.api.bimap.ImmutableBiMap<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/bimap/ImmutableBiMap;
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.bimap.mutable.HashBiMap.newMap:()Lorg/eclipse/collections/impl/bimap/mutable/HashBiMap;
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.impl.bimap.mutable.HashBiMap
invokevirtual org.eclipse.collections.impl.bimap.mutable.HashBiMap.toImmutable:()Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<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/bimap/ImmutableBiMap<TK;TV;>;
MethodParameters:
Name Flags
predicate
public org.eclipse.collections.api.set.ImmutableSet<V> reject(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/ImmutableSet;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
getstatic org.eclipse.collections.impl.factory.Sets.mutable:Lorg/eclipse/collections/api/factory/set/MutableSetFactory;
invokeinterface org.eclipse.collections.api.factory.set.MutableSetFactory.empty:()Lorg/eclipse/collections/api/set/MutableSet;
invokeinterface org.eclipse.collections.api.map.ImmutableMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
checkcast org.eclipse.collections.api.set.MutableSet
invokeinterface org.eclipse.collections.api.set.MutableSet.toImmutable:()Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<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/set/ImmutableSet<TV;>;
MethodParameters:
Name Flags
predicate
public <P> org.eclipse.collections.api.set.ImmutableSet<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/set/ImmutableSet;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
aload 2
getstatic org.eclipse.collections.impl.factory.Sets.mutable:Lorg/eclipse/collections/api/factory/set/MutableSetFactory;
invokeinterface org.eclipse.collections.api.factory.set.MutableSetFactory.empty:()Lorg/eclipse/collections/api/set/MutableSet;
invokeinterface org.eclipse.collections.api.map.ImmutableMap.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
checkcast org.eclipse.collections.api.set.MutableSet
invokeinterface org.eclipse.collections.api.set.MutableSet.toImmutable:()Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<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/set/ImmutableSet<TV;>;
MethodParameters:
Name Flags
predicate
parameter
public org.eclipse.collections.api.partition.set.PartitionImmutableSet<V> partition(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/PartitionImmutableSet;
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.set.PartitionUnifiedSet
dup
invokespecial org.eclipse.collections.impl.partition.set.PartitionUnifiedSet.<init>:()V
astore 2
start local 2 1: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.inverse:Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap;
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.bimap.immutable.AbstractImmutableBiMap.forEachKey:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
2: aload 2
invokeinterface org.eclipse.collections.api.partition.set.PartitionMutableSet.toImmutable:()Lorg/eclipse/collections/api/partition/set/PartitionImmutableSet;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 3 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
1 3 2 result Lorg/eclipse/collections/api/partition/set/PartitionMutableSet<TV;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Lorg/eclipse/collections/api/partition/set/PartitionImmutableSet<TV;>;
MethodParameters:
Name Flags
predicate
public <P> org.eclipse.collections.api.partition.set.PartitionImmutableSet<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/set/PartitionImmutableSet;
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.bimap.immutable.AbstractImmutableBiMap.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/PartitionImmutableSet;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<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/partition/set/PartitionImmutableSet<TV;>;
MethodParameters:
Name Flags
predicate
parameter
public <S> org.eclipse.collections.api.set.ImmutableSet<org.eclipse.collections.api.tuple.Pair<V, S>> zip(java.lang.Iterable<S>);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/set/ImmutableSet;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=4, args_size=2
start local 0 start local 1 0: aload 1
instanceof java.util.Collection
ifne 1
aload 1
instanceof org.eclipse.collections.api.RichIterable
ifeq 4
1: StackMap locals:
StackMap stack:
aload 1
invokestatic org.eclipse.collections.impl.utility.Iterate.sizeOf:(Ljava/lang/Iterable;)I
istore 2
start local 2 2: aload 0
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.size:()I
iload 2
invokestatic java.lang.Math.min:(II)I
invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSet:(I)Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
astore 3
start local 3 3: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
aload 3
invokeinterface org.eclipse.collections.api.map.ImmutableMap.zip:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
checkcast org.eclipse.collections.impl.set.mutable.UnifiedSet
invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.toImmutable:()Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
end local 3 end local 2 4: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSet:()Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
invokeinterface org.eclipse.collections.api.map.ImmutableMap.zip:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
checkcast org.eclipse.collections.impl.set.mutable.UnifiedSet
invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.toImmutable:()Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 5 1 that Ljava/lang/Iterable<TS;>;
2 4 2 thatSize I
3 4 3 target Lorg/eclipse/collections/impl/set/mutable/UnifiedSet<Lorg/eclipse/collections/api/tuple/Pair<TV;TS;>;>;
Signature: <S:Ljava/lang/Object;>(Ljava/lang/Iterable<TS;>;)Lorg/eclipse/collections/api/set/ImmutableSet<Lorg/eclipse/collections/api/tuple/Pair<TV;TS;>;>;
RuntimeVisibleAnnotations:
java.lang.Deprecated()
MethodParameters:
Name Flags
that
public org.eclipse.collections.api.set.ImmutableSet<org.eclipse.collections.api.tuple.Pair<V, java.lang.Integer>> zipWithIndex();
descriptor: ()Lorg/eclipse/collections/api/set/ImmutableSet;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 0
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.size:()I
invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSet:(I)Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
invokeinterface org.eclipse.collections.api.map.ImmutableMap.zipWithIndex:(Ljava/util/Collection;)Ljava/util/Collection;
checkcast org.eclipse.collections.impl.set.mutable.UnifiedSet
invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.toImmutable:()Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
Signature: ()Lorg/eclipse/collections/api/set/ImmutableSet<Lorg/eclipse/collections/api/tuple/Pair<TV;Ljava/lang/Integer;>;>;
RuntimeVisibleAnnotations:
java.lang.Deprecated()
public <V1> org.eclipse.collections.api.map.primitive.ImmutableObjectLongMap<V1> sumByInt(org.eclipse.collections.api.block.function.Function<? super V, ? extends V1>, org.eclipse.collections.api.block.function.primitive.IntFunction<? super V>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
aload 2
invokeinterface org.eclipse.collections.api.map.ImmutableMap.sumByInt:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
astore 3
start local 3 1: aload 3
invokeinterface org.eclipse.collections.api.map.primitive.ObjectLongMap.toImmutable:()Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 2 1 groupBy Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;
0 2 2 function Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;
1 2 3 map Lorg/eclipse/collections/api/map/primitive/ObjectLongMap<TV1;>;
Signature: <V1:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap<TV1;>;
MethodParameters:
Name Flags
groupBy
function
public <V1> org.eclipse.collections.api.map.primitive.ImmutableObjectDoubleMap<V1> sumByFloat(org.eclipse.collections.api.block.function.Function<? super V, ? extends V1>, org.eclipse.collections.api.block.function.primitive.FloatFunction<? super V>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
aload 2
invokeinterface org.eclipse.collections.api.map.ImmutableMap.sumByFloat:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
astore 3
start local 3 1: aload 3
invokeinterface org.eclipse.collections.api.map.primitive.ObjectDoubleMap.toImmutable:()Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 2 1 groupBy Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;
0 2 2 function Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;
1 2 3 map Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap<TV1;>;
Signature: <V1:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap<TV1;>;
MethodParameters:
Name Flags
groupBy
function
public <V1> org.eclipse.collections.api.map.primitive.ImmutableObjectLongMap<V1> sumByLong(org.eclipse.collections.api.block.function.Function<? super V, ? extends V1>, org.eclipse.collections.api.block.function.primitive.LongFunction<? super V>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
aload 2
invokeinterface org.eclipse.collections.api.map.ImmutableMap.sumByLong:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
astore 3
start local 3 1: aload 3
invokeinterface org.eclipse.collections.api.map.primitive.ObjectLongMap.toImmutable:()Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 2 1 groupBy Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;
0 2 2 function Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;
1 2 3 map Lorg/eclipse/collections/api/map/primitive/ObjectLongMap<TV1;>;
Signature: <V1:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap<TV1;>;
MethodParameters:
Name Flags
groupBy
function
public <V1> org.eclipse.collections.api.map.primitive.ImmutableObjectDoubleMap<V1> sumByDouble(org.eclipse.collections.api.block.function.Function<? super V, ? extends V1>, org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super V>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
aload 2
invokeinterface org.eclipse.collections.api.map.ImmutableMap.sumByDouble:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
astore 3
start local 3 1: aload 3
invokeinterface org.eclipse.collections.api.map.primitive.ObjectDoubleMap.toImmutable:()Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 2 1 groupBy Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;
0 2 2 function Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;
1 2 3 map Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap<TV1;>;
Signature: <V1:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap<TV1;>;
MethodParameters:
Name Flags
groupBy
function
public <VV> org.eclipse.collections.api.multimap.set.ImmutableSetMultimap<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/set/ImmutableSetMultimap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
new org.eclipse.collections.impl.multimap.set.UnifiedSetMultimap
dup
invokespecial org.eclipse.collections.impl.multimap.set.UnifiedSetMultimap.<init>:()V
invokeinterface org.eclipse.collections.api.map.ImmutableMap.groupBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
checkcast org.eclipse.collections.impl.multimap.set.UnifiedSetMultimap
invokevirtual org.eclipse.collections.impl.multimap.set.UnifiedSetMultimap.toImmutable:()Lorg/eclipse/collections/api/multimap/set/ImmutableSetMultimap;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<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/set/ImmutableSetMultimap<TVV;TV;>;
MethodParameters:
Name Flags
function
public <VV> org.eclipse.collections.api.multimap.set.ImmutableSetMultimap<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/set/ImmutableSetMultimap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
new org.eclipse.collections.impl.multimap.set.UnifiedSetMultimap
dup
invokespecial org.eclipse.collections.impl.multimap.set.UnifiedSetMultimap.<init>:()V
invokeinterface org.eclipse.collections.api.map.ImmutableMap.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
checkcast org.eclipse.collections.impl.multimap.set.UnifiedSetMultimap
invokevirtual org.eclipse.collections.impl.multimap.set.UnifiedSetMultimap.toImmutable:()Lorg/eclipse/collections/api/multimap/set/ImmutableSetMultimap;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<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/set/ImmutableSetMultimap<TVV;TV;>;
MethodParameters:
Name Flags
function
public <VV> org.eclipse.collections.api.bimap.ImmutableBiMap<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/bimap/ImmutableBiMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: getstatic org.eclipse.collections.impl.factory.BiMaps.immutable:Lorg/eclipse/collections/api/factory/bimap/ImmutableBiMapFactory;
aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
invokeinterface org.eclipse.collections.api.map.ImmutableMap.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/ImmutableMap;
invokeinterface org.eclipse.collections.api.factory.bimap.ImmutableBiMapFactory.withAll:(Lorg/eclipse/collections/api/map/ImmutableMap;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<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/bimap/ImmutableBiMap<TVV;TV;>;
MethodParameters:
Name Flags
function
public <K2, V2> org.eclipse.collections.api.map.ImmutableMap<K2, V2> aggregateBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends K2>, org.eclipse.collections.api.block.function.Function0<? extends V2>, org.eclipse.collections.api.block.function.Function2<? super V2, ? super V, ? extends V2>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/ImmutableMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
aload 2
aload 3
invokeinterface org.eclipse.collections.api.map.ImmutableMap.aggregateBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/ImmutableMap;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 1 1 groupBy Lorg/eclipse/collections/api/block/function/Function<-TV;+TK2;>;
0 1 2 zeroValueFactory Lorg/eclipse/collections/api/block/function/Function0<+TV2;>;
0 1 3 nonMutatingAggregator Lorg/eclipse/collections/api/block/function/Function2<-TV2;-TV;+TV2;>;
Signature: <K2:Ljava/lang/Object;V2:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TK2;>;Lorg/eclipse/collections/api/block/function/Function0<+TV2;>;Lorg/eclipse/collections/api/block/function/Function2<-TV2;-TV;+TV2;>;)Lorg/eclipse/collections/api/map/ImmutableMap<TK2;TV2;>;
MethodParameters:
Name Flags
groupBy
zeroValueFactory
nonMutatingAggregator
public <K2, V2> org.eclipse.collections.api.map.ImmutableMap<K2, V2> aggregateInPlaceBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends K2>, org.eclipse.collections.api.block.function.Function0<? extends V2>, org.eclipse.collections.api.block.procedure.Procedure2<? super V2, ? super V>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/ImmutableMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.delegate:Lorg/eclipse/collections/api/map/ImmutableMap;
aload 1
aload 2
aload 3
invokeinterface org.eclipse.collections.api.map.ImmutableMap.aggregateInPlaceBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/ImmutableMap;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 1 1 groupBy Lorg/eclipse/collections/api/block/function/Function<-TV;+TK2;>;
0 1 2 zeroValueFactory Lorg/eclipse/collections/api/block/function/Function0<+TV2;>;
0 1 3 mutatingAggregator Lorg/eclipse/collections/api/block/procedure/Procedure2<-TV2;-TV;>;
Signature: <K2:Ljava/lang/Object;V2:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TK2;>;Lorg/eclipse/collections/api/block/function/Function0<+TV2;>;Lorg/eclipse/collections/api/block/procedure/Procedure2<-TV2;-TV;>;)Lorg/eclipse/collections/api/map/ImmutableMap<TK2;TV2;>;
MethodParameters:
Name Flags
groupBy
zeroValueFactory
mutatingAggregator
public <S> org.eclipse.collections.api.set.ImmutableSet<S> selectInstancesOf(java.lang.Class<S>);
descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/set/ImmutableSet;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=3, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.set.mutable.UnifiedSet
dup
invokespecial org.eclipse.collections.impl.set.mutable.UnifiedSet.<init>:()V
astore 2
start local 2 1: aload 0
getfield org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.inverse:Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap;
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.bimap.immutable.AbstractImmutableBiMap.forEachKey:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
2: aload 2
invokeinterface org.eclipse.collections.api.set.MutableSet.toImmutable:()Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/bimap/immutable/AbstractImmutableBiMap<TK;TV;>;
0 3 1 clazz Ljava/lang/Class<TS;>;
1 3 2 result Lorg/eclipse/collections/api/set/MutableSet<TS;>;
Signature: <S:Ljava/lang/Object;>(Ljava/lang/Class<TS;>;)Lorg/eclipse/collections/api/set/ImmutableSet<TS;>;
MethodParameters:
Name Flags
clazz
public org.eclipse.collections.api.map.primitive.ObjectLongMap sumByInt(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.IntFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
aload 2
checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.sumByInt:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.ImmutableMapIterable newWithoutKey(java.lang.Object);
descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/map/ImmutableMapIterable;
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.bimap.immutable.AbstractImmutableBiMap.newWithoutKey:(Ljava/lang/Object;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.ImmutableMapIterable newWithoutAllKeys(java.lang.Iterable);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/map/ImmutableMapIterable;
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.bimap.immutable.AbstractImmutableBiMap.newWithoutAllKeys:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable collectIf(org.eclipse.collections.api.block.predicate.Predicate, org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: 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.bimap.immutable.AbstractImmutableBiMap.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.bag.ImmutableBagIterable 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/ImmutableBagIterable;
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.bimap.immutable.AbstractImmutableBiMap.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
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.bimap.immutable.AbstractImmutableBiMap.toImmutable:()Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
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.bimap.immutable.AbstractImmutableBiMap.collectValues:(Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.bimap.BiMap collectValues(org.eclipse.collections.api.block.function.Function2);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/bimap/BiMap;
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.bimap.immutable.AbstractImmutableBiMap.collectValues:(Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.ImmutableMapIterable collectValues(org.eclipse.collections.api.block.function.Function2);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/ImmutableMapIterable;
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.bimap.immutable.AbstractImmutableBiMap.collectValues:(Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
protected org.eclipse.collections.api.map.MapIterable getDelegate();
descriptor: ()Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.getDelegate:()Lorg/eclipse/collections/api/map/ImmutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable zipWithIndex();
descriptor: ()Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.zipWithIndex:()Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.set.SetIterable zipWithIndex();
descriptor: ()Lorg/eclipse/collections/api/set/SetIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.zipWithIndex:()Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.ImmutableCollection zipWithIndex();
descriptor: ()Lorg/eclipse/collections/api/collection/ImmutableCollection;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.zipWithIndex:()Lorg/eclipse/collections/api/set/ImmutableSet;
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.bimap.immutable.AbstractImmutableBiMap.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.set.SetIterable zip(java.lang.Iterable);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/set/SetIterable;
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.bimap.immutable.AbstractImmutableBiMap.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.ImmutableCollection zip(java.lang.Iterable);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
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.bimap.immutable.AbstractImmutableBiMap.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/set/ImmutableSet;
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.bimap.immutable.AbstractImmutableBiMap.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.bag.ImmutableBagIterable flatCollect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBagIterable;
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.bimap.immutable.AbstractImmutableBiMap.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
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.bimap.immutable.AbstractImmutableBiMap.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/bag/primitive/ImmutableCharBag;
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.bimap.immutable.AbstractImmutableBiMap.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/bag/primitive/ImmutableIntBag;
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.bimap.immutable.AbstractImmutableBiMap.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/bag/primitive/ImmutableLongBag;
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.bimap.immutable.AbstractImmutableBiMap.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.set.SetIterable 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/set/SetIterable;
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.bimap.immutable.AbstractImmutableBiMap.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.ImmutableCollection 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/ImmutableCollection;
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.bimap.immutable.AbstractImmutableBiMap.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
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.bimap.immutable.AbstractImmutableBiMap.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/bag/primitive/ImmutableByteBag;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.primitive.ObjectLongMap sumByLong(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.LongFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
aload 2
checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.sumByLong:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.bimap.BiMap inverse();
descriptor: ()Lorg/eclipse/collections/api/bimap/BiMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.inverse:()Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.ImmutableMapIterable newWithAllKeyValues(java.lang.Iterable);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/map/ImmutableMapIterable;
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.bimap.immutable.AbstractImmutableBiMap.newWithAllKeyValues:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
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.bimap.immutable.AbstractImmutableBiMap.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/PartitionImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.partition.set.PartitionUnsortedSet partition(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/PartitionUnsortedSet;
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.bimap.immutable.AbstractImmutableBiMap.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/PartitionImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.partition.PartitionImmutableCollection partition(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/PartitionImmutableCollection;
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.bimap.immutable.AbstractImmutableBiMap.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/PartitionImmutableSet;
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.bimap.immutable.AbstractImmutableBiMap.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/bag/primitive/ImmutableDoubleBag;
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.bimap.immutable.AbstractImmutableBiMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.set.SetIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/SetIterable;
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.bimap.immutable.AbstractImmutableBiMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.ImmutableCollection reject(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
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.bimap.immutable.AbstractImmutableBiMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/ImmutableSet;
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.bimap.immutable.AbstractImmutableBiMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.bimap.BiMap reject(org.eclipse.collections.api.block.predicate.Predicate2);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/bimap/BiMap;
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.bimap.immutable.AbstractImmutableBiMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.ImmutableMapIterable reject(org.eclipse.collections.api.block.predicate.Predicate2);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/ImmutableMapIterable;
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.bimap.immutable.AbstractImmutableBiMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
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.bimap.immutable.AbstractImmutableBiMap.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/set/ImmutableSetMultimap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.multimap.set.SetMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/set/SetMultimap;
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.bimap.immutable.AbstractImmutableBiMap.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/set/ImmutableSetMultimap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.multimap.ImmutableMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/ImmutableMultimap;
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.bimap.immutable.AbstractImmutableBiMap.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/set/ImmutableSetMultimap;
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.bimap.immutable.AbstractImmutableBiMap.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ImmutableBag;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.bag.ImmutableBagIterable 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/ImmutableBagIterable;
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.bimap.immutable.AbstractImmutableBiMap.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ImmutableBag;
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.bimap.immutable.AbstractImmutableBiMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.set.SetIterable select(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/SetIterable;
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.bimap.immutable.AbstractImmutableBiMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.ImmutableCollection select(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
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.bimap.immutable.AbstractImmutableBiMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/ImmutableSet;
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.bimap.immutable.AbstractImmutableBiMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.bimap.BiMap select(org.eclipse.collections.api.block.predicate.Predicate2);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/bimap/BiMap;
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.bimap.immutable.AbstractImmutableBiMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.ImmutableMapIterable select(org.eclipse.collections.api.block.predicate.Predicate2);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/ImmutableMapIterable;
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.bimap.immutable.AbstractImmutableBiMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
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.bimap.immutable.AbstractImmutableBiMap.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/bag/primitive/ImmutableShortBag;
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.bimap.immutable.AbstractImmutableBiMap.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
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.bimap.immutable.AbstractImmutableBiMap.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.bimap.BiMap tap(org.eclipse.collections.api.block.procedure.Procedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/bimap/BiMap;
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.bimap.immutable.AbstractImmutableBiMap.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.ImmutableMapIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/map/ImmutableMapIterable;
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.bimap.immutable.AbstractImmutableBiMap.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
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.bimap.immutable.AbstractImmutableBiMap.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/bag/primitive/ImmutableFloatBag;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.primitive.ObjectDoubleMap sumByDouble(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.DoubleFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
aload 2
checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.sumByDouble:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap;
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.bimap.immutable.AbstractImmutableBiMap.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/set/ImmutableSetMultimap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.multimap.set.SetMultimap groupBy(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/set/SetMultimap;
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.bimap.immutable.AbstractImmutableBiMap.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/set/ImmutableSetMultimap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.multimap.ImmutableMultimap groupBy(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/ImmutableMultimap;
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.bimap.immutable.AbstractImmutableBiMap.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/set/ImmutableSetMultimap;
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.bimap.immutable.AbstractImmutableBiMap.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.set.SetIterable 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/set/SetIterable;
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.bimap.immutable.AbstractImmutableBiMap.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.ImmutableCollection 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/ImmutableCollection;
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.bimap.immutable.AbstractImmutableBiMap.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
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.bimap.immutable.AbstractImmutableBiMap.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/set/PartitionImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.partition.set.PartitionUnsortedSet 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/set/PartitionUnsortedSet;
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.bimap.immutable.AbstractImmutableBiMap.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/set/PartitionImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.primitive.ObjectDoubleMap sumByFloat(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.FloatFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
aload 2
checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.sumByFloat:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.MapIterable aggregateBy(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.Function0, org.eclipse.collections.api.block.function.Function2);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=4, locals=4, args_size=4
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
aload 2
checkcast org.eclipse.collections.api.block.function.Function0
aload 3
checkcast org.eclipse.collections.api.block.function.Function2
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.aggregateBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/ImmutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.ImmutableMapIterable aggregateBy(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.Function0, org.eclipse.collections.api.block.function.Function2);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/ImmutableMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=4, locals=4, args_size=4
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
aload 2
checkcast org.eclipse.collections.api.block.function.Function0
aload 3
checkcast org.eclipse.collections.api.block.function.Function2
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.aggregateBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/ImmutableMap;
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.bimap.immutable.AbstractImmutableBiMap.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.set.SetIterable selectInstancesOf(java.lang.Class);
descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/set/SetIterable;
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.bimap.immutable.AbstractImmutableBiMap.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/set/ImmutableSet;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.ImmutableCollection selectInstancesOf(java.lang.Class);
descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
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.bimap.immutable.AbstractImmutableBiMap.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/set/ImmutableSet;
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.bimap.immutable.AbstractImmutableBiMap.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/bag/primitive/ImmutableBooleanBag;
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.bimap.immutable.AbstractImmutableBiMap.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.bag.ImmutableBagIterable collect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBagIterable;
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.bimap.immutable.AbstractImmutableBiMap.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.MapIterable collect(org.eclipse.collections.api.block.function.Function2);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function2
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.collect:(Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.bimap.BiMap collect(org.eclipse.collections.api.block.function.Function2);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/bimap/BiMap;
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.bimap.immutable.AbstractImmutableBiMap.collect:(Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.ImmutableMapIterable collect(org.eclipse.collections.api.block.function.Function2);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/ImmutableMapIterable;
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.bimap.immutable.AbstractImmutableBiMap.collect:(Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.MapIterable flipUniqueValues();
descriptor: ()Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.flipUniqueValues:()Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.bimap.BiMap flipUniqueValues();
descriptor: ()Lorg/eclipse/collections/api/bimap/BiMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.flipUniqueValues:()Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.ImmutableMapIterable flipUniqueValues();
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.bimap.immutable.AbstractImmutableBiMap.flipUniqueValues:()Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
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.bimap.immutable.AbstractImmutableBiMap.flip:()Lorg/eclipse/collections/api/multimap/set/ImmutableSetMultimap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.multimap.set.SetMultimap flip();
descriptor: ()Lorg/eclipse/collections/api/multimap/set/SetMultimap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.flip:()Lorg/eclipse/collections/api/multimap/set/ImmutableSetMultimap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.multimap.ImmutableMultimap flip();
descriptor: ()Lorg/eclipse/collections/api/multimap/ImmutableMultimap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.flip:()Lorg/eclipse/collections/api/multimap/set/ImmutableSetMultimap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.MapIterable aggregateInPlaceBy(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.Function0, org.eclipse.collections.api.block.procedure.Procedure2);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=4, locals=4, args_size=4
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
aload 2
checkcast org.eclipse.collections.api.block.function.Function0
aload 3
checkcast org.eclipse.collections.api.block.procedure.Procedure2
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.aggregateInPlaceBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/ImmutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.ImmutableMapIterable aggregateInPlaceBy(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.Function0, org.eclipse.collections.api.block.procedure.Procedure2);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/ImmutableMapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=4, locals=4, args_size=4
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
aload 2
checkcast org.eclipse.collections.api.block.function.Function0
aload 3
checkcast org.eclipse.collections.api.block.procedure.Procedure2
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.aggregateInPlaceBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/ImmutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.ImmutableMapIterable newWithAllKeyValueArguments(org.eclipse.collections.api.tuple.Pair[]);
descriptor: ([Lorg/eclipse/collections/api/tuple/Pair;)Lorg/eclipse/collections/api/map/ImmutableMapIterable;
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.bimap.immutable.AbstractImmutableBiMap.newWithAllKeyValueArguments:([Lorg/eclipse/collections/api/tuple/Pair;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
protected org.eclipse.collections.api.map.MapIterable getInverse();
descriptor: ()Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap.getInverse:()Lorg/eclipse/collections/api/map/ImmutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.ImmutableMapIterable newWithKeyValue(java.lang.Object, java.lang.Object);
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/map/ImmutableMapIterable;
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.bimap.immutable.AbstractImmutableBiMap.newWithKeyValue:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
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.bimap.immutable.AbstractImmutableBiMap.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.bimap.BiMap groupByUniqueKey(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bimap/BiMap;
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.bimap.immutable.AbstractImmutableBiMap.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.ImmutableMapIterable groupByUniqueKey(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/ImmutableMapIterable;
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.bimap.immutable.AbstractImmutableBiMap.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bimap/ImmutableBiMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Lorg/eclipse/collections/impl/bimap/AbstractBiMap<TK;TV;>;Lorg/eclipse/collections/api/bimap/ImmutableBiMap<TK;TV;>;Ljava/util/Map<TK;TV;>;
SourceFile: "AbstractImmutableBiMap.java"
NestMembers:
org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap$Inverse
InnerClasses:
public abstract Entry = java.util.Map$Entry of java.util.Map
private Inverse = org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap$Inverse of org.eclipse.collections.impl.bimap.immutable.AbstractImmutableBiMap