class at.yawk.numaec.DoubleBufferListImpl extends org.eclipse.collections.impl.primitive.AbstractDoubleIterable implements at.yawk.numaec.DoubleBufferList
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: at.yawk.numaec.DoubleBufferListImpl
  super_class: org.eclipse.collections.impl.primitive.AbstractDoubleIterable
{
  private static final int INITIAL_CAPACITY;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  final at.yawk.numaec.LargeByteBufferAllocator allocator;
    descriptor: Lat/yawk/numaec/LargeByteBufferAllocator;
    flags: (0x0010) ACC_FINAL

  at.yawk.numaec.LargeByteBuffer buffer;
    descriptor: Lat/yawk/numaec/LargeByteBuffer;
    flags: (0x0000) 

  int size;
    descriptor: I
    flags: (0x0000) 

  void <init>(at.yawk.numaec.LargeByteBufferAllocator);
    descriptor: (Lat/yawk/numaec/LargeByteBufferAllocator;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // at.yawk.numaec.LargeByteBufferAllocator allocator
         0: .line 36
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.primitive.AbstractDoubleIterable.<init>:()V
         1: .line 37
            aload 0 /* this */
            aload 1 /* allocator */
            putfield at.yawk.numaec.DoubleBufferListImpl.allocator:Lat/yawk/numaec/LargeByteBufferAllocator;
         2: .line 38
            aload 0 /* this */
            getstatic at.yawk.numaec.LargeByteBuffer.EMPTY:Lat/yawk/numaec/LargeByteBuffer;
            putfield at.yawk.numaec.DoubleBufferListImpl.buffer:Lat/yawk/numaec/LargeByteBuffer;
         3: .line 39
            return
        end local 1 // at.yawk.numaec.LargeByteBufferAllocator allocator
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    4     1  allocator  Lat/yawk/numaec/LargeByteBufferAllocator;
    MethodParameters:
           Name  Flags
      allocator  

  void <init>(at.yawk.numaec.LargeByteBufferAllocator, int);
    descriptor: (Lat/yawk/numaec/LargeByteBufferAllocator;I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // at.yawk.numaec.LargeByteBufferAllocator allocator
        start local 2 // int initialCapacity
         0: .line 41
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.primitive.AbstractDoubleIterable.<init>:()V
         1: .line 42
            aload 0 /* this */
            aload 1 /* allocator */
            putfield at.yawk.numaec.DoubleBufferListImpl.allocator:Lat/yawk/numaec/LargeByteBufferAllocator;
         2: .line 43
            aload 0 /* this */
            aload 1 /* allocator */
            aload 0 /* this */
            iload 2 /* initialCapacity */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.scale:(I)J
            invokeinterface at.yawk.numaec.LargeByteBufferAllocator.allocate:(J)Lat/yawk/numaec/LargeByteBuffer;
            putfield at.yawk.numaec.DoubleBufferListImpl.buffer:Lat/yawk/numaec/LargeByteBuffer;
         3: .line 44
            return
        end local 2 // int initialCapacity
        end local 1 // at.yawk.numaec.LargeByteBufferAllocator allocator
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    4     1        allocator  Lat/yawk/numaec/LargeByteBufferAllocator;
            0    4     2  initialCapacity  I
    MethodParameters:
                 Name  Flags
      allocator        
      initialCapacity  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
         0: .line 48
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.buffer:Lat/yawk/numaec/LargeByteBuffer;
            invokeinterface at.yawk.numaec.LargeByteBuffer.close:()V
         1: .line 49
            aload 0 /* this */
            aconst_null
            putfield at.yawk.numaec.DoubleBufferListImpl.buffer:Lat/yawk/numaec/LargeByteBuffer;
         2: .line 50
            return
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lat/yawk/numaec/DoubleBufferListImpl;

  protected long scale(int);
    descriptor: (I)J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // int index
         0: .line 53
            iload 1 /* index */
            i2l
            ldc 8
            lmul
            lreturn
        end local 1 // int index
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public org.eclipse.collections.api.iterator.DoubleIterator doubleIterator();
    descriptor: ()Lorg/eclipse/collections/api/iterator/DoubleIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
         0: .line 58
            new at.yawk.numaec.DoubleBufferListImpl$Itr
            dup
            aload 0 /* this */
            invokespecial at.yawk.numaec.DoubleBufferListImpl$Itr.<init>:(Lat/yawk/numaec/DoubleBufferListImpl;)V
            areturn
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lat/yawk/numaec/DoubleBufferListImpl;

  public double[] toArray();
    descriptor: ()[D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
         0: .line 63
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            newarray 7
            astore 1 /* array */
        start local 1 // double[] array
         1: .line 64
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 65
      StackMap locals: double[] int
      StackMap stack:
            aload 1 /* array */
            iload 2 /* i */
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            dastore
         4: .line 64
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmplt 3
        end local 2 // int i
         6: .line 67
            aload 1 /* array */
            areturn
        end local 1 // double[] array
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lat/yawk/numaec/DoubleBufferListImpl;
            1    7     1  array  [D
            2    6     2      i  I

  public boolean contains(double);
    descriptor: (D)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // double value
         0: .line 72
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 5
         2: .line 73
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            dload 1 /* value */
            dcmpl
            ifne 4
         3: .line 74
            iconst_1
            ireturn
         4: .line 72
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmplt 2
        end local 3 // int i
         6: .line 77
            iconst_0
            ireturn
        end local 1 // double value
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    7     1  value  D
            1    6     3      i  I
    MethodParameters:
       Name  Flags
      value  

  public void forEach(org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure
         0: .line 82
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 4
         2: .line 83
      StackMap locals: int
      StackMap stack:
            aload 1 /* procedure */
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure.value:(D)V
         3: .line 82
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 2 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmplt 2
        end local 2 // int i
         5: .line 85
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    6     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;
            1    5     2          i  I
    MethodParameters:
           Name  Flags
      procedure  

  public void each(org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure
         0: .line 89
            aload 0 /* this */
            aload 1 /* procedure */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.forEach:(Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;)V
         1: .line 90
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;
    MethodParameters:
           Name  Flags
      procedure  

  public double get(int);
    descriptor: (I)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // int index
         0: .line 94
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmplt 2
         1: .line 95
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 97
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.scale:(I)J
            invokeinterface at.yawk.numaec.LargeByteBuffer.getDouble:(J)D
            dreturn
        end local 1 // int index
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    3     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public double dotProduct(org.eclipse.collections.api.list.primitive.DoubleList);
    descriptor: (Lorg/eclipse/collections/api/list/primitive/DoubleList;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // org.eclipse.collections.api.list.primitive.DoubleList list
         0: .line 105
            dconst_0
            dstore 2 /* sum */
        start local 2 // double sum
         1: .line 106
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         2: .line 107
            aload 1 /* list */
            invokeinterface org.eclipse.collections.api.list.primitive.DoubleList.doubleIterator:()Lorg/eclipse/collections/api/iterator/DoubleIterator;
            astore 5 /* itr */
        start local 5 // org.eclipse.collections.api.iterator.DoubleIterator itr
         3: .line 108
            goto 5
         4: .line 109
      StackMap locals: double int org.eclipse.collections.api.iterator.DoubleIterator
      StackMap stack:
            dload 2 /* sum */
            aload 0 /* this */
            iload 4 /* i */
            iinc 4 /* i */ 1
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            aload 5 /* itr */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            dmul
            dadd
            dstore 2 /* sum */
         5: .line 108
      StackMap locals:
      StackMap stack:
            iload 4 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmpge 6
            aload 5 /* itr */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 4
         6: .line 111
      StackMap locals:
      StackMap stack:
            aload 5 /* itr */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 7
            iload 4 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmpge 8
         7: .line 112
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Size mismatch"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 114
      StackMap locals:
      StackMap stack:
            dload 2 /* sum */
            dreturn
        end local 5 // org.eclipse.collections.api.iterator.DoubleIterator itr
        end local 4 // int i
        end local 2 // double sum
        end local 1 // org.eclipse.collections.api.list.primitive.DoubleList list
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    9     1  list  Lorg/eclipse/collections/api/list/primitive/DoubleList;
            1    9     2   sum  D
            2    9     4     i  I
            3    9     5   itr  Lorg/eclipse/collections/api/iterator/DoubleIterator;
    MethodParameters:
      Name  Flags
      list  

  public int binarySearch(double);
    descriptor: (D)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // double value
         0: .line 119
            iconst_0
            istore 3 /* low */
        start local 3 // int low
         1: .line 120
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            iconst_1
            isub
            istore 4 /* high */
        start local 4 // int high
         2: .line 121
            goto 12
         3: .line 122
      StackMap locals: int int
      StackMap stack:
            iload 3 /* low */
            iload 4 /* high */
            iadd
            iconst_2
            idiv
            istore 5 /* mid */
        start local 5 // int mid
         4: .line 123
            aload 0 /* this */
            iload 5 /* mid */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            dstore 6 /* pivot */
        start local 6 // double pivot
         5: .line 124
            dload 6 /* pivot */
            dload 1 /* value */
            dcmpg
            ifge 8
         6: .line 125
            iload 5 /* mid */
            iconst_1
            iadd
            istore 3 /* low */
         7: .line 126
            goto 12
      StackMap locals: int double
      StackMap stack:
         8: dload 6 /* pivot */
            dload 1 /* value */
            dcmpl
            ifle 11
         9: .line 127
            iload 5 /* mid */
            iconst_1
            isub
            istore 4 /* high */
        10: .line 128
            goto 12
        11: .line 129
      StackMap locals:
      StackMap stack:
            iload 5 /* mid */
            ireturn
        end local 6 // double pivot
        end local 5 // int mid
        12: .line 121
      StackMap locals:
      StackMap stack:
            iload 3 /* low */
            iload 4 /* high */
            if_icmple 3
        13: .line 132
            iload 3 /* low */
            iconst_m1
            ixor
            ireturn
        end local 4 // int high
        end local 3 // int low
        end local 1 // double value
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lat/yawk/numaec/DoubleBufferListImpl;
            0   14     1  value  D
            1   14     3    low  I
            2   14     4   high  I
            4   12     5    mid  I
            5   12     6  pivot  D
    MethodParameters:
       Name  Flags
      value  

  public int indexOf(double);
    descriptor: (D)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // double value
         0: .line 137
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 5
         2: .line 138
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            dload 1 /* value */
            dcmpl
            ifne 4
         3: .line 139
            iload 3 /* i */
            ireturn
         4: .line 137
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmplt 2
        end local 3 // int i
         6: .line 142
            iconst_m1
            ireturn
        end local 1 // double value
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    7     1  value  D
            1    6     3      i  I
    MethodParameters:
       Name  Flags
      value  

  public int lastIndexOf(double);
    descriptor: (D)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // double value
         0: .line 147
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            iconst_1
            isub
            istore 3 /* i */
        start local 3 // int i
         1: goto 5
         2: .line 148
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            dload 1 /* value */
            dcmpl
            ifne 4
         3: .line 149
            iload 3 /* i */
            ireturn
         4: .line 147
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ -1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            ifge 2
        end local 3 // int i
         6: .line 152
            iconst_m1
            ireturn
        end local 1 // double value
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    7     1  value  D
            1    6     3      i  I
    MethodParameters:
       Name  Flags
      value  

  public double getLast();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
         0: .line 157
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            iconst_1
            isub
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            dreturn
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lat/yawk/numaec/DoubleBufferListImpl;

  public org.eclipse.collections.api.LazyDoubleIterable asReversed();
    descriptor: ()Lorg/eclipse/collections/api/LazyDoubleIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
         0: .line 162
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.lazy.primitive.ReverseDoubleIterable.adapt:(Lorg/eclipse/collections/api/list/primitive/DoubleList;)Lorg/eclipse/collections/impl/lazy/primitive/ReverseDoubleIterable;
            areturn
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lat/yawk/numaec/DoubleBufferListImpl;

  public double getFirst();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
         0: .line 167
            aload 0 /* this */
            iconst_0
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            dreturn
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lat/yawk/numaec/DoubleBufferListImpl;

  public org.eclipse.collections.api.list.primitive.DoubleList select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/list/primitive/DoubleList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
         0: .line 172
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.list.primitive.DoubleList reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/list/primitive/DoubleList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
         0: .line 177
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public <V> org.eclipse.collections.api.list.ListIterable<V> collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/list/ListIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction function
         0: .line 182
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction function
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction<+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction<+TV;>;)Lorg/eclipse/collections/api/list/ListIterable<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public double detectIfNone(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate, double);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        start local 2 // double ifNone
         0: .line 187
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         1: goto 6
         2: .line 188
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            dstore 5 /* element */
        start local 5 // double element
         3: .line 189
            aload 1 /* predicate */
            dload 5 /* element */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifeq 5
         4: .line 190
            dload 5 /* element */
            dreturn
        end local 5 // double element
         5: .line 187
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 4 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmplt 2
        end local 4 // int i
         7: .line 193
            dload 2 /* ifNone */
            dreturn
        end local 2 // double ifNone
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    8     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            0    8     2     ifNone  D
            1    7     4          i  I
            3    5     5    element  D
    MethodParameters:
           Name  Flags
      predicate  
      ifNone     

  public int count(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
         0: .line 198
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         1: .line 199
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 6
         3: .line 200
      StackMap locals: int int
      StackMap stack:
            aload 1 /* predicate */
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifeq 5
         4: .line 201
            iinc 2 /* count */ 1
         5: .line 199
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmplt 3
        end local 3 // int i
         7: .line 204
            iload 2 /* count */
            ireturn
        end local 2 // int count
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    8     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            1    8     2      count  I
            2    7     3          i  I
    MethodParameters:
           Name  Flags
      predicate  

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
         0: .line 209
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 6
         2: .line 210
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            dstore 3 /* element */
        start local 3 // double element
         3: .line 211
            aload 1 /* predicate */
            dload 3 /* element */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifeq 5
         4: .line 212
            iconst_1
            ireturn
        end local 3 // double element
         5: .line 209
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmplt 2
        end local 2 // int i
         7: .line 215
            iconst_0
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    8     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            1    7     2          i  I
            3    5     3    element  D
    MethodParameters:
           Name  Flags
      predicate  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
         0: .line 220
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 6
         2: .line 221
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            dstore 3 /* element */
        start local 3 // double element
         3: .line 222
            aload 1 /* predicate */
            dload 3 /* element */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifne 5
         4: .line 223
            iconst_0
            ireturn
        end local 3 // double element
         5: .line 220
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmplt 2
        end local 2 // int i
         7: .line 226
            iconst_1
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    8     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            1    7     2          i  I
            3    5     3    element  D
    MethodParameters:
           Name  Flags
      predicate  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
         0: .line 231
            aload 0 /* this */
            aload 1 /* predicate */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.anySatisfy:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    3     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public <T> T injectInto(T, org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction<? super T, ? extends T>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectDoubleToObjectFunction;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction function
         0: .line 236
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 237
      StackMap locals: int
      StackMap stack:
            aload 2 /* function */
            aload 1 /* injectedValue */
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction.valueOf:(Ljava/lang/Object;D)Ljava/lang/Object;
            astore 1 /* injectedValue */
         3: .line 236
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 239
            aload 1 /* injectedValue */
            areturn
        end local 2 // org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction function
        end local 1 // java.lang.Object injectedValue
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    6     1  injectedValue  TT;
            0    6     2       function  Lorg/eclipse/collections/api/block/function/primitive/ObjectDoubleToObjectFunction<-TT;+TT;>;
            1    5     3              i  I
    Signature: <T:Ljava/lang/Object;>(TT;Lorg/eclipse/collections/api/block/function/primitive/ObjectDoubleToObjectFunction<-TT;+TT;>;)TT;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public <T> T injectIntoWithIndex(T, org.eclipse.collections.api.block.function.primitive.ObjectDoubleIntToObjectFunction<? super T, ? extends T>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectDoubleIntToObjectFunction;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.ObjectDoubleIntToObjectFunction function
         0: .line 244
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 245
      StackMap locals: int
      StackMap stack:
            aload 2 /* function */
            aload 1 /* injectedValue */
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            iload 3 /* i */
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectDoubleIntToObjectFunction.valueOf:(Ljava/lang/Object;DI)Ljava/lang/Object;
            astore 1 /* injectedValue */
         3: .line 244
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 247
            aload 1 /* injectedValue */
            areturn
        end local 2 // org.eclipse.collections.api.block.function.primitive.ObjectDoubleIntToObjectFunction function
        end local 1 // java.lang.Object injectedValue
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    6     1  injectedValue  TT;
            0    6     2       function  Lorg/eclipse/collections/api/block/function/primitive/ObjectDoubleIntToObjectFunction<-TT;+TT;>;
            1    5     3              i  I
    Signature: <T:Ljava/lang/Object;>(TT;Lorg/eclipse/collections/api/block/function/primitive/ObjectDoubleIntToObjectFunction<-TT;+TT;>;)TT;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public double sum();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
         0: .line 254
            dconst_0
            dstore 1 /* sum */
        start local 1 // double sum
         1: .line 255
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 256
      StackMap locals: double int
      StackMap stack:
            dload 1 /* sum */
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            dadd
            dstore 1 /* sum */
         4: .line 255
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmplt 3
        end local 3 // int i
         6: .line 258
            dload 1 /* sum */
            dreturn
        end local 1 // double sum
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lat/yawk/numaec/DoubleBufferListImpl;
            1    7     1   sum  D
            2    6     3     i  I

  public double max();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
         0: .line 263
            aload 0 /* this */
            iconst_0
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            dstore 1 /* max */
        start local 1 // double max
         1: .line 264
            iconst_1
            istore 3 /* i */
        start local 3 // int i
         2: goto 7
         3: .line 265
      StackMap locals: double int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            dstore 4 /* item */
        start local 4 // double item
         4: .line 266
            dload 4 /* item */
            dload 1 /* max */
            dcmpl
            ifle 6
         5: .line 267
            dload 4 /* item */
            dreturn
        end local 4 // double item
         6: .line 264
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmplt 3
        end local 3 // int i
         8: .line 270
            dload 1 /* max */
            dreturn
        end local 1 // double max
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lat/yawk/numaec/DoubleBufferListImpl;
            1    9     1   max  D
            2    8     3     i  I
            4    6     4  item  D

  public double min();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
         0: .line 275
            aload 0 /* this */
            iconst_0
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            dstore 1 /* min */
        start local 1 // double min
         1: .line 276
            iconst_1
            istore 3 /* i */
        start local 3 // int i
         2: goto 7
         3: .line 277
      StackMap locals: double int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            dstore 4 /* item */
        start local 4 // double item
         4: .line 278
            dload 4 /* item */
            dload 1 /* min */
            dcmpg
            ifge 6
         5: .line 279
            dload 4 /* item */
            dreturn
        end local 4 // double item
         6: .line 276
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmplt 3
        end local 3 // int i
         8: .line 282
            dload 1 /* min */
            dreturn
        end local 1 // double min
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lat/yawk/numaec/DoubleBufferListImpl;
            1    9     1   min  D
            2    8     3     i  I
            4    6     4  item  D

  public org.eclipse.collections.api.list.primitive.ImmutableDoubleList toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/list/primitive/ImmutableDoubleList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
         0: .line 287
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lat/yawk/numaec/DoubleBufferListImpl;

  public org.eclipse.collections.api.list.primitive.DoubleList distinct();
    descriptor: ()Lorg/eclipse/collections/api/list/primitive/DoubleList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
         0: .line 292
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lat/yawk/numaec/DoubleBufferListImpl;

  public void forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.DoubleIntProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/DoubleIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleIntProcedure procedure
         0: .line 297
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 4
         2: .line 298
      StackMap locals: int
      StackMap stack:
            aload 1 /* procedure */
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            iload 2 /* i */
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.DoubleIntProcedure.value:(DI)V
         3: .line 297
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 2 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmplt 2
        end local 2 // int i
         5: .line 300
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleIntProcedure procedure
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    6     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/DoubleIntProcedure;
            1    5     2          i  I
    MethodParameters:
           Name  Flags
      procedure  

  public org.eclipse.collections.api.list.primitive.DoubleList toReversed();
    descriptor: ()Lorg/eclipse/collections/api/list/primitive/DoubleList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
         0: .line 304
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lat/yawk/numaec/DoubleBufferListImpl;

  public org.eclipse.collections.api.list.primitive.DoubleList subList(int, int);
    descriptor: (II)Lorg/eclipse/collections/api/list/primitive/DoubleList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // int fromIndex
        start local 2 // int toIndex
         0: .line 309
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lat/yawk/numaec/DoubleBufferListImpl;
            0    1     1  fromIndex  I
            0    1     2    toIndex  I
    MethodParameters:
           Name  Flags
      fromIndex  
      toIndex    

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
         0: .line 314
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            ireturn
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lat/yawk/numaec/DoubleBufferListImpl;

  public java.util.Spliterator$OfDouble spliterator();
    descriptor: ()Ljava/util/Spliterator$OfDouble;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
         0: .line 319
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lat/yawk/numaec/DoubleBufferListImpl;

  public void appendString(java.lang.Appendable, java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=5
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // java.lang.Appendable appendable
        start local 2 // java.lang.String start
        start local 3 // java.lang.String separator
        start local 4 // java.lang.String end
         0: .line 325
            aload 1 /* appendable */
            aload 2 /* start */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         1: .line 326
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         2: goto 7
         3: .line 327
      StackMap locals: int
      StackMap stack:
            iload 5 /* i */
            ifeq 5
         4: .line 328
            aload 1 /* appendable */
            aload 3 /* separator */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         5: .line 330
      StackMap locals:
      StackMap stack:
            aload 1 /* appendable */
            aload 0 /* this */
            iload 5 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            invokestatic java.lang.String.valueOf:(D)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         6: .line 326
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 5 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.DoubleBufferListImpl.size:I
            if_icmplt 3
        end local 5 // int i
         8: .line 332
            aload 1 /* appendable */
            aload 4 /* end */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         9: .line 333
            goto 12
      StackMap locals: at.yawk.numaec.DoubleBufferListImpl java.lang.Appendable java.lang.String java.lang.String java.lang.String
      StackMap stack: java.io.IOException
        10: astore 5 /* e */
        start local 5 // java.io.IOException e
        11: .line 334
            new java.io.UncheckedIOException
            dup
            aload 5 /* e */
            invokespecial java.io.UncheckedIOException.<init>:(Ljava/io/IOException;)V
            athrow
        end local 5 // java.io.IOException e
        12: .line 336
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.lang.String end
        end local 3 // java.lang.String separator
        end local 2 // java.lang.String start
        end local 1 // java.lang.Appendable appendable
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   13     0        this  Lat/yawk/numaec/DoubleBufferListImpl;
            0   13     1  appendable  Ljava/lang/Appendable;
            0   13     2       start  Ljava/lang/String;
            0   13     3   separator  Ljava/lang/String;
            0   13     4         end  Ljava/lang/String;
            2    8     5           i  I
           11   12     5           e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     9      10  Class java.io.IOException
    MethodParameters:
            Name  Flags
      appendable  
      start       
      separator   
      end         

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
        start local 1 // java.lang.Object o
         0: .line 340
            aload 1 /* o */
            instanceof org.eclipse.collections.api.list.primitive.DoubleList
            ifeq 14
         1: .line 341
            aload 1 /* o */
            checkcast org.eclipse.collections.api.list.primitive.DoubleList
            astore 2 /* other */
        start local 2 // org.eclipse.collections.api.list.primitive.DoubleList other
         2: .line 342
            aload 2 /* other */
            invokeinterface org.eclipse.collections.api.list.primitive.DoubleList.size:()I
            istore 3 /* expectedSize */
        start local 3 // int expectedSize
         3: .line 343
            iload 3 /* expectedSize */
            aload 0 /* this */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.size:()I
            if_icmpne 13
         4: .line 344
            aload 2 /* other */
            invokeinterface org.eclipse.collections.api.list.primitive.DoubleList.doubleIterator:()Lorg/eclipse/collections/api/iterator/DoubleIterator;
            astore 4 /* j */
        start local 4 // org.eclipse.collections.api.iterator.DoubleIterator j
         5: .line 345
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         6: .line 346
            goto 10
         7: .line 347
      StackMap locals: at.yawk.numaec.DoubleBufferListImpl java.lang.Object org.eclipse.collections.api.list.primitive.DoubleList int org.eclipse.collections.api.iterator.DoubleIterator int
      StackMap stack:
            aload 4 /* j */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 8
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
         8: .line 348
      StackMap locals:
      StackMap stack:
            aload 4 /* j */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            aload 0 /* this */
            iload 5 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            dcmpl
            ifeq 9
            iconst_0
            ireturn
         9: .line 349
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
        10: .line 346
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            iload 3 /* expectedSize */
            if_icmplt 7
        11: .line 351
            aload 4 /* j */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifeq 12
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
        12: .line 352
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 5 // int i
        end local 4 // org.eclipse.collections.api.iterator.DoubleIterator j
        13: .line 354
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // int expectedSize
        end local 2 // org.eclipse.collections.api.list.primitive.DoubleList other
        14: .line 357
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   15     0          this  Lat/yawk/numaec/DoubleBufferListImpl;
            0   15     1             o  Ljava/lang/Object;
            2   14     2         other  Lorg/eclipse/collections/api/list/primitive/DoubleList;
            3   14     3  expectedSize  I
            5   13     4             j  Lorg/eclipse/collections/api/iterator/DoubleIterator;
            6   13     5             i  I
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // at.yawk.numaec.DoubleBufferListImpl this
         0: .line 363
            iconst_1
            istore 1 /* hashCode */
        start local 1 // int hashCode
         1: .line 364
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 6
         3: .line 365
      StackMap locals: int int
      StackMap stack:
            iload 1 /* hashCode */
            bipush 31
            imul
            istore 1 /* hashCode */
         4: .line 366
            iload 1 /* hashCode */
            i2d
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.get:(I)D
            dadd
            d2i
            istore 1 /* hashCode */
         5: .line 364
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            aload 0 /* this */
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.size:()I
            if_icmplt 3
        end local 2 // int i
         7: .line 368
            iload 1 /* hashCode */
            ireturn
        end local 1 // int hashCode
        end local 0 // at.yawk.numaec.DoubleBufferListImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lat/yawk/numaec/DoubleBufferListImpl;
            1    8     1  hashCode  I
            2    7     2         i  I

  public org.eclipse.collections.api.ordered.ReversibleIterable collectWithIndex(org.eclipse.collections.api.block.function.primitive.DoubleIntToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleIntToObjectFunction;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleIntToObjectFunction
            invokeinterface org.eclipse.collections.api.list.primitive.DoubleList.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/DoubleIntToObjectFunction;)Lorg/eclipse/collections/api/list/ListIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.OrderedIterable collectWithIndex(org.eclipse.collections.api.block.function.primitive.DoubleIntToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleIntToObjectFunction;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleIntToObjectFunction
            invokeinterface org.eclipse.collections.api.list.primitive.DoubleList.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/DoubleIntToObjectFunction;)Lorg/eclipse/collections/api/list/ListIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.DoubleIterable select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/DoubleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/list/primitive/DoubleList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.OrderedDoubleIterable select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/ordered/primitive/OrderedDoubleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/list/primitive/DoubleList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleDoubleIterable select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/ordered/primitive/ReversibleDoubleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/list/primitive/DoubleList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleDoubleIterable distinct();
    descriptor: ()Lorg/eclipse/collections/api/ordered/primitive/ReversibleDoubleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.distinct:()Lorg/eclipse/collections/api/list/primitive/DoubleList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.collect:(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/list/ListIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.OrderedIterable collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.collect:(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/list/ListIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.collect:(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/list/ListIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.DoubleIterable reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/DoubleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/list/primitive/DoubleList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.OrderedDoubleIterable reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/ordered/primitive/OrderedDoubleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/list/primitive/DoubleList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleDoubleIterable reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/ordered/primitive/ReversibleDoubleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/list/primitive/DoubleList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleDoubleIterable toReversed();
    descriptor: ()Lorg/eclipse/collections/api/ordered/primitive/ReversibleDoubleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual at.yawk.numaec.DoubleBufferListImpl.toReversed:()Lorg/eclipse/collections/api/list/primitive/DoubleList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "DoubleBufferListImpl.java"
NestMembers:
  at.yawk.numaec.DoubleBufferListImpl$Itr  at.yawk.numaec.DoubleBufferListImpl$Mutable  at.yawk.numaec.DoubleBufferListImpl$Mutable$Itr
InnerClasses:
  Itr = at.yawk.numaec.DoubleBufferListImpl$Itr of at.yawk.numaec.DoubleBufferListImpl
  public Mutable = at.yawk.numaec.DoubleBufferListImpl$Mutable of at.yawk.numaec.DoubleBufferListImpl
  public abstract OfDouble = java.util.Spliterator$OfDouble of java.util.Spliterator