public final class org.eclipse.collections.impl.utility.internal.primitive.DoubleIteratorIterate
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.utility.internal.primitive.DoubleIteratorIterate
  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.utility.internal.primitive.DoubleIteratorIterate this
         0: .line 30
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 32
            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.utility.internal.primitive.DoubleIteratorIterate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/utility/internal/primitive/DoubleIteratorIterate;

  public static void forEach(org.eclipse.collections.api.iterator.DoubleIterator, org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure);
    descriptor: (Lorg/eclipse/collections/api/iterator/DoubleIterator;Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure
         0: .line 37
            goto 2
         1: .line 39
      StackMap locals:
      StackMap stack:
            aload 1 /* procedure */
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure.value:(D)V
         2: .line 37
      StackMap locals:
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 1
         3: .line 41
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure
        end local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0   iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
            0    4     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;
    MethodParameters:
           Name  Flags
      iterator   
      procedure  

  public static <R extends org.eclipse.collections.api.collection.primitive.MutableDoubleCollection> R select(org.eclipse.collections.api.iterator.DoubleIterator, org.eclipse.collections.api.block.predicate.primitive.DoublePredicate, );
    descriptor: (Lorg/eclipse/collections/api/iterator/DoubleIterator;Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection targetCollection
         0: .line 48
            goto 4
         1: .line 50
      StackMap locals:
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            dstore 3 /* item */
        start local 3 // double item
         2: .line 51
            aload 1 /* predicate */
            dload 3 /* item */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifeq 4
         3: .line 53
            aload 2 /* targetCollection */
            dload 3 /* item */
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableDoubleCollection.add:(D)Z
            pop
        end local 3 // double item
         4: .line 48
      StackMap locals:
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 1
         5: .line 56
            aload 2 /* targetCollection */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection targetCollection
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    6     0          iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
            0    6     1         predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            0    6     2  targetCollection  TR;
            2    4     3              item  D
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;>(Lorg/eclipse/collections/api/iterator/DoubleIterator;Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;TR;)TR;
    MethodParameters:
                  Name  Flags
      iterator          
      predicate         
      targetCollection  

  public static <R extends org.eclipse.collections.api.collection.primitive.MutableDoubleCollection> R reject(org.eclipse.collections.api.iterator.DoubleIterator, org.eclipse.collections.api.block.predicate.primitive.DoublePredicate, );
    descriptor: (Lorg/eclipse/collections/api/iterator/DoubleIterator;Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection targetCollection
         0: .line 64
            goto 4
         1: .line 66
      StackMap locals:
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            dstore 3 /* item */
        start local 3 // double item
         2: .line 67
            aload 1 /* predicate */
            dload 3 /* item */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifne 4
         3: .line 69
            aload 2 /* targetCollection */
            dload 3 /* item */
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableDoubleCollection.add:(D)Z
            pop
        end local 3 // double item
         4: .line 64
      StackMap locals:
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 1
         5: .line 72
            aload 2 /* targetCollection */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection targetCollection
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    6     0          iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
            0    6     1         predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            0    6     2  targetCollection  TR;
            2    4     3              item  D
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;>(Lorg/eclipse/collections/api/iterator/DoubleIterator;Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;TR;)TR;
    MethodParameters:
                  Name  Flags
      iterator          
      predicate         
      targetCollection  

  public static <V, R extends java.util.Collection<V>> R collect(org.eclipse.collections.api.iterator.DoubleIterator, org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction<? extends V>, );
    descriptor: (Lorg/eclipse/collections/api/iterator/DoubleIterator;Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction function
        start local 2 // java.util.Collection targetCollection
         0: .line 80
            goto 3
         1: .line 82
      StackMap locals:
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            dstore 3 /* item */
        start local 3 // double item
         2: .line 83
            aload 2 /* targetCollection */
            aload 1 /* function */
            dload 3 /* item */
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction.valueOf:(D)Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
        end local 3 // double item
         3: .line 80
      StackMap locals:
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 1
         4: .line 85
            aload 2 /* targetCollection */
            areturn
        end local 2 // java.util.Collection targetCollection
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction function
        end local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    5     0          iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
            0    5     1          function  Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction<+TV;>;
            0    5     2  targetCollection  TR;
            2    3     3              item  D
    Signature: <V:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/iterator/DoubleIterator;Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction<+TV;>;TR;)TR;
    MethodParameters:
                  Name  Flags
      iterator          
      function          
      targetCollection  

  public static double detectIfNone(org.eclipse.collections.api.iterator.DoubleIterator, org.eclipse.collections.api.block.predicate.primitive.DoublePredicate, double);
    descriptor: (Lorg/eclipse/collections/api/iterator/DoubleIterator;Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        start local 2 // double ifNone
         0: .line 90
            goto 4
         1: .line 92
      StackMap locals:
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            dstore 4 /* item */
        start local 4 // double item
         2: .line 93
            aload 1 /* predicate */
            dload 4 /* item */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifeq 4
         3: .line 95
            dload 4 /* item */
            dreturn
        end local 4 // double item
         4: .line 90
      StackMap locals:
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 1
         5: .line 98
            dload 2 /* ifNone */
            dreturn
        end local 2 // double ifNone
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0   iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
            0    6     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            0    6     2     ifNone  D
            2    4     4       item  D
    MethodParameters:
           Name  Flags
      iterator   
      predicate  
      ifNone     

  public static int count(org.eclipse.collections.api.iterator.DoubleIterator, org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/iterator/DoubleIterator;Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
         0: .line 103
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         1: .line 104
            goto 4
         2: .line 106
      StackMap locals: int
      StackMap stack:
            aload 1 /* predicate */
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifeq 4
         3: .line 108
            iinc 2 /* count */ 1
         4: .line 104
      StackMap locals:
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 2
         5: .line 111
            iload 2 /* count */
            ireturn
        end local 2 // int count
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0   iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
            0    6     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            1    6     2      count  I
    MethodParameters:
           Name  Flags
      iterator   
      predicate  

  public static boolean anySatisfy(org.eclipse.collections.api.iterator.DoubleIterator, org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/iterator/DoubleIterator;Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
         0: .line 116
            goto 3
         1: .line 118
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifeq 3
         2: .line 120
            iconst_1
            ireturn
         3: .line 116
      StackMap locals:
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 1
         4: .line 123
            iconst_0
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0   iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    MethodParameters:
           Name  Flags
      iterator   
      predicate  

  public static boolean allSatisfy(org.eclipse.collections.api.iterator.DoubleIterator, org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/iterator/DoubleIterator;Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
         0: .line 128
            goto 3
         1: .line 130
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifne 3
         2: .line 132
            iconst_0
            ireturn
         3: .line 128
      StackMap locals:
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 1
         4: .line 135
            iconst_1
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0   iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    MethodParameters:
           Name  Flags
      iterator   
      predicate  

  public static boolean noneSatisfy(org.eclipse.collections.api.iterator.DoubleIterator, org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/iterator/DoubleIterator;Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
         0: .line 140
            goto 3
         1: .line 142
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifeq 3
         2: .line 144
            iconst_0
            ireturn
         3: .line 140
      StackMap locals:
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 1
         4: .line 147
            iconst_1
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0   iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    MethodParameters:
           Name  Flags
      iterator   
      predicate  

  public static <T> T injectInto(org.eclipse.collections.api.iterator.DoubleIterator, T, org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction<? super T, ? extends T>);
    descriptor: (Lorg/eclipse/collections/api/iterator/DoubleIterator;Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectDoubleToObjectFunction;)Ljava/lang/Object;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction function
         0: .line 152
            aload 1 /* injectedValue */
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 153
            goto 3
         2: .line 155
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* function */
            aload 3 /* result */
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction.valueOf:(Ljava/lang/Object;D)Ljava/lang/Object;
            astore 3 /* result */
         3: .line 153
      StackMap locals:
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 2
         4: .line 157
            aload 3 /* result */
            areturn
        end local 3 // java.lang.Object result
        end local 2 // org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0       iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
            0    5     1  injectedValue  TT;
            0    5     2       function  Lorg/eclipse/collections/api/block/function/primitive/ObjectDoubleToObjectFunction<-TT;+TT;>;
            1    5     3         result  TT;
    Signature: <T:Ljava/lang/Object;>(Lorg/eclipse/collections/api/iterator/DoubleIterator;TT;Lorg/eclipse/collections/api/block/function/primitive/ObjectDoubleToObjectFunction<-TT;+TT;>;)TT;
    MethodParameters:
               Name  Flags
      iterator       
      injectedValue  
      function       

  public static double sum(org.eclipse.collections.api.iterator.DoubleIterator);
    descriptor: (Lorg/eclipse/collections/api/iterator/DoubleIterator;)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
         0: .line 162
            dconst_0
            dstore 1 /* sum */
        start local 1 // double sum
         1: .line 163
            goto 3
         2: .line 165
      StackMap locals: double
      StackMap stack:
            dload 1 /* sum */
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            dadd
            dstore 1 /* sum */
         3: .line 163
      StackMap locals:
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 2
         4: .line 167
            dload 1 /* sum */
            dreturn
        end local 1 // double sum
        end local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0  iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
            1    5     1       sum  D
    MethodParameters:
          Name  Flags
      iterator  

  public static double max(org.eclipse.collections.api.iterator.DoubleIterator);
    descriptor: (Lorg/eclipse/collections/api/iterator/DoubleIterator;)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
         0: .line 172
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            dstore 1 /* max */
        start local 1 // double max
         1: .line 173
            goto 5
         2: .line 175
      StackMap locals: double
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            dstore 3 /* next */
        start local 3 // double next
         3: .line 176
            dload 1 /* max */
            dload 3 /* next */
            invokestatic java.lang.Double.compare:(DD)I
            ifge 5
         4: .line 178
            dload 3 /* next */
            dstore 1 /* max */
        end local 3 // double next
         5: .line 173
      StackMap locals:
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 2
         6: .line 181
            dload 1 /* max */
            dreturn
        end local 1 // double max
        end local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0  iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
            1    7     1       max  D
            3    5     3      next  D
    MethodParameters:
          Name  Flags
      iterator  

  public static double min(org.eclipse.collections.api.iterator.DoubleIterator);
    descriptor: (Lorg/eclipse/collections/api/iterator/DoubleIterator;)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
         0: .line 186
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            dstore 1 /* min */
        start local 1 // double min
         1: .line 187
            goto 5
         2: .line 189
      StackMap locals: double
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            dstore 3 /* next */
        start local 3 // double next
         3: .line 190
            dload 3 /* next */
            dload 1 /* min */
            invokestatic java.lang.Double.compare:(DD)I
            ifge 5
         4: .line 192
            dload 3 /* next */
            dstore 1 /* min */
        end local 3 // double next
         5: .line 187
      StackMap locals:
      StackMap stack:
            aload 0 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 2
         6: .line 195
            dload 1 /* min */
            dreturn
        end local 1 // double min
        end local 0 // org.eclipse.collections.api.iterator.DoubleIterator iterator
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0  iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
            1    7     1       min  D
            3    5     3      next  D
    MethodParameters:
          Name  Flags
      iterator  
}
SourceFile: "DoubleIteratorIterate.java"