final class org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap<K, V> extends org.eclipse.collections.impl.map.immutable.AbstractImmutableMap<K, V> implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap
  super_class: org.eclipse.collections.impl.map.immutable.AbstractImmutableMap
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private final K key1;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: TK;

  private final V value1;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: TV;

  private final K key2;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: TK;

  private final V value2;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: TV;

  private final K key3;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: TK;

  private final V value3;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: TV;

  void <init>(K, V, K, V, K, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=7, args_size=7
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
        start local 1 // java.lang.Object key1
        start local 2 // java.lang.Object value1
        start local 3 // java.lang.Object key2
        start local 4 // java.lang.Object value2
        start local 5 // java.lang.Object key3
        start local 6 // java.lang.Object value3
         0: .line 46
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.map.immutable.AbstractImmutableMap.<init>:()V
         1: .line 48
            aload 0 /* this */
            aload 1 /* key1 */
            putfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
         2: .line 49
            aload 0 /* this */
            aload 2 /* value1 */
            putfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
         3: .line 50
            aload 0 /* this */
            aload 3 /* key2 */
            putfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
         4: .line 51
            aload 0 /* this */
            aload 4 /* value2 */
            putfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
         5: .line 52
            aload 0 /* this */
            aload 5 /* key3 */
            putfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
         6: .line 53
            aload 0 /* this */
            aload 6 /* value3 */
            putfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
         7: .line 54
            return
        end local 6 // java.lang.Object value3
        end local 5 // java.lang.Object key3
        end local 4 // java.lang.Object value2
        end local 3 // java.lang.Object key2
        end local 2 // java.lang.Object value1
        end local 1 // java.lang.Object key1
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
            0    8     1    key1  TK;
            0    8     2  value1  TV;
            0    8     3    key2  TK;
            0    8     4  value2  TV;
            0    8     5    key3  TK;
            0    8     6  value3  TV;
    Signature: (TK;TV;TK;TV;TK;TV;)V
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  
      key3    
      value3  

  public org.eclipse.collections.api.RichIterable<K> keysView();
    descriptor: ()Lorg/eclipse/collections/api/RichIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
         0: .line 59
            getstatic org.eclipse.collections.impl.factory.Lists.immutable:Lorg/eclipse/collections/api/factory/list/ImmutableListFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.factory.list.ImmutableListFactory.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
            invokeinterface org.eclipse.collections.api.list.ImmutableList.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
    Signature: ()Lorg/eclipse/collections/api/RichIterable<TK;>;

  public org.eclipse.collections.api.RichIterable<V> valuesView();
    descriptor: ()Lorg/eclipse/collections/api/RichIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
         0: .line 65
            getstatic org.eclipse.collections.impl.factory.Lists.immutable:Lorg/eclipse/collections/api/factory/list/ImmutableListFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.factory.list.ImmutableListFactory.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
            invokeinterface org.eclipse.collections.api.list.ImmutableList.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
    Signature: ()Lorg/eclipse/collections/api/RichIterable<TV;>;

  public org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.tuple.Pair<K, V>> keyValuesView();
    descriptor: ()Lorg/eclipse/collections/api/RichIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
         0: .line 71
            getstatic org.eclipse.collections.impl.factory.Lists.immutable:Lorg/eclipse/collections/api/factory/list/ImmutableListFactory;
         1: .line 72
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.tuple.Tuples.pair:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Pair;
         2: .line 73
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.tuple.Tuples.pair:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Pair;
         3: .line 74
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.tuple.Tuples.pair:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Pair;
         4: .line 71
            invokeinterface org.eclipse.collections.api.factory.list.ImmutableListFactory.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
         5: .line 74
            invokeinterface org.eclipse.collections.api.list.ImmutableList.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
         6: .line 71
            areturn
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
    Signature: ()Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/tuple/Pair<TK;TV;>;>;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
         0: .line 80
            iconst_3
            ireturn
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;

  public boolean containsKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
        start local 1 // java.lang.Object key
         0: .line 86
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            aload 1 /* key */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 4
         1: .line 87
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 1 /* key */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 4
         2: .line 88
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 1 /* key */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 4
         3: .line 86
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         4: iconst_1
            ireturn
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
            0    5     1   key  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  public boolean containsValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
        start local 1 // java.lang.Object value
         0: .line 94
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            aload 1 /* value */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 4
         1: .line 95
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            aload 1 /* value */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 4
         2: .line 96
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            aload 1 /* value */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 4
         3: .line 94
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         4: iconst_1
            ireturn
        end local 1 // java.lang.Object value
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
            0    5     1  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      value  

  public V get();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
        start local 1 // java.lang.Object key
         0: .line 102
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            aload 1 /* key */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 2
         1: .line 104
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            areturn
         2: .line 106
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 1 /* key */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 4
         3: .line 108
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            areturn
         4: .line 110
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 1 /* key */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 6
         5: .line 112
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            areturn
         6: .line 114
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
            0    7     1   key  Ljava/lang/Object;
    Signature: (Ljava/lang/Object;)TV;
    MethodParameters:
      Name  Flags
      key   

  public java.util.Set<K> keySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
         0: .line 120
            getstatic org.eclipse.collections.impl.factory.Sets.immutable:Lorg/eclipse/collections/api/factory/set/ImmutableSetFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.factory.set.ImmutableSetFactory.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            invokeinterface org.eclipse.collections.api.set.ImmutableSet.castToSet:()Ljava/util/Set;
            areturn
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
    Signature: ()Ljava/util/Set<TK;>;

  public java.util.Collection<V> values();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
         0: .line 126
            getstatic org.eclipse.collections.impl.factory.Lists.immutable:Lorg/eclipse/collections/api/factory/list/ImmutableListFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.factory.list.ImmutableListFactory.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
            invokeinterface org.eclipse.collections.api.list.ImmutableList.castToList:()Ljava/util/List;
            areturn
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
    Signature: ()Ljava/util/Collection<TV;>;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
         0: .line 132
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.keyAndValueHashCode:(Ljava/lang/Object;Ljava/lang/Object;)I
         1: .line 133
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.keyAndValueHashCode:(Ljava/lang/Object;Ljava/lang/Object;)I
         2: .line 132
            iadd
         3: .line 134
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.keyAndValueHashCode:(Ljava/lang/Object;Ljava/lang/Object;)I
         4: .line 132
            iadd
            ireturn
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
        start local 1 // java.lang.Object other
         0: .line 140
            aload 1 /* other */
            instanceof java.util.Map
            ifne 2
         1: .line 142
            iconst_0
            ireturn
         2: .line 144
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            checkcast java.util.Map
            astore 2 /* that */
        start local 2 // java.util.Map that
         3: .line 145
            aload 2 /* that */
            invokeinterface java.util.Map.size:()I
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.size:()I
            if_icmpne 8
         4: .line 146
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            aload 2 /* that */
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.keyAndValueEquals:(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/Map;)Z
            ifeq 8
         5: .line 147
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            aload 2 /* that */
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.keyAndValueEquals:(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/Map;)Z
            ifeq 8
         6: .line 148
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            aload 2 /* that */
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.keyAndValueEquals:(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/Map;)Z
            ifeq 8
         7: .line 145
            iconst_1
            ireturn
      StackMap locals: java.util.Map
      StackMap stack:
         8: iconst_0
            ireturn
        end local 2 // java.util.Map that
        end local 1 // java.lang.Object other
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
            0    9     1  other  Ljava/lang/Object;
            3    9     2   that  Ljava/util/Map<TK;TV;>;
    MethodParameters:
       Name  Flags
      other  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
         0: .line 154
            new java.lang.StringBuilder
            dup
            ldc "{"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         1: .line 155
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            bipush 61
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         2: .line 156
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            bipush 61
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         3: .line 157
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            bipush 61
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            bipush 125
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
         4: .line 154
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;

  public org.eclipse.collections.api.map.ImmutableMap<V, K> flipUniqueValues();
    descriptor: ()Lorg/eclipse/collections/api/map/ImmutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
         0: .line 163
            getstatic org.eclipse.collections.impl.factory.Maps.immutable:Lorg/eclipse/collections/api/factory/map/ImmutableMapFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.factory.map.ImmutableMapFactory.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
    Signature: ()Lorg/eclipse/collections/api/map/ImmutableMap<TV;TK;>;

  public void forEachKeyValue(org.eclipse.collections.api.block.procedure.Procedure2<? super K, ? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure2;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
         0: .line 169
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure2.value:(Ljava/lang/Object;Ljava/lang/Object;)V
         1: .line 170
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure2.value:(Ljava/lang/Object;Ljava/lang/Object;)V
         2: .line 171
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure2.value:(Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 172
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
            0    4     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure2<-TK;-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure2<-TK;-TV;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public void forEachKey(org.eclipse.collections.api.block.procedure.Procedure<? super K>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 177
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
         1: .line 178
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
         2: .line 179
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
         3: .line 180
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
            0    4     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TK;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TK;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public void forEachValue(org.eclipse.collections.api.block.procedure.Procedure<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 185
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
         1: .line 186
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
         2: .line 187
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
         3: .line 188
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
            0    4     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public void forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 193
            aload 1 /* objectIntProcedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            iconst_0
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure.value:(Ljava/lang/Object;I)V
         1: .line 194
            aload 1 /* objectIntProcedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            iconst_1
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure.value:(Ljava/lang/Object;I)V
         2: .line 195
            aload 1 /* objectIntProcedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            iconst_2
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure.value:(Ljava/lang/Object;I)V
         3: .line 196
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    4     0                this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
            0    4     1  objectIntProcedure  Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TV;>;)V
    MethodParameters:
                    Name  Flags
      objectIntProcedure  

  public <P> void forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super V, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        start local 2 // java.lang.Object parameter
         0: .line 201
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure2.value:(Ljava/lang/Object;Ljava/lang/Object;)V
         1: .line 202
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure2.value:(Ljava/lang/Object;Ljava/lang/Object;)V
         2: .line 203
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure2.value:(Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 204
            return
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
            0    4     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure2<-TV;-TP;>;
            0    4     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/procedure/Procedure2<-TV;-TP;>;TP;)V
    MethodParameters:
           Name  Flags
      procedure  
      parameter  

  public <K2, V2> org.eclipse.collections.api.map.ImmutableMap<K2, V2> collect(org.eclipse.collections.api.block.function.Function2<? super K, ? super V, org.eclipse.collections.api.tuple.Pair<K2, V2>>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/ImmutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
         0: .line 209
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.tuple.Pair
            astore 2 /* pair1 */
        start local 2 // org.eclipse.collections.api.tuple.Pair pair1
         1: .line 210
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.tuple.Pair
            astore 3 /* pair2 */
        start local 3 // org.eclipse.collections.api.tuple.Pair pair2
         2: .line 211
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.tuple.Pair
            astore 4 /* pair3 */
        start local 4 // org.eclipse.collections.api.tuple.Pair pair3
         3: .line 213
            getstatic org.eclipse.collections.impl.factory.Maps.immutable:Lorg/eclipse/collections/api/factory/map/ImmutableMapFactory;
            aload 2 /* pair1 */
            invokeinterface org.eclipse.collections.api.tuple.Pair.getOne:()Ljava/lang/Object;
            aload 2 /* pair1 */
            invokeinterface org.eclipse.collections.api.tuple.Pair.getTwo:()Ljava/lang/Object;
            aload 3 /* pair2 */
            invokeinterface org.eclipse.collections.api.tuple.Pair.getOne:()Ljava/lang/Object;
            aload 3 /* pair2 */
            invokeinterface org.eclipse.collections.api.tuple.Pair.getTwo:()Ljava/lang/Object;
            aload 4 /* pair3 */
            invokeinterface org.eclipse.collections.api.tuple.Pair.getOne:()Ljava/lang/Object;
            aload 4 /* pair3 */
            invokeinterface org.eclipse.collections.api.tuple.Pair.getTwo:()Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.factory.map.ImmutableMapFactory.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
        end local 4 // org.eclipse.collections.api.tuple.Pair pair3
        end local 3 // org.eclipse.collections.api.tuple.Pair pair2
        end local 2 // org.eclipse.collections.api.tuple.Pair pair1
        end local 1 // org.eclipse.collections.api.block.function.Function2 function
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
            0    4     1  function  Lorg/eclipse/collections/api/block/function/Function2<-TK;-TV;Lorg/eclipse/collections/api/tuple/Pair<TK2;TV2;>;>;
            1    4     2     pair1  Lorg/eclipse/collections/api/tuple/Pair<TK2;TV2;>;
            2    4     3     pair2  Lorg/eclipse/collections/api/tuple/Pair<TK2;TV2;>;
            3    4     4     pair3  Lorg/eclipse/collections/api/tuple/Pair<TK2;TV2;>;
    Signature: <K2:Ljava/lang/Object;V2:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TK;-TV;Lorg/eclipse/collections/api/tuple/Pair<TK2;TV2;>;>;)Lorg/eclipse/collections/api/map/ImmutableMap<TK2;TV2;>;
    MethodParameters:
          Name  Flags
      function  

  public <R> org.eclipse.collections.api.map.ImmutableMap<K, R> collectValues(org.eclipse.collections.api.block.function.Function2<? super K, ? super V, ? extends R>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/ImmutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
         0: .line 219
            getstatic org.eclipse.collections.impl.factory.Maps.immutable:Lorg/eclipse/collections/api/factory/map/ImmutableMapFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.factory.map.ImmutableMapFactory.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function2 function
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function2<-TK;-TV;+TR;>;
    Signature: <R:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TK;-TV;+TR;>;)Lorg/eclipse/collections/api/map/ImmutableMap<TK;TR;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.tuple.Pair<K, V> detect(org.eclipse.collections.api.block.predicate.Predicate2<? super K, ? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/tuple/Pair;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
         0: .line 225
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 2
         1: .line 227
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.tuple.Tuples.pair:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Pair;
            areturn
         2: .line 229
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 4
         3: .line 231
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.tuple.Tuples.pair:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Pair;
            areturn
         4: .line 233
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 6
         5: .line 235
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.tuple.Tuples.pair:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Pair;
            areturn
         6: .line 237
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
            0    7     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TK;-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate2<-TK;-TV;>;)Lorg/eclipse/collections/api/tuple/Pair<TK;TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.map.ImmutableMap<K, V> select(org.eclipse.collections.api.block.predicate.Predicate2<? super K, ? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/ImmutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
         0: .line 243
            aload 0 /* this */
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.filter:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TK;-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate2<-TK;-TV;>;)Lorg/eclipse/collections/api/map/ImmutableMap<TK;TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.map.ImmutableMap<K, V> reject(org.eclipse.collections.api.block.predicate.Predicate2<? super K, ? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/ImmutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
         0: .line 249
            aload 0 /* this */
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates2.not:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/impl/block/factory/Predicates2;
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.filter:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TK;-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate2<-TK;-TV;>;)Lorg/eclipse/collections/api/map/ImmutableMap<TK;TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  private org.eclipse.collections.api.map.ImmutableMap<K, V> filter(org.eclipse.collections.api.block.predicate.Predicate2<? super K, ? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/ImmutableMap;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
         0: .line 254
            iconst_0
            istore 2 /* result */
        start local 2 // int result
         1: .line 256
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 3
         2: .line 258
            iload 2 /* result */
            iconst_1
            ior
            istore 2 /* result */
         3: .line 260
      StackMap locals: int
      StackMap stack:
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 5
         4: .line 262
            iload 2 /* result */
            iconst_2
            ior
            istore 2 /* result */
         5: .line 264
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 7
         6: .line 266
            iload 2 /* result */
            iconst_4
            ior
            istore 2 /* result */
         7: .line 269
      StackMap locals:
      StackMap stack:
            iload 2 /* result */
            tableswitch { // 1 - 7
                    1: 8
                    2: 9
                    3: 10
                    4: 11
                    5: 12
                    6: 13
                    7: 14
              default: 15
          }
         8: .line 272
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.impl.factory.Maps.immutable:Lorg/eclipse/collections/api/factory/map/ImmutableMapFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.factory.map.ImmutableMapFactory.with:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
         9: .line 274
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.impl.factory.Maps.immutable:Lorg/eclipse/collections/api/factory/map/ImmutableMapFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.factory.map.ImmutableMapFactory.with:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
        10: .line 276
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.impl.factory.Maps.immutable:Lorg/eclipse/collections/api/factory/map/ImmutableMapFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.factory.map.ImmutableMapFactory.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
        11: .line 278
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.impl.factory.Maps.immutable:Lorg/eclipse/collections/api/factory/map/ImmutableMapFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.factory.map.ImmutableMapFactory.with:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
        12: .line 280
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.impl.factory.Maps.immutable:Lorg/eclipse/collections/api/factory/map/ImmutableMapFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.factory.map.ImmutableMapFactory.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
        13: .line 282
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.impl.factory.Maps.immutable:Lorg/eclipse/collections/api/factory/map/ImmutableMapFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.factory.map.ImmutableMapFactory.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
        14: .line 284
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.impl.factory.Maps.immutable:Lorg/eclipse/collections/api/factory/map/ImmutableMapFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value1:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value2:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.key3:Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.value3:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.factory.map.ImmutableMapFactory.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
        15: .line 286
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.impl.factory.Maps.immutable:Lorg/eclipse/collections/api/factory/map/ImmutableMapFactory;
            invokeinterface org.eclipse.collections.api.factory.map.ImmutableMapFactory.empty:()Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
        end local 2 // int result
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   16     0       this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
            0   16     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TK;-TV;>;
            1   16     2     result  I
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate2<-TK;-TV;>;)Lorg/eclipse/collections/api/map/ImmutableMap<TK;TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  public V getOnly();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
         0: .line 293
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Size must be 1 but was "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.size:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;
    Signature: ()TV;

  private java.lang.Object writeReplace();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
         0: .line 298
            new org.eclipse.collections.impl.map.immutable.ImmutableMapSerializationProxy
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.map.immutable.ImmutableMapSerializationProxy.<init>:(Lorg/eclipse/collections/api/map/ImmutableMap;)V
            areturn
        end local 0 // org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/immutable/ImmutableTripletonMap<TK;TV;>;

  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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.collectValues:(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.UnsortedMapIterable collectValues(org.eclipse.collections.api.block.function.Function2);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/UnsortedMapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.collectValues:(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 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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.collectValues:(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.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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.UnsortedMapIterable reject(org.eclipse.collections.api.block.predicate.Predicate2);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/UnsortedMapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/ImmutableMap;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/ImmutableMap;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.UnsortedMapIterable select(org.eclipse.collections.api.block.predicate.Predicate2);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/UnsortedMapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/ImmutableMap;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.MapIterable collect(org.eclipse.collections.api.block.function.Function2);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.collect:(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.UnsortedMapIterable collect(org.eclipse.collections.api.block.function.Function2);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/UnsortedMapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.collect:(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 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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.collect:(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.MapIterable flipUniqueValues();
    descriptor: ()Lorg/eclipse/collections/api/map/MapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.flipUniqueValues:()Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.UnsortedMapIterable flipUniqueValues();
    descriptor: ()Lorg/eclipse/collections/api/map/UnsortedMapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.flipUniqueValues:()Lorg/eclipse/collections/api/map/ImmutableMap;
            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: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.map.immutable.ImmutableTripletonMap.flipUniqueValues:()Lorg/eclipse/collections/api/map/ImmutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Lorg/eclipse/collections/impl/map/immutable/AbstractImmutableMap<TK;TV;>;Ljava/io/Serializable;
SourceFile: "ImmutableTripletonMap.java"