public class at.yawk.numaec.IntBufferListImpl$Mutable extends at.yawk.numaec.IntBufferListImpl implements at.yawk.numaec.MutableIntBufferList
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: at.yawk.numaec.IntBufferListImpl$Mutable
  super_class: at.yawk.numaec.IntBufferListImpl
{
  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.IntBufferListImpl$Mutable this
        start local 1 // at.yawk.numaec.LargeByteBufferAllocator allocator
         0: .line 387
            aload 0 /* this */
            aload 1 /* allocator */
            invokespecial at.yawk.numaec.IntBufferListImpl.<init>:(Lat/yawk/numaec/LargeByteBufferAllocator;)V
         1: .line 388
            return
        end local 1 // at.yawk.numaec.LargeByteBufferAllocator allocator
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0    2     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=3, locals=3, args_size=3
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // at.yawk.numaec.LargeByteBufferAllocator allocator
        start local 2 // int initialCapacity
         0: .line 391
            aload 0 /* this */
            aload 1 /* allocator */
            iload 2 /* initialCapacity */
            invokespecial at.yawk.numaec.IntBufferListImpl.<init>:(Lat/yawk/numaec/LargeByteBufferAllocator;I)V
         1: .line 392
            return
        end local 2 // int initialCapacity
        end local 1 // at.yawk.numaec.LargeByteBufferAllocator allocator
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0    2     1        allocator  Lat/yawk/numaec/LargeByteBufferAllocator;
            0    2     2  initialCapacity  I
    MethodParameters:
                 Name  Flags
      allocator        
      initialCapacity  

  private void ensureCapacity(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=12, args_size=2
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // int capacity
         0: .line 395
            aload 0 /* this */
            iload 1 /* capacity */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            lstore 2 /* requiredCapacity */
        start local 2 // long requiredCapacity
         1: .line 396
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            invokeinterface at.yawk.numaec.LargeByteBuffer.size:()J
            lstore 4 /* currentCapacity */
        start local 4 // long currentCapacity
         2: .line 397
            lload 2 /* requiredCapacity */
            lload 4 /* currentCapacity */
            lcmp
            ifle 23
         3: .line 398
            lload 4 /* currentCapacity */
            lconst_0
            lcmp
            ifne 4
            aload 0 /* this */
            bipush 16
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            goto 5
      StackMap locals: long long
      StackMap stack:
         4: lload 4 /* currentCapacity */
      StackMap locals:
      StackMap stack: long
         5: lstore 6 /* newCapacity */
        start local 6 // long newCapacity
         6: .line 399
            goto 8
         7: .line 400
      StackMap locals: long
      StackMap stack:
            lload 6 /* newCapacity */
            lload 6 /* newCapacity */
            iconst_1
            lshr
            ladd
            lstore 6 /* newCapacity */
         8: .line 399
      StackMap locals:
      StackMap stack:
            lload 2 /* requiredCapacity */
            lload 6 /* newCapacity */
            lcmp
            ifgt 7
         9: .line 402
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            lload 6 /* newCapacity */
            invokeinterface at.yawk.numaec.LargeByteBuffer.reallocate:(J)Lat/yawk/numaec/LargeByteBuffer;
            astore 8 /* reallocated */
        start local 8 // at.yawk.numaec.LargeByteBuffer reallocated
        10: .line 403
            aload 8 /* reallocated */
            ifnull 13
        11: .line 404
            aload 0 /* this */
            aload 8 /* reallocated */
            putfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
        12: .line 405
            goto 23
        13: .line 407
      StackMap locals: at.yawk.numaec.LargeByteBuffer
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.allocator:Lat/yawk/numaec/LargeByteBufferAllocator;
            lload 6 /* newCapacity */
            invokeinterface at.yawk.numaec.LargeByteBufferAllocator.allocate:(J)Lat/yawk/numaec/LargeByteBuffer;
            astore 9 /* swap */
        start local 9 // at.yawk.numaec.LargeByteBuffer swap
        14: .line 409
            aload 9 /* swap */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            lconst_0
            lconst_0
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            invokeinterface at.yawk.numaec.LargeByteBuffer.copyFrom:(Lat/yawk/numaec/LargeByteBuffer;JJJ)V
        15: .line 411
            aload 9 /* swap */
            astore 10 /* tmp */
        start local 10 // at.yawk.numaec.LargeByteBuffer tmp
        16: .line 412
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            astore 9 /* swap */
        17: .line 413
            aload 0 /* this */
            aload 10 /* tmp */
            putfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
        end local 10 // at.yawk.numaec.LargeByteBuffer tmp
        18: .line 414
            goto 22
      StackMap locals: at.yawk.numaec.IntBufferListImpl$Mutable int long long long at.yawk.numaec.LargeByteBuffer at.yawk.numaec.LargeByteBuffer
      StackMap stack: java.lang.Throwable
        19: astore 11
        20: .line 415
            aload 9 /* swap */
            invokeinterface at.yawk.numaec.LargeByteBuffer.close:()V
        21: .line 416
            aload 11
            athrow
        22: .line 415
      StackMap locals:
      StackMap stack:
            aload 9 /* swap */
            invokeinterface at.yawk.numaec.LargeByteBuffer.close:()V
        end local 9 // at.yawk.numaec.LargeByteBuffer swap
        end local 8 // at.yawk.numaec.LargeByteBuffer reallocated
        end local 6 // long newCapacity
        23: .line 419
      StackMap locals:
      StackMap stack:
            return
        end local 4 // long currentCapacity
        end local 2 // long requiredCapacity
        end local 1 // int capacity
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   24     0              this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0   24     1          capacity  I
            1   24     2  requiredCapacity  J
            2   24     4   currentCapacity  J
            6   23     6       newCapacity  J
           10   23     8       reallocated  Lat/yawk/numaec/LargeByteBuffer;
           14   23     9              swap  Lat/yawk/numaec/LargeByteBuffer;
           16   18    10               tmp  Lat/yawk/numaec/LargeByteBuffer;
      Exception table:
        from    to  target  type
          14    19      19  any
    MethodParameters:
          Name  Flags
      capacity  

  public void addAtIndex(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=3, args_size=3
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // int index
        start local 2 // int element
         0: .line 423
            iload 1 /* index */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            if_icmpne 3
         1: .line 424
            aload 0 /* this */
            iload 2 /* element */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.add:(I)Z
            pop
         2: .line 425
            goto 9
      StackMap locals:
      StackMap stack:
         3: iload 1 /* index */
            iflt 4
            iload 1 /* index */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            if_icmple 5
         4: .line 426
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         5: .line 429
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            iconst_1
            iadd
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.ensureCapacity:(I)V
         6: .line 430
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            aload 0 /* this */
            iload 1 /* index */
            iconst_1
            iadd
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            iload 1 /* index */
            isub
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            invokeinterface at.yawk.numaec.LargeByteBuffer.copyFrom:(Lat/yawk/numaec/LargeByteBuffer;JJJ)V
         7: .line 431
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            iload 2 /* element */
            invokeinterface at.yawk.numaec.LargeByteBuffer.setInt:(JI)V
         8: .line 432
            aload 0 /* this */
            dup
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            iconst_1
            iadd
            putfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
         9: .line 434
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int element
        end local 1 // int index
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0   10     1    index  I
            0   10     2  element  I
    MethodParameters:
         Name  Flags
      index    
      element  

  public boolean addAllAtIndex(int, int[]);
    descriptor: (I[I)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=9, locals=4, args_size=3
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // int index
        start local 2 // int[] source
         0: .line 438
            iload 1 /* index */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            if_icmpne 2
         1: .line 439
            aload 0 /* this */
            aload 2 /* source */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.addAll:([I)Z
            ireturn
         2: .line 440
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            iflt 3
            iload 1 /* index */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            if_icmple 4
         3: .line 441
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         4: .line 442
      StackMap locals:
      StackMap stack:
            aload 2 /* source */
            arraylength
            ifne 6
         5: .line 443
            iconst_0
            ireturn
         6: .line 446
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            aload 2 /* source */
            arraylength
            iadd
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.ensureCapacity:(I)V
         7: .line 447
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* source */
            arraylength
            iadd
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            iload 1 /* index */
            isub
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            invokeinterface at.yawk.numaec.LargeByteBuffer.copyFrom:(Lat/yawk/numaec/LargeByteBuffer;JJJ)V
         8: .line 448
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         9: goto 12
        10: .line 449
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            iload 1 /* index */
            iload 3 /* i */
            iadd
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            aload 2 /* source */
            iload 3 /* i */
            iaload
            invokeinterface at.yawk.numaec.LargeByteBuffer.setInt:(JI)V
        11: .line 448
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 3 /* i */
            aload 2 /* source */
            arraylength
            if_icmplt 10
        end local 3 // int i
        13: .line 451
            aload 0 /* this */
            dup
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            aload 2 /* source */
            arraylength
            iadd
            putfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
        14: .line 452
            iconst_1
            ireturn
        end local 2 // int[] source
        end local 1 // int index
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   15     0    this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0   15     1   index  I
            0   15     2  source  [I
            9   13     3       i  I
    MethodParameters:
        Name  Flags
      index   
      source  

  public boolean addAllAtIndex(int, org.eclipse.collections.api.IntIterable);
    descriptor: (ILorg/eclipse/collections/api/IntIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=6, args_size=3
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // int index
        start local 2 // org.eclipse.collections.api.IntIterable source
         0: .line 458
            iload 1 /* index */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            if_icmpne 2
         1: .line 459
            aload 0 /* this */
            aload 2 /* source */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.addAll:(Lorg/eclipse/collections/api/IntIterable;)Z
            ireturn
         2: .line 460
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            iflt 3
            iload 1 /* index */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            if_icmple 4
         3: .line 461
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         4: .line 462
      StackMap locals:
      StackMap stack:
            aload 2 /* source */
            invokeinterface org.eclipse.collections.api.IntIterable.isEmpty:()Z
            ifeq 6
         5: .line 463
            iconst_0
            ireturn
         6: .line 466
      StackMap locals:
      StackMap stack:
            aload 2 /* source */
            invokeinterface org.eclipse.collections.api.IntIterable.size:()I
            istore 3 /* expectedSize */
        start local 3 // int expectedSize
         7: .line 467
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            iload 3 /* expectedSize */
            iadd
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.ensureCapacity:(I)V
         8: .line 468
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            aload 0 /* this */
            iload 1 /* index */
            iload 3 /* expectedSize */
            iadd
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            iload 1 /* index */
            isub
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            invokeinterface at.yawk.numaec.LargeByteBuffer.copyFrom:(Lat/yawk/numaec/LargeByteBuffer;JJJ)V
         9: .line 469
            aload 2 /* source */
            invokeinterface org.eclipse.collections.api.IntIterable.intIterator:()Lorg/eclipse/collections/api/iterator/IntIterator;
            astore 4 /* itr */
        start local 4 // org.eclipse.collections.api.iterator.IntIterator itr
        10: .line 470
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        11: goto 15
        12: .line 471
      StackMap locals: int org.eclipse.collections.api.iterator.IntIterator int
      StackMap stack:
            aload 4 /* itr */
            invokeinterface org.eclipse.collections.api.iterator.IntIterator.hasNext:()Z
            ifne 13
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
        13: .line 472
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            iload 1 /* index */
            iload 5 /* i */
            iadd
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            aload 4 /* itr */
            invokeinterface org.eclipse.collections.api.iterator.IntIterator.next:()I
            invokeinterface at.yawk.numaec.LargeByteBuffer.setInt:(JI)V
        14: .line 470
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 5 /* i */
            iload 3 /* expectedSize */
            if_icmplt 12
        end local 5 // int i
        16: .line 474
            aload 4 /* itr */
            invokeinterface org.eclipse.collections.api.iterator.IntIterator.hasNext:()Z
            ifeq 17
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
        17: .line 475
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            iload 3 /* expectedSize */
            iadd
            putfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
        18: .line 476
            iconst_1
            ireturn
        end local 4 // org.eclipse.collections.api.iterator.IntIterator itr
        end local 3 // int expectedSize
        end local 2 // org.eclipse.collections.api.IntIterable source
        end local 1 // int index
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   19     0          this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0   19     1         index  I
            0   19     2        source  Lorg/eclipse/collections/api/IntIterable;
            7   19     3  expectedSize  I
           10   19     4           itr  Lorg/eclipse/collections/api/iterator/IntIterator;
           11   16     5             i  I
    MethodParameters:
        Name  Flags
      index   
      source  

  public int removeAtIndex(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=3, args_size=2
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // int index
         0: .line 482
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            if_icmplt 2
         1: .line 483
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 485
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            invokeinterface at.yawk.numaec.LargeByteBuffer.getInt:(J)I
            istore 2 /* value */
        start local 2 // int value
         3: .line 486
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            iconst_1
            if_icmple 5
         4: .line 487
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            iload 1 /* index */
            iconst_1
            iadd
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            iload 1 /* index */
            isub
            iconst_1
            isub
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            invokeinterface at.yawk.numaec.LargeByteBuffer.copyFrom:(Lat/yawk/numaec/LargeByteBuffer;JJJ)V
         5: .line 489
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            iconst_1
            isub
            putfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
         6: .line 490
            iload 2 /* value */
            ireturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0    7     1  index  I
            3    7     2  value  I
    MethodParameters:
       Name  Flags
      index  

  public int set(int, int);
    descriptor: (II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // int index
        start local 2 // int element
         0: .line 496
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            if_icmplt 2
         1: .line 497
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 499
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            invokeinterface at.yawk.numaec.LargeByteBuffer.getInt:(J)I
            istore 3 /* old */
        start local 3 // int old
         3: .line 500
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            iload 2 /* element */
            invokeinterface at.yawk.numaec.LargeByteBuffer.setInt:(JI)V
         4: .line 501
            iload 3 /* old */
            ireturn
        end local 3 // int old
        end local 2 // int element
        end local 1 // int index
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0    5     1    index  I
            0    5     2  element  I
            3    5     3      old  I
    MethodParameters:
         Name  Flags
      index    
      element  

  public boolean add(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // int element
         0: .line 507
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            iconst_1
            iadd
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.ensureCapacity:(I)V
         1: .line 508
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            iload 1 /* element */
            invokeinterface at.yawk.numaec.LargeByteBuffer.setInt:(JI)V
         2: .line 509
            aload 0 /* this */
            dup
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            iconst_1
            iadd
            putfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
         3: .line 510
            iconst_1
            ireturn
        end local 1 // int element
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0    4     1  element  I
    MethodParameters:
         Name  Flags
      element  

  public boolean addAll(int[]);
    descriptor: ([I)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // int[] source
         0: .line 515
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            aload 1 /* source */
            arraylength
            iadd
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.ensureCapacity:(I)V
         1: .line 516
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 517
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            iload 2 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            iadd
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            aload 1 /* source */
            iload 2 /* i */
            iaload
            invokeinterface at.yawk.numaec.LargeByteBuffer.setInt:(JI)V
         4: .line 516
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 1 /* source */
            arraylength
            if_icmplt 3
        end local 2 // int i
         6: .line 519
            aload 0 /* this */
            dup
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            aload 1 /* source */
            arraylength
            iadd
            putfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
         7: .line 520
            aload 1 /* source */
            arraylength
            ifle 8
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         8: iconst_0
            ireturn
        end local 1 // int[] source
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0    9     1  source  [I
            2    6     2       i  I
    MethodParameters:
        Name  Flags
      source  

  public boolean addAll(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // org.eclipse.collections.api.IntIterable source
         0: .line 525
            aload 1 /* source */
            invokeinterface org.eclipse.collections.api.IntIterable.size:()I
            istore 2 /* expectedSize */
        start local 2 // int expectedSize
         1: .line 526
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            iload 2 /* expectedSize */
            iadd
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.ensureCapacity:(I)V
         2: .line 527
            aload 1 /* source */
            invokeinterface org.eclipse.collections.api.IntIterable.intIterator:()Lorg/eclipse/collections/api/iterator/IntIterator;
            astore 3 /* itr */
        start local 3 // org.eclipse.collections.api.iterator.IntIterator itr
         3: .line 528
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: .line 529
            goto 9
         5: .line 530
      StackMap locals: int org.eclipse.collections.api.iterator.IntIterator int
      StackMap stack:
            iload 4 /* i */
            iload 2 /* expectedSize */
            if_icmple 7
         6: .line 531
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
         7: .line 533
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.buffer:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            iload 4 /* i */
            aload 0 /* this */
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            iadd
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.scale:(I)J
            aload 3 /* itr */
            invokeinterface org.eclipse.collections.api.iterator.IntIterator.next:()I
            invokeinterface at.yawk.numaec.LargeByteBuffer.setInt:(JI)V
         8: .line 534
            iinc 4 /* i */ 1
         9: .line 529
      StackMap locals:
      StackMap stack:
            aload 3 /* itr */
            invokeinterface org.eclipse.collections.api.iterator.IntIterator.hasNext:()Z
            ifne 5
        10: .line 536
            aload 0 /* this */
            dup
            getfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
            iload 4 /* i */
            iadd
            putfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
        11: .line 537
            iload 4 /* i */
            ifle 12
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        12: iconst_0
            ireturn
        end local 4 // int i
        end local 3 // org.eclipse.collections.api.iterator.IntIterator itr
        end local 2 // int expectedSize
        end local 1 // org.eclipse.collections.api.IntIterable source
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   13     0          this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0   13     1        source  Lorg/eclipse/collections/api/IntIterable;
            1   13     2  expectedSize  I
            3   13     3           itr  Lorg/eclipse/collections/api/iterator/IntIterator;
            4   13     4             i  I
    MethodParameters:
        Name  Flags
      source  

  public boolean remove(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // int value
         0: .line 542
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.indexOf:(I)I
            istore 2 /* ix */
        start local 2 // int ix
         1: .line 543
            iload 2 /* ix */
            iconst_m1
            if_icmpne 3
         2: .line 544
            iconst_0
            ireturn
         3: .line 546
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* ix */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.removeAtIndex:(I)I
            pop
         4: .line 547
            iconst_1
            ireturn
        end local 2 // int ix
        end local 1 // int value
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0    5     1  value  I
            1    5     2     ix  I
    MethodParameters:
       Name  Flags
      value  

  public boolean removeAll(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // org.eclipse.collections.api.IntIterable source
         0: .line 553
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // org.eclipse.collections.api.IntIterable source
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0    1     1  source  Lorg/eclipse/collections/api/IntIterable;
    MethodParameters:
        Name  Flags
      source  

  public boolean removeAll(int[]);
    descriptor: ([I)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // int[] source
         0: .line 558
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // int[] source
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0    1     1  source  [I
    MethodParameters:
        Name  Flags
      source  

  public boolean retainAll(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // org.eclipse.collections.api.IntIterable elements
         0: .line 563
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // org.eclipse.collections.api.IntIterable elements
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0    1     1  elements  Lorg/eclipse/collections/api/IntIterable;
    MethodParameters:
          Name  Flags
      elements  

  public boolean retainAll(int[]);
    descriptor: ([I)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // int[] source
         0: .line 568
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // int[] source
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0    1     1  source  [I
    MethodParameters:
        Name  Flags
      source  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
         0: .line 573
            aload 0 /* this */
            iconst_0
            putfield at.yawk.numaec.IntBufferListImpl$Mutable.size:I
         1: .line 574
            return
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lat/yawk/numaec/IntBufferListImpl$Mutable;

  public org.eclipse.collections.api.list.primitive.MutableIntList with(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // int element
         0: .line 578
            aload 0 /* this */
            iload 1 /* element */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.add:(I)Z
            pop
         1: .line 579
            aload 0 /* this */
            areturn
        end local 1 // int element
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0    2     1  element  I
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.api.list.primitive.MutableIntList without(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // int element
         0: .line 584
            aload 0 /* this */
            iload 1 /* element */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.remove:(I)Z
            pop
         1: .line 585
            aload 0 /* this */
            areturn
        end local 1 // int element
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0    2     1  element  I
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.api.list.primitive.MutableIntList withAll(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // org.eclipse.collections.api.IntIterable elements
         0: .line 590
            aload 0 /* this */
            aload 1 /* elements */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.addAll:(Lorg/eclipse/collections/api/IntIterable;)Z
            pop
         1: .line 591
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.IntIterable elements
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0    2     1  elements  Lorg/eclipse/collections/api/IntIterable;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.api.list.primitive.MutableIntList withoutAll(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // org.eclipse.collections.api.IntIterable elements
         0: .line 596
            aload 0 /* this */
            aload 1 /* elements */
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.removeAll:(Lorg/eclipse/collections/api/IntIterable;)Z
            pop
         1: .line 597
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.IntIterable elements
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0    2     1  elements  Lorg/eclipse/collections/api/IntIterable;
    MethodParameters:
          Name  Flags
      elements  

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

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

  public org.eclipse.collections.api.list.primitive.MutableIntList asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/list/primitive/MutableIntList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
         0: .line 612
            new org.eclipse.collections.impl.list.mutable.primitive.UnmodifiableIntList
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.UnmodifiableIntList.<init>:(Lorg/eclipse/collections/api/list/primitive/MutableIntList;)V
            areturn
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lat/yawk/numaec/IntBufferListImpl$Mutable;

  public org.eclipse.collections.api.list.primitive.MutableIntList asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/list/primitive/MutableIntList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
         0: .line 617
            new org.eclipse.collections.impl.list.mutable.primitive.SynchronizedIntList
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.SynchronizedIntList.<init>:(Lorg/eclipse/collections/api/list/primitive/MutableIntList;)V
            areturn
        end local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lat/yawk/numaec/IntBufferListImpl$Mutable;

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

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

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

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

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

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

  public org.eclipse.collections.api.list.primitive.MutableIntList subList(int, int);
    descriptor: (II)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // at.yawk.numaec.IntBufferListImpl$Mutable this
        start local 1 // int fromIndex
        start local 2 // int toIndex
         0: .line 652
            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.IntBufferListImpl$Mutable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lat/yawk/numaec/IntBufferListImpl$Mutable;
            0    1     1  fromIndex  I
            0    1     2    toIndex  I
    MethodParameters:
           Name  Flags
      fromIndex  
      toIndex    

  public int detectIfNone(org.eclipse.collections.api.block.predicate.primitive.IntPredicate, int);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;I)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            iload 2
            invokespecial at.yawk.numaec.IntBufferListImpl.detectIfNone:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;I)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.LazyIntIterable asReversed();
    descriptor: ()Lorg/eclipse/collections/api/LazyIntIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial at.yawk.numaec.IntBufferListImpl.asReversed:()Lorg/eclipse/collections/api/LazyIntIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int getLast();
    descriptor: ()I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial at.yawk.numaec.IntBufferListImpl.getLast:()I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int indexOf(int);
    descriptor: (I)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokespecial at.yawk.numaec.IntBufferListImpl.indexOf:(I)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.collection.primitive.ImmutableIntCollection toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/ImmutableIntCollection;
    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.IntBufferListImpl$Mutable.toImmutable:()Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public boolean contains(int);
    descriptor: (I)Z
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokespecial at.yawk.numaec.IntBufferListImpl.contains:(I)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object injectInto(java.lang.Object, org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokespecial at.yawk.numaec.IntBufferListImpl.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Ljava/lang/Object;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int getFirst();
    descriptor: ()I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial at.yawk.numaec.IntBufferListImpl.getFirst:()I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.util.Spliterator$OfInt spliterator();
    descriptor: ()Ljava/util/Spliterator$OfInt;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial at.yawk.numaec.IntBufferListImpl.spliterator:()Ljava/util/Spliterator$OfInt;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableIntCollection with(int);
    descriptor: (I)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.with:(I)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Z
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokespecial at.yawk.numaec.IntBufferListImpl.noneSatisfy:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableIntCollection withAll(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    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.IntBufferListImpl$Mutable.withAll:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int min();
    descriptor: ()I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial at.yawk.numaec.IntBufferListImpl.min:()I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableIntCollection select(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    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.IntBufferListImpl$Mutable.select:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.IntList select(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/list/primitive/IntList;
    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.IntBufferListImpl$Mutable.select:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.IntIterable select(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/IntIterable;
    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.IntBufferListImpl$Mutable.select:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.OrderedIntIterable select(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/ordered/primitive/OrderedIntIterable;
    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.IntBufferListImpl$Mutable.select:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleIntIterable select(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/ordered/primitive/ReversibleIntIterable;
    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.IntBufferListImpl$Mutable.select:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Z
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokespecial at.yawk.numaec.IntBufferListImpl.anySatisfy:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableIntCollection withoutAll(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    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.IntBufferListImpl$Mutable.withoutAll:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object injectIntoWithIndex(java.lang.Object, org.eclipse.collections.api.block.function.primitive.ObjectIntIntToObjectFunction);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectIntIntToObjectFunction;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokespecial at.yawk.numaec.IntBufferListImpl.injectIntoWithIndex:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectIntIntToObjectFunction;)Ljava/lang/Object;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.IntList distinct();
    descriptor: ()Lorg/eclipse/collections/api/list/primitive/IntList;
    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.IntBufferListImpl$Mutable.distinct:()Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleIntIterable distinct();
    descriptor: ()Lorg/eclipse/collections/api/ordered/primitive/ReversibleIntIterable;
    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.IntBufferListImpl$Mutable.distinct:()Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection collect(org.eclipse.collections.api.block.function.primitive.IntToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)Lorg/eclipse/collections/api/collection/MutableCollection;
    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.IntToObjectFunction
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.collect:(Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable collect(org.eclipse.collections.api.block.function.primitive.IntToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)Lorg/eclipse/collections/api/list/ListIterable;
    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.IntToObjectFunction
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.collect:(Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable collect(org.eclipse.collections.api.block.function.primitive.IntToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)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.IntToObjectFunction
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.collect:(Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.OrderedIterable collect(org.eclipse.collections.api.block.function.primitive.IntToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)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.IntToObjectFunction
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.collect:(Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable collect(org.eclipse.collections.api.block.function.primitive.IntToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)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.IntToObjectFunction
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.collect:(Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Z
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokespecial at.yawk.numaec.IntBufferListImpl.allSatisfy:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public long sum();
    descriptor: ()J
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial at.yawk.numaec.IntBufferListImpl.sum:()J
            lreturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int max();
    descriptor: ()I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial at.yawk.numaec.IntBufferListImpl.max:()I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableIntCollection asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    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.IntBufferListImpl$Mutable.asSynchronized:()Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokespecial at.yawk.numaec.IntBufferListImpl.equals:(Ljava/lang/Object;)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int get(int);
    descriptor: (I)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokespecial at.yawk.numaec.IntBufferListImpl.get:(I)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int lastIndexOf(int);
    descriptor: (I)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokespecial at.yawk.numaec.IntBufferListImpl.lastIndexOf:(I)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int hashCode();
    descriptor: ()I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial at.yawk.numaec.IntBufferListImpl.hashCode:()I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableIntCollection tap(org.eclipse.collections.api.block.procedure.primitive.IntProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokeinterface org.eclipse.collections.api.list.primitive.MutableIntList.tap:(Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.iterator.IntIterator intIterator();
    descriptor: ()Lorg/eclipse/collections/api/iterator/IntIterator;
    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.IntBufferListImpl$Mutable.intIterator:()Lorg/eclipse/collections/api/iterator/MutableIntIterator;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableIntCollection reject(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    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.IntBufferListImpl$Mutable.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.IntList reject(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/list/primitive/IntList;
    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.IntBufferListImpl$Mutable.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.IntIterable reject(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/IntIterable;
    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.IntBufferListImpl$Mutable.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.OrderedIntIterable reject(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/ordered/primitive/OrderedIntIterable;
    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.IntBufferListImpl$Mutable.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleIntIterable reject(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/ordered/primitive/ReversibleIntIterable;
    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.IntBufferListImpl$Mutable.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void each(org.eclipse.collections.api.block.procedure.primitive.IntProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokespecial at.yawk.numaec.IntBufferListImpl.each:(Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.IntIntProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntIntProcedure;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokespecial at.yawk.numaec.IntBufferListImpl.forEachWithIndex:(Lorg/eclipse/collections/api/block/procedure/primitive/IntIntProcedure;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void close();
    descriptor: ()V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial at.yawk.numaec.IntBufferListImpl.close:()V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.IntList toReversed();
    descriptor: ()Lorg/eclipse/collections/api/list/primitive/IntList;
    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.IntBufferListImpl$Mutable.toReversed:()Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleIntIterable toReversed();
    descriptor: ()Lorg/eclipse/collections/api/ordered/primitive/ReversibleIntIterable;
    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.IntBufferListImpl$Mutable.toReversed:()Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableIntCollection asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    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.IntBufferListImpl$Mutable.asUnmodifiable:()Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int count(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokespecial at.yawk.numaec.IntBufferListImpl.count:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableIntCollection newEmpty();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokeinterface org.eclipse.collections.api.list.primitive.MutableIntList.newEmpty:()Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableIntCollection without(int);
    descriptor: (I)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.without:(I)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void forEach(org.eclipse.collections.api.block.procedure.primitive.IntProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokespecial at.yawk.numaec.IntBufferListImpl.forEach:(Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int binarySearch(int);
    descriptor: (I)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokespecial at.yawk.numaec.IntBufferListImpl.binarySearch:(I)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.IntList subList(int, int);
    descriptor: (II)Lorg/eclipse/collections/api/list/primitive/IntList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            iload 2
            invokevirtual at.yawk.numaec.IntBufferListImpl$Mutable.subList:(II)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public long dotProduct(org.eclipse.collections.api.list.primitive.IntList);
    descriptor: (Lorg/eclipse/collections/api/list/primitive/IntList;)J
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokespecial at.yawk.numaec.IntBufferListImpl.dotProduct:(Lorg/eclipse/collections/api/list/primitive/IntList;)J
            lreturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int size();
    descriptor: ()I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial at.yawk.numaec.IntBufferListImpl.size:()I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  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: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=5, locals=5, args_size=5
         0: .line 1
            aload 0
            aload 1
            aload 2
            aload 3
            aload 4
            invokespecial at.yawk.numaec.IntBufferListImpl.appendString:(Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int[] toArray();
    descriptor: ()[I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial at.yawk.numaec.IntBufferListImpl.toArray:()[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "IntBufferListImpl.java"
NestHost: at.yawk.numaec.IntBufferListImpl
InnerClasses:
  public Mutable = at.yawk.numaec.IntBufferListImpl$Mutable of at.yawk.numaec.IntBufferListImpl
  Itr = at.yawk.numaec.IntBufferListImpl$Mutable$Itr of at.yawk.numaec.IntBufferListImpl$Mutable
  public abstract OfInt = java.util.Spliterator$OfInt of java.util.Spliterator