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

  protected int keyAndValueHashCode(K, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 32
            aload 1 /* key */
            ifnonnull 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals:
      StackMap stack: int
         2: aload 2 /* value */
            ifnonnull 3
            iconst_0
            goto 4
      StackMap locals:
      StackMap stack: int
         3: aload 2 /* value */
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals: org.eclipse.collections.impl.map.AbstractMapIterable java.lang.Object java.lang.Object
      StackMap stack: int int
         4: ixor
            ireturn
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    5     1    key  TK;
            0    5     2  value  TV;
    Signature: (TK;TV;)I
    MethodParameters:
       Name  Flags
      key    
      value  

  protected boolean keyAndValueEquals(K, V, java.util.Map<K, V>);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/util/Map;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
        start local 3 // java.util.Map map
         0: .line 37
            aload 2 /* value */
            ifnonnull 2
            aload 3 /* map */
            aload 1 /* key */
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ifne 2
         1: .line 39
            iconst_0
            ireturn
         2: .line 42
      StackMap locals:
      StackMap stack:
            aload 3 /* map */
            aload 1 /* key */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 4 /* oValue */
        start local 4 // java.lang.Object oValue
         3: .line 43
            aload 4 /* oValue */
            aload 2 /* value */
            if_acmpeq 5
            aload 4 /* oValue */
            ifnull 4
            aload 4 /* oValue */
            aload 2 /* value */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifne 5
      StackMap locals: java.lang.Object
      StackMap stack:
         4: iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_1
            ireturn
        end local 4 // java.lang.Object oValue
        end local 3 // java.util.Map map
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    6     1     key  TK;
            0    6     2   value  TV;
            0    6     3     map  Ljava/util/Map<TK;TV;>;
            3    6     4  oValue  TV;
    Signature: (TK;TV;Ljava/util/Map<TK;TV;>;)Z
    MethodParameters:
       Name  Flags
      key    
      value  
      map    

  public <A> A ifPresentApply(K, org.eclipse.collections.api.block.function.Function<? super V, ? extends A>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // java.lang.Object key
        start local 2 // org.eclipse.collections.api.block.function.Function function
         0: .line 49
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 50
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.isAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 2
            aconst_null
            goto 3
      StackMap locals: java.lang.Object
      StackMap stack:
         2: aload 2 /* function */
            aload 3 /* result */
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
      StackMap locals:
      StackMap stack: java.lang.Object
         3: areturn
        end local 3 // java.lang.Object result
        end local 2 // org.eclipse.collections.api.block.function.Function function
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    4     1       key  TK;
            0    4     2  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TA;>;
            1    4     3    result  TV;
    Signature: <A:Ljava/lang/Object;>(TK;Lorg/eclipse/collections/api/block/function/Function<-TV;+TA;>;)TA;
    MethodParameters:
          Name  Flags
      key       
      function  

  protected boolean isAbsent(V, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // java.lang.Object result
        start local 2 // java.lang.Object key
         0: .line 55
            aload 1 /* result */
            ifnonnull 1
            aload 0 /* this */
            aload 2 /* key */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.containsKey:(Ljava/lang/Object;)Z
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 2 // java.lang.Object key
        end local 1 // java.lang.Object result
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    2     1  result  TV;
            0    2     2     key  TK;
    Signature: (TV;TK;)Z
    MethodParameters:
        Name  Flags
      result  
      key     

  public V getOrDefault(, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object defaultValue
         0: .line 61
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* defaultValue */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.getIfAbsentValue:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object defaultValue
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    1     1           key  Ljava/lang/Object;
            0    1     2  defaultValue  TV;
    Signature: (Ljava/lang/Object;TV;)TV;
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public V getIfAbsent(K, org.eclipse.collections.api.block.function.Function0<? extends V>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // java.lang.Object key
        start local 2 // org.eclipse.collections.api.block.function.Function0 function
         0: .line 67
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 68
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.isAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 3
         2: .line 70
            aload 3 /* result */
            areturn
         3: .line 72
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            areturn
        end local 3 // java.lang.Object result
        end local 2 // org.eclipse.collections.api.block.function.Function0 function
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    4     1       key  TK;
            0    4     2  function  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
            1    4     3    result  TV;
    Signature: (TK;Lorg/eclipse/collections/api/block/function/Function0<+TV;>;)TV;
    MethodParameters:
          Name  Flags
      key       
      function  

  public V getIfAbsentValue(K, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 78
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 79
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.isAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 3
         2: .line 81
            aload 3 /* result */
            areturn
         3: .line 83
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* value */
            areturn
        end local 3 // java.lang.Object result
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    4     1     key  TK;
            0    4     2   value  TV;
            1    4     3  result  TV;
    Signature: (TK;TV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

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

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 103
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.RichIterable.anySatisfy:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean anySatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 109
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.RichIterable.anySatisfyWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<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;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 115
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.RichIterable.allSatisfy:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean allSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 121
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.RichIterable.allSatisfyWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<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;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 127
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.RichIterable.noneSatisfy:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean noneSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 133
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.RichIterable.noneSatisfyWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<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;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public org.eclipse.collections.api.LazyIterable<V> asLazy();
    descriptor: ()Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
         0: .line 139
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            invokeinterface org.eclipse.collections.api.RichIterable.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
    Signature: ()Lorg/eclipse/collections/api/LazyIterable<TV;>;

  public org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.RichIterable<V>> chunk(int);
    descriptor: (I)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // int size
         0: .line 145
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            iload 1 /* size */
            invokeinterface org.eclipse.collections.api.RichIterable.chunk:(I)Lorg/eclipse/collections/api/RichIterable;
            areturn
        end local 1 // int size
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    1     1  size  I
    Signature: (I)Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/RichIterable<TV;>;>;
    MethodParameters:
      Name  Flags
      size  

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

  public <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.AbstractMapIterable this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure2
        start local 2 // java.lang.Object parameter
         0: .line 157
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            aload 1 /* procedure2 */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.RichIterable.forEachWith:(Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
         1: .line 158
            return
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure2
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    2     1  procedure2  Lorg/eclipse/collections/api/block/procedure/Procedure2<-TV;-TP;>;
            0    2     2   parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/procedure/Procedure2<-TV;-TP;>;TP;)V
    MethodParameters:
            Name  Flags
      procedure2  
      parameter   

  public void forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 163
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            aload 1 /* objectIntProcedure */
            invokeinterface org.eclipse.collections.api.RichIterable.forEachWithIndex:(Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
         1: .line 164
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    2     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 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.AbstractMapIterable this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 169
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.keysView:()Lorg/eclipse/collections/api/RichIterable;
            aload 1 /* procedure */
            invokeinterface org.eclipse.collections.api.RichIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 170
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    2     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.AbstractMapIterable this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 175
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            aload 1 /* procedure */
            invokeinterface org.eclipse.collections.api.RichIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 176
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public boolean contains(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.AbstractMapIterable this
        start local 1 // java.lang.Object object
         0: .line 181
            aload 0 /* this */
            aload 1 /* object */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.containsValue:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    1     1  object  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      object  

  public V detect(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 187
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.RichIterable.detect:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)TV;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> V detectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 193
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.RichIterable.detectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<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;)TV;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public java.util.Optional<V> detectOptional(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 199
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.RichIterable.detectOptional:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/util/Optional;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Ljava/util/Optional<TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> java.util.Optional<V> detectWithOptional(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 205
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.RichIterable.detectWithOptional:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/util/Optional;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<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;)Ljava/util/Optional<TV;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public V detectIfNone(org.eclipse.collections.api.block.predicate.Predicate<? super V>, org.eclipse.collections.api.block.function.Function0<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function0 function
         0: .line 211
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            aload 1 /* predicate */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.RichIterable.detectIfNone:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function0 function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            0    1     2   function  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;Lorg/eclipse/collections/api/block/function/Function0<+TV;>;)TV;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  public <P> V detectWithIfNone(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, P, org.eclipse.collections.api.block.function.Function0<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
        start local 3 // org.eclipse.collections.api.block.function.Function0 function
         0: .line 217
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.RichIterable.detectWithIfNone:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
            areturn
        end local 3 // org.eclipse.collections.api.block.function.Function0 function
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    1     2  parameter  TP;
            0    1     3   function  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;Lorg/eclipse/collections/api/block/function/Function0<+TV;>;)TV;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  
      function   

  public V getFirst();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
         0: .line 223
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            invokeinterface org.eclipse.collections.api.RichIterable.getFirst:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
    Signature: ()TV;

  public V getLast();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
         0: .line 229
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            invokeinterface org.eclipse.collections.api.RichIterable.getLast:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
    Signature: ()TV;

  public V getOnly();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
         0: .line 235
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            invokeinterface org.eclipse.collections.api.RichIterable.getOnly:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
    Signature: ()TV;

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
         0: .line 241
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            invokeinterface org.eclipse.collections.api.RichIterable.toArray:()[Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;

  public <T> T[] toArray();
    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.AbstractMapIterable this
        start local 1 // java.lang.Object[] a
         0: .line 247
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.AbstractMapIterable.valuesView:()Lorg/eclipse/collections/api/RichIterable;
            aload 1 /* a */
            invokeinterface org.eclipse.collections.api.RichIterable.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object[] a
        end local 0 // org.eclipse.collections.impl.map.AbstractMapIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/AbstractMapIterable<TK;TV;>;
            0    1     1     a  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)[TT;
    MethodParameters:
      Name  Flags
      a     
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Lorg/eclipse/collections/impl/AbstractRichIterable<TV;>;Lorg/eclipse/collections/api/map/MapIterable<TK;TV;>;
SourceFile: "AbstractMapIterable.java"