public final class org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable<T> extends org.eclipse.collections.impl.lazy.parallel.AbstractMultiReaderParallelIterable<T, org.eclipse.collections.api.ParallelIterable<T>>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable
  super_class: org.eclipse.collections.impl.lazy.parallel.AbstractMultiReaderParallelIterable
{
  public void <init>(org.eclipse.collections.api.ParallelIterable<T>, java.util.concurrent.locks.ReadWriteLock);
    descriptor: (Lorg/eclipse/collections/api/ParallelIterable;Ljava/util/concurrent/locks/ReadWriteLock;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
        start local 1 // org.eclipse.collections.api.ParallelIterable delegate
        start local 2 // java.util.concurrent.locks.ReadWriteLock lock
         0: .line 28
            aload 0 /* this */
            aload 1 /* delegate */
            aload 2 /* lock */
            invokespecial org.eclipse.collections.impl.lazy.parallel.AbstractMultiReaderParallelIterable.<init>:(Lorg/eclipse/collections/api/ParallelIterable;Ljava/util/concurrent/locks/ReadWriteLock;)V
         1: .line 29
            return
        end local 2 // java.util.concurrent.locks.ReadWriteLock lock
        end local 1 // org.eclipse.collections.api.ParallelIterable delegate
        end local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/lazy/parallel/MultiReaderParallelIterable<TT;>;
            0    2     1  delegate  Lorg/eclipse/collections/api/ParallelIterable<TT;>;
            0    2     2      lock  Ljava/util/concurrent/locks/ReadWriteLock;
    Signature: (Lorg/eclipse/collections/api/ParallelIterable<TT;>;Ljava/util/concurrent/locks/ReadWriteLock;)V
    MethodParameters:
          Name  Flags
      delegate  
      lock      

  public org.eclipse.collections.api.ParallelIterable<T> asUnique();
    descriptor: ()Lorg/eclipse/collections/api/ParallelIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
         0: .line 34
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.delegate:Lorg/eclipse/collections/api/ParallelIterable;
            invokeinterface org.eclipse.collections.api.ParallelIterable.asUnique:()Lorg/eclipse/collections/api/ParallelIterable;
            invokevirtual org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.wrap:(Lorg/eclipse/collections/api/ParallelIterable;)Lorg/eclipse/collections/api/ParallelIterable;
            areturn
        end local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/parallel/MultiReaderParallelIterable<TT;>;
    Signature: ()Lorg/eclipse/collections/api/ParallelIterable<TT;>;

  public org.eclipse.collections.api.ParallelIterable<T> select(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ParallelIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 40
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.delegate:Lorg/eclipse/collections/api/ParallelIterable;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.ParallelIterable.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ParallelIterable;
            invokevirtual org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.wrap:(Lorg/eclipse/collections/api/ParallelIterable;)Lorg/eclipse/collections/api/ParallelIterable;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/parallel/MultiReaderParallelIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/ParallelIterable<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> org.eclipse.collections.api.ParallelIterable<T> selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ParallelIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 46
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.delegate:Lorg/eclipse/collections/api/ParallelIterable;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.ParallelIterable.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ParallelIterable;
            invokevirtual org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.wrap:(Lorg/eclipse/collections/api/ParallelIterable;)Lorg/eclipse/collections/api/ParallelIterable;
            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.lazy.parallel.MultiReaderParallelIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/parallel/MultiReaderParallelIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Lorg/eclipse/collections/api/ParallelIterable<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public org.eclipse.collections.api.ParallelIterable<T> reject(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ParallelIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 52
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.delegate:Lorg/eclipse/collections/api/ParallelIterable;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.ParallelIterable.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ParallelIterable;
            invokevirtual org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.wrap:(Lorg/eclipse/collections/api/ParallelIterable;)Lorg/eclipse/collections/api/ParallelIterable;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/parallel/MultiReaderParallelIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/ParallelIterable<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> org.eclipse.collections.api.ParallelIterable<T> rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ParallelIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 58
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.delegate:Lorg/eclipse/collections/api/ParallelIterable;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.ParallelIterable.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ParallelIterable;
            invokevirtual org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.wrap:(Lorg/eclipse/collections/api/ParallelIterable;)Lorg/eclipse/collections/api/ParallelIterable;
            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.lazy.parallel.MultiReaderParallelIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/parallel/MultiReaderParallelIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Lorg/eclipse/collections/api/ParallelIterable<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <S> org.eclipse.collections.api.ParallelIterable<S> selectInstancesOf(java.lang.Class<S>);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/ParallelIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
        start local 1 // java.lang.Class clazz
         0: .line 64
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.delegate:Lorg/eclipse/collections/api/ParallelIterable;
            aload 1 /* clazz */
            invokeinterface org.eclipse.collections.api.ParallelIterable.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/ParallelIterable;
            invokevirtual org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.wrap:(Lorg/eclipse/collections/api/ParallelIterable;)Lorg/eclipse/collections/api/ParallelIterable;
            areturn
        end local 1 // java.lang.Class clazz
        end local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/lazy/parallel/MultiReaderParallelIterable<TT;>;
            0    1     1  clazz  Ljava/lang/Class<TS;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Class<TS;>;)Lorg/eclipse/collections/api/ParallelIterable<TS;>;
    MethodParameters:
       Name  Flags
      clazz  

  public <V> org.eclipse.collections.api.ParallelIterable<V> collect(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ParallelIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 70
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.delegate:Lorg/eclipse/collections/api/ParallelIterable;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.ParallelIterable.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ParallelIterable;
            invokevirtual org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.wrap:(Lorg/eclipse/collections/api/ParallelIterable;)Lorg/eclipse/collections/api/ParallelIterable;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/lazy/parallel/MultiReaderParallelIterable<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/ParallelIterable<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <P, V> org.eclipse.collections.api.ParallelIterable<V> collectWith(org.eclipse.collections.api.block.function.Function2<? super T, ? super P, ? extends V>, P);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ParallelIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
        start local 2 // java.lang.Object parameter
         0: .line 76
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.delegate:Lorg/eclipse/collections/api/ParallelIterable;
            aload 1 /* function */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.ParallelIterable.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ParallelIterable;
            invokevirtual org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.wrap:(Lorg/eclipse/collections/api/ParallelIterable;)Lorg/eclipse/collections/api/ParallelIterable;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.function.Function2 function
        end local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/parallel/MultiReaderParallelIterable<TT;>;
            0    1     1   function  Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TV;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TV;>;TP;)Lorg/eclipse/collections/api/ParallelIterable<TV;>;
    MethodParameters:
           Name  Flags
      function   
      parameter  

  public <V> org.eclipse.collections.api.ParallelIterable<V> collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T>, org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ParallelIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function function
         0: .line 82
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.delegate:Lorg/eclipse/collections/api/ParallelIterable;
            aload 1 /* predicate */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.ParallelIterable.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ParallelIterable;
            invokevirtual org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.wrap:(Lorg/eclipse/collections/api/ParallelIterable;)Lorg/eclipse/collections/api/ParallelIterable;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/parallel/MultiReaderParallelIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    1     2   function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/ParallelIterable<TV;>;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  public <V> org.eclipse.collections.api.ParallelIterable<V> flatCollect(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ParallelIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 88
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.delegate:Lorg/eclipse/collections/api/ParallelIterable;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.ParallelIterable.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ParallelIterable;
            invokevirtual org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.wrap:(Lorg/eclipse/collections/api/ParallelIterable;)Lorg/eclipse/collections/api/ParallelIterable;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/lazy/parallel/MultiReaderParallelIterable<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;)Lorg/eclipse/collections/api/ParallelIterable<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <V> org.eclipse.collections.api.multimap.Multimap<V, T> groupBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 94
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.lock:Ljava/util/concurrent/locks/ReadWriteLock;
            invokeinterface java.util.concurrent.locks.ReadWriteLock.readLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 97
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.delegate:Lorg/eclipse/collections/api/ParallelIterable;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.ParallelIterable.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
            astore 3
         2: .line 101
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.lock:Ljava/util/concurrent/locks/ReadWriteLock;
            invokeinterface java.util.concurrent.locks.ReadWriteLock.readLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         3: .line 97
            aload 3
            areturn
         4: .line 100
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 2
         5: .line 101
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.lock:Ljava/util/concurrent/locks/ReadWriteLock;
            invokeinterface java.util.concurrent.locks.ReadWriteLock.readLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         6: .line 102
            aload 2
            athrow
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/eclipse/collections/impl/lazy/parallel/MultiReaderParallelIterable<TT;>;
            0    7     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
      Exception table:
        from    to  target  type
           1     2       4  any
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/multimap/Multimap<TV;TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <V> org.eclipse.collections.api.multimap.Multimap<V, T> groupByEach(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 108
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.lock:Ljava/util/concurrent/locks/ReadWriteLock;
            invokeinterface java.util.concurrent.locks.ReadWriteLock.readLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 111
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.delegate:Lorg/eclipse/collections/api/ParallelIterable;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.ParallelIterable.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
            astore 3
         2: .line 115
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.lock:Ljava/util/concurrent/locks/ReadWriteLock;
            invokeinterface java.util.concurrent.locks.ReadWriteLock.readLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         3: .line 111
            aload 3
            areturn
         4: .line 114
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 2
         5: .line 115
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable.lock:Ljava/util/concurrent/locks/ReadWriteLock;
            invokeinterface java.util.concurrent.locks.ReadWriteLock.readLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         6: .line 116
            aload 2
            athrow
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.lazy.parallel.MultiReaderParallelIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/eclipse/collections/impl/lazy/parallel/MultiReaderParallelIterable<TT;>;
            0    7     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
      Exception table:
        from    to  target  type
           1     2       4  any
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;)Lorg/eclipse/collections/api/multimap/Multimap<TV;TT;>;
    MethodParameters:
          Name  Flags
      function  
}
Signature: <T:Ljava/lang/Object;>Lorg/eclipse/collections/impl/lazy/parallel/AbstractMultiReaderParallelIterable<TT;Lorg/eclipse/collections/api/ParallelIterable<TT;>;>;
SourceFile: "MultiReaderParallelIterable.java"
    RuntimeInvisibleAnnotations: 
      org.eclipse.collections.api.annotation.Beta()