public final class org.eclipse.collections.impl.parallel.ParallelArrayIterate
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.parallel.ParallelArrayIterate
  super_class: java.lang.Object
{
  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.parallel.ParallelArrayIterate this
         0: .line 27
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 29
            new java.lang.AssertionError
            dup
            ldc "Suppress default constructor for noninstantiability"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 0 // org.eclipse.collections.impl.parallel.ParallelArrayIterate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/parallel/ParallelArrayIterate;

  public static <T, BT extends org.eclipse.collections.api.block.procedure.Procedure<? super T>> void forEach(T[], org.eclipse.collections.impl.parallel.ProcedureFactory<BT>, org.eclipse.collections.impl.parallel.Combiner<BT>);
    descriptor: ([Ljava/lang/Object;Lorg/eclipse/collections/impl/parallel/ProcedureFactory;Lorg/eclipse/collections/impl/parallel/Combiner;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // java.lang.Object[] array
        start local 1 // org.eclipse.collections.impl.parallel.ProcedureFactory procedureFactory
        start local 2 // org.eclipse.collections.impl.parallel.Combiner combiner
         0: .line 37
            getstatic org.eclipse.collections.impl.parallel.ParallelIterate.DEFAULT_PARALLEL_TASK_COUNT:I
            aload 0 /* array */
            arraylength
            sipush 10000
            idiv
            invokestatic java.lang.Math.max:(II)I
            istore 3 /* taskCount */
        start local 3 // int taskCount
         1: .line 38
            aload 0 /* array */
            aload 1 /* procedureFactory */
            aload 2 /* combiner */
            sipush 10000
            iload 3 /* taskCount */
            invokestatic org.eclipse.collections.impl.parallel.ParallelArrayIterate.forEach:([Ljava/lang/Object;Lorg/eclipse/collections/impl/parallel/ProcedureFactory;Lorg/eclipse/collections/impl/parallel/Combiner;II)V
         2: .line 39
            return
        end local 3 // int taskCount
        end local 2 // org.eclipse.collections.impl.parallel.Combiner combiner
        end local 1 // org.eclipse.collections.impl.parallel.ProcedureFactory procedureFactory
        end local 0 // java.lang.Object[] array
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    3     0             array  [Ljava/lang/Object;
            0    3     1  procedureFactory  Lorg/eclipse/collections/impl/parallel/ProcedureFactory<TBT;>;
            0    3     2          combiner  Lorg/eclipse/collections/impl/parallel/Combiner<TBT;>;
            1    3     3         taskCount  I
    Signature: <T:Ljava/lang/Object;BT::Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;>([TT;Lorg/eclipse/collections/impl/parallel/ProcedureFactory<TBT;>;Lorg/eclipse/collections/impl/parallel/Combiner<TBT;>;)V
    MethodParameters:
                  Name  Flags
      array             
      procedureFactory  
      combiner          

  public static <T, BT extends org.eclipse.collections.api.block.procedure.Procedure<? super T>> void forEach(T[], org.eclipse.collections.impl.parallel.ProcedureFactory<BT>, org.eclipse.collections.impl.parallel.Combiner<BT>, int, );
    descriptor: ([Ljava/lang/Object;Lorg/eclipse/collections/impl/parallel/ProcedureFactory;Lorg/eclipse/collections/impl/parallel/Combiner;II)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // java.lang.Object[] array
        start local 1 // org.eclipse.collections.impl.parallel.ProcedureFactory procedureFactory
        start local 2 // org.eclipse.collections.impl.parallel.Combiner combiner
        start local 3 // int minForkSize
        start local 4 // int taskCount
         0: .line 48
            aload 0 /* array */
            aload 1 /* procedureFactory */
            aload 2 /* combiner */
            iload 3 /* minForkSize */
            iload 4 /* taskCount */
            getstatic org.eclipse.collections.impl.parallel.ParallelIterate.EXECUTOR_SERVICE:Ljava/util/concurrent/ExecutorService;
            invokestatic org.eclipse.collections.impl.parallel.ParallelArrayIterate.forEachOn:([Ljava/lang/Object;Lorg/eclipse/collections/impl/parallel/ProcedureFactory;Lorg/eclipse/collections/impl/parallel/Combiner;IILjava/util/concurrent/Executor;)V
         1: .line 49
            return
        end local 4 // int taskCount
        end local 3 // int minForkSize
        end local 2 // org.eclipse.collections.impl.parallel.Combiner combiner
        end local 1 // org.eclipse.collections.impl.parallel.ProcedureFactory procedureFactory
        end local 0 // java.lang.Object[] array
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0             array  [Ljava/lang/Object;
            0    2     1  procedureFactory  Lorg/eclipse/collections/impl/parallel/ProcedureFactory<TBT;>;
            0    2     2          combiner  Lorg/eclipse/collections/impl/parallel/Combiner<TBT;>;
            0    2     3       minForkSize  I
            0    2     4         taskCount  I
    Signature: <T:Ljava/lang/Object;BT::Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;>([TT;Lorg/eclipse/collections/impl/parallel/ProcedureFactory<TBT;>;Lorg/eclipse/collections/impl/parallel/Combiner<TBT;>;II)V
    MethodParameters:
                  Name  Flags
      array             
      procedureFactory  
      combiner          
      minForkSize       
      taskCount         

  public static <T, BT extends org.eclipse.collections.api.block.procedure.Procedure<? super T>> void forEachOn(T[], org.eclipse.collections.impl.parallel.ProcedureFactory<BT>, org.eclipse.collections.impl.parallel.Combiner<BT>, int, int, java.util.concurrent.Executor);
    descriptor: ([Ljava/lang/Object;Lorg/eclipse/collections/impl/parallel/ProcedureFactory;Lorg/eclipse/collections/impl/parallel/Combiner;IILjava/util/concurrent/Executor;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=8, args_size=6
        start local 0 // java.lang.Object[] array
        start local 1 // org.eclipse.collections.impl.parallel.ProcedureFactory procedureFactory
        start local 2 // org.eclipse.collections.impl.parallel.Combiner combiner
        start local 3 // int minForkSize
        start local 4 // int taskCount
        start local 5 // java.util.concurrent.Executor executor
         0: .line 59
            aload 0 /* array */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.notEmpty:([Ljava/lang/Object;)Z
            ifeq 9
         1: .line 61
            aload 0 /* array */
            arraylength
            istore 6 /* size */
        start local 6 // int size
         2: .line 62
            iload 6 /* size */
            iload 3 /* minForkSize */
            if_icmpge 7
         3: .line 64
            aload 1 /* procedureFactory */
            invokeinterface org.eclipse.collections.impl.parallel.ProcedureFactory.create:()Lorg/eclipse/collections/api/block/procedure/Procedure;
            astore 7 /* procedure */
        start local 7 // org.eclipse.collections.api.block.procedure.Procedure procedure
         4: .line 65
            aload 0 /* array */
            aload 7 /* procedure */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.forEach:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         5: .line 66
            aload 2 /* combiner */
            aload 7 /* procedure */
            invokestatic org.eclipse.collections.impl.parallel.ParallelArrayIterate.combineSingleProcedure:(Lorg/eclipse/collections/impl/parallel/Combiner;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
        end local 7 // org.eclipse.collections.api.block.procedure.Procedure procedure
         6: .line 67
            goto 9
         7: .line 70
      StackMap locals: int
      StackMap stack:
            iload 6 /* size */
            iload 4 /* taskCount */
            invokestatic java.lang.Math.min:(II)I
            istore 7 /* threadCount */
        start local 7 // int threadCount
         8: .line 71
            new org.eclipse.collections.impl.parallel.ArrayProcedureFJTaskRunner
            dup
            aload 2 /* combiner */
            iload 7 /* threadCount */
            invokespecial org.eclipse.collections.impl.parallel.ArrayProcedureFJTaskRunner.<init>:(Lorg/eclipse/collections/impl/parallel/Combiner;I)V
            aload 5 /* executor */
            aload 1 /* procedureFactory */
            aload 0 /* array */
            invokevirtual org.eclipse.collections.impl.parallel.ArrayProcedureFJTaskRunner.executeAndCombine:(Ljava/util/concurrent/Executor;Lorg/eclipse/collections/impl/parallel/ProcedureFactory;[Ljava/lang/Object;)V
        end local 7 // int threadCount
        end local 6 // int size
         9: .line 74
      StackMap locals:
      StackMap stack:
            return
        end local 5 // java.util.concurrent.Executor executor
        end local 4 // int taskCount
        end local 3 // int minForkSize
        end local 2 // org.eclipse.collections.impl.parallel.Combiner combiner
        end local 1 // org.eclipse.collections.impl.parallel.ProcedureFactory procedureFactory
        end local 0 // java.lang.Object[] array
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   10     0             array  [Ljava/lang/Object;
            0   10     1  procedureFactory  Lorg/eclipse/collections/impl/parallel/ProcedureFactory<TBT;>;
            0   10     2          combiner  Lorg/eclipse/collections/impl/parallel/Combiner<TBT;>;
            0   10     3       minForkSize  I
            0   10     4         taskCount  I
            0   10     5          executor  Ljava/util/concurrent/Executor;
            2    9     6              size  I
            4    6     7         procedure  TBT;
            8    9     7       threadCount  I
    Signature: <T:Ljava/lang/Object;BT::Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;>([TT;Lorg/eclipse/collections/impl/parallel/ProcedureFactory<TBT;>;Lorg/eclipse/collections/impl/parallel/Combiner<TBT;>;IILjava/util/concurrent/Executor;)V
    MethodParameters:
                  Name  Flags
      array             
      procedureFactory  
      combiner          
      minForkSize       
      taskCount         
      executor          

  private static <T, BT extends org.eclipse.collections.api.block.procedure.Procedure<? super T>> void combineSingleProcedure(org.eclipse.collections.impl.parallel.Combiner<BT>, );
    descriptor: (Lorg/eclipse/collections/impl/parallel/Combiner;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.parallel.Combiner combiner
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 78
            aload 0 /* combiner */
            invokeinterface org.eclipse.collections.impl.parallel.Combiner.useCombineOne:()Z
            ifeq 3
         1: .line 80
            aload 0 /* combiner */
            aload 1 /* procedure */
            invokeinterface org.eclipse.collections.impl.parallel.Combiner.combineOne:(Ljava/lang/Object;)V
         2: .line 81
            goto 4
         3: .line 84
      StackMap locals:
      StackMap stack:
            aload 0 /* combiner */
            aload 1 /* procedure */
            invokestatic org.eclipse.collections.impl.factory.Iterables.iList:(Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
            invokeinterface org.eclipse.collections.impl.parallel.Combiner.combineAll:(Ljava/lang/Iterable;)V
         4: .line 86
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.parallel.Combiner combiner
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0   combiner  Lorg/eclipse/collections/impl/parallel/Combiner<TBT;>;
            0    5     1  procedure  TBT;
    Signature: <T:Ljava/lang/Object;BT::Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;>(Lorg/eclipse/collections/impl/parallel/Combiner<TBT;>;TBT;)V
    MethodParameters:
           Name  Flags
      combiner   
      procedure  
}
SourceFile: "ParallelArrayIterate.java"