public class com.carrotsearch.hppc.ObjectArrayDeque<KType> extends com.carrotsearch.hppc.AbstractObjectCollection<KType> implements com.carrotsearch.hppc.ObjectDeque<KType>, com.carrotsearch.hppc.Preallocable, java.lang.Cloneable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.carrotsearch.hppc.ObjectArrayDeque
  super_class: com.carrotsearch.hppc.AbstractObjectCollection
{
  public java.lang.Object[] buffer;
    descriptor: [Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC

  public int head;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  public int tail;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  protected final com.carrotsearch.hppc.ArraySizingStrategy resizer;
    descriptor: Lcom/carrotsearch/hppc/ArraySizingStrategy;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 18
            ldc Lcom/carrotsearch/hppc/ObjectArrayDeque;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic com.carrotsearch.hppc.ObjectArrayDeque.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
         0: .line 53
            aload 0 /* this */
            iconst_4
            invokespecial com.carrotsearch.hppc.ObjectArrayDeque.<init>:(I)V
         1: .line 54
            return
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // int expectedElements
         0: .line 64
            aload 0 /* this */
            iload 1 /* expectedElements */
            new com.carrotsearch.hppc.BoundedProportionalArraySizingStrategy
            dup
            invokespecial com.carrotsearch.hppc.BoundedProportionalArraySizingStrategy.<init>:()V
            invokespecial com.carrotsearch.hppc.ObjectArrayDeque.<init>:(ILcom/carrotsearch/hppc/ArraySizingStrategy;)V
         1: .line 65
            return
        end local 1 // int expectedElements
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    2     1  expectedElements  I
    MethodParameters:
                  Name  Flags
      expectedElements  

  public void <init>(int, com.carrotsearch.hppc.ArraySizingStrategy);
    descriptor: (ILcom/carrotsearch/hppc/ArraySizingStrategy;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // int expectedElements
        start local 2 // com.carrotsearch.hppc.ArraySizingStrategy resizer
         0: .line 77
            aload 0 /* this */
            invokespecial com.carrotsearch.hppc.AbstractObjectCollection.<init>:()V
         1: .line 30
            aload 0 /* this */
            getstatic com.carrotsearch.hppc.ObjectArrayList.EMPTY_ARRAY:[Ljava/lang/Object;
            putfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
         2: .line 78
            getstatic com.carrotsearch.hppc.ObjectArrayDeque.$assertionsDisabled:Z
            ifne 3
            aload 2 /* resizer */
            ifnonnull 3
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         3: .line 79
      StackMap locals: com.carrotsearch.hppc.ObjectArrayDeque int com.carrotsearch.hppc.ArraySizingStrategy
      StackMap stack:
            aload 0 /* this */
            aload 2 /* resizer */
            putfield com.carrotsearch.hppc.ObjectArrayDeque.resizer:Lcom/carrotsearch/hppc/ArraySizingStrategy;
         4: .line 80
            aload 0 /* this */
            iload 1 /* expectedElements */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.ensureCapacity:(I)V
         5: .line 81
            return
        end local 2 // com.carrotsearch.hppc.ArraySizingStrategy resizer
        end local 1 // int expectedElements
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    6     0              this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    6     1  expectedElements  I
            0    6     2           resizer  Lcom/carrotsearch/hppc/ArraySizingStrategy;
    MethodParameters:
                  Name  Flags
      expectedElements  
      resizer           

  public void <init>(com.carrotsearch.hppc.ObjectContainer<? extends KType>);
    descriptor: (Lcom/carrotsearch/hppc/ObjectContainer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // com.carrotsearch.hppc.ObjectContainer container
         0: .line 88
            aload 0 /* this */
            aload 1 /* container */
            invokeinterface com.carrotsearch.hppc.ObjectContainer.size:()I
            invokespecial com.carrotsearch.hppc.ObjectArrayDeque.<init>:(I)V
         1: .line 89
            aload 0 /* this */
            aload 1 /* container */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.addLast:(Lcom/carrotsearch/hppc/ObjectContainer;)I
            pop
         2: .line 90
            return
        end local 1 // com.carrotsearch.hppc.ObjectContainer container
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    3     1  container  Lcom/carrotsearch/hppc/ObjectContainer<+TKType;>;
    Signature: (Lcom/carrotsearch/hppc/ObjectContainer<+TKType;>;)V
    MethodParameters:
           Name  Flags
      container  

  public void addFirst();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // java.lang.Object e1
         0: .line 97
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            arraylength
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneLeft:(II)I
            istore 2 /* h */
        start local 2 // int h
         1: .line 98
            iload 2 /* h */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            if_icmpne 4
         2: .line 99
            aload 0 /* this */
            iconst_1
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.ensureBufferSpace:(I)V
         3: .line 100
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            arraylength
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneLeft:(II)I
            istore 2 /* h */
         4: .line 102
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            aload 0 /* this */
            iload 2 /* h */
            dup_x1
            putfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aload 1 /* e1 */
            aastore
         5: .line 103
            return
        end local 2 // int h
        end local 1 // java.lang.Object e1
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    6     1    e1  TKType;
            1    6     2     h  I
    Signature: (TKType;)V
    MethodParameters:
      Name  Flags
      e1    

  public final void addFirst();
    descriptor: ([Ljava/lang/Object;)V
    flags: (0x0091) ACC_PUBLIC, ACC_FINAL, ACC_VARARGS
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // java.lang.Object[] elements
         0: .line 117
            aload 0 /* this */
            aload 1 /* elements */
            arraylength
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.ensureBufferSpace:(I)V
         1: .line 118
            aload 1 /* elements */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: com.carrotsearch.hppc.ObjectArrayDeque java.lang.Object[] top int int java.lang.Object[]
      StackMap stack:
         2: aload 5
            iload 3
            aaload
            astore 2 /* k */
        start local 2 // java.lang.Object k
         3: .line 119
            aload 0 /* this */
            aload 2 /* k */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.addFirst:(Ljava/lang/Object;)V
        end local 2 // java.lang.Object k
         4: .line 118
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 2
         6: .line 121
            return
        end local 1 // java.lang.Object[] elements
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    7     1  elements  [Ljava/lang/Object;
            3    4     2         k  TKType;
    Signature: ([TKType;)V
    RuntimeVisibleAnnotations: 
      java.lang.SafeVarargs()
    MethodParameters:
          Name  Flags
      elements  

  public int addFirst(com.carrotsearch.hppc.ObjectContainer<? extends KType>);
    descriptor: (Lcom/carrotsearch/hppc/ObjectContainer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // com.carrotsearch.hppc.ObjectContainer container
         0: .line 132
            aload 1 /* container */
            invokeinterface com.carrotsearch.hppc.ObjectContainer.size:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 133
            aload 0 /* this */
            iload 2 /* size */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.ensureBufferSpace:(I)V
         2: .line 135
            aload 1 /* container */
            invokeinterface com.carrotsearch.hppc.ObjectContainer.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: com.carrotsearch.hppc.ObjectArrayDeque com.carrotsearch.hppc.ObjectContainer int top java.util.Iterator
      StackMap stack:
         3: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ObjectCursor
            astore 3 /* cursor */
        start local 3 // com.carrotsearch.hppc.cursors.ObjectCursor cursor
         4: .line 136
            aload 0 /* this */
            aload 3 /* cursor */
            getfield com.carrotsearch.hppc.cursors.ObjectCursor.value:Ljava/lang/Object;
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.addFirst:(Ljava/lang/Object;)V
        end local 3 // com.carrotsearch.hppc.cursors.ObjectCursor cursor
         5: .line 135
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 139
            iload 2 /* size */
            ireturn
        end local 2 // int size
        end local 1 // com.carrotsearch.hppc.ObjectContainer container
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    7     1  container  Lcom/carrotsearch/hppc/ObjectContainer<+TKType;>;
            1    7     2       size  I
            4    5     3     cursor  Lcom/carrotsearch/hppc/cursors/ObjectCursor<+TKType;>;
    Signature: (Lcom/carrotsearch/hppc/ObjectContainer<+TKType;>;)I
    MethodParameters:
           Name  Flags
      container  

  public int addFirst(java.lang.Iterable<? extends com.carrotsearch.hppc.cursors.ObjectCursor<? extends KType>>);
    descriptor: (Ljava/lang/Iterable;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // java.lang.Iterable iterable
         0: .line 151
            iconst_0
            istore 2 /* size */
        start local 2 // int size
         1: .line 152
            aload 1 /* iterable */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: com.carrotsearch.hppc.ObjectArrayDeque java.lang.Iterable int top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ObjectCursor
            astore 3 /* cursor */
        start local 3 // com.carrotsearch.hppc.cursors.ObjectCursor cursor
         3: .line 153
            aload 0 /* this */
            aload 3 /* cursor */
            getfield com.carrotsearch.hppc.cursors.ObjectCursor.value:Ljava/lang/Object;
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.addFirst:(Ljava/lang/Object;)V
         4: .line 154
            iinc 2 /* size */ 1
        end local 3 // com.carrotsearch.hppc.cursors.ObjectCursor cursor
         5: .line 152
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 156
            iload 2 /* size */
            ireturn
        end local 2 // int size
        end local 1 // java.lang.Iterable iterable
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    7     1  iterable  Ljava/lang/Iterable<+Lcom/carrotsearch/hppc/cursors/ObjectCursor<+TKType;>;>;
            1    7     2      size  I
            3    5     3    cursor  Lcom/carrotsearch/hppc/cursors/ObjectCursor<+TKType;>;
    Signature: (Ljava/lang/Iterable<+Lcom/carrotsearch/hppc/cursors/ObjectCursor<+TKType;>;>;)I
    MethodParameters:
          Name  Flags
      iterable  

  public void addLast();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // java.lang.Object e1
         0: .line 164
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            arraylength
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneRight:(II)I
            istore 2 /* t */
        start local 2 // int t
         1: .line 165
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            iload 2 /* t */
            if_icmpne 4
         2: .line 166
            aload 0 /* this */
            iconst_1
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.ensureBufferSpace:(I)V
         3: .line 167
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            arraylength
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneRight:(II)I
            istore 2 /* t */
         4: .line 169
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            aload 1 /* e1 */
            aastore
         5: .line 170
            aload 0 /* this */
            iload 2 /* t */
            putfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
         6: .line 171
            return
        end local 2 // int t
        end local 1 // java.lang.Object e1
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    7     1    e1  TKType;
            1    7     2     t  I
    Signature: (TKType;)V
    MethodParameters:
      Name  Flags
      e1    

  public final void addLast();
    descriptor: ([Ljava/lang/Object;)V
    flags: (0x0091) ACC_PUBLIC, ACC_FINAL, ACC_VARARGS
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // java.lang.Object[] elements
         0: .line 187
            aload 0 /* this */
            iconst_1
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.ensureBufferSpace:(I)V
         1: .line 188
            aload 1 /* elements */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: com.carrotsearch.hppc.ObjectArrayDeque java.lang.Object[] top int int java.lang.Object[]
      StackMap stack:
         2: aload 5
            iload 3
            aaload
            astore 2 /* k */
        start local 2 // java.lang.Object k
         3: .line 189
            aload 0 /* this */
            aload 2 /* k */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.addLast:(Ljava/lang/Object;)V
        end local 2 // java.lang.Object k
         4: .line 188
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 2
         6: .line 191
            return
        end local 1 // java.lang.Object[] elements
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    7     1  elements  [Ljava/lang/Object;
            3    4     2         k  TKType;
    Signature: ([TKType;)V
    RuntimeVisibleAnnotations: 
      java.lang.SafeVarargs()
    MethodParameters:
          Name  Flags
      elements  

  public int addLast(com.carrotsearch.hppc.ObjectContainer<? extends KType>);
    descriptor: (Lcom/carrotsearch/hppc/ObjectContainer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // com.carrotsearch.hppc.ObjectContainer container
         0: .line 202
            aload 1 /* container */
            invokeinterface com.carrotsearch.hppc.ObjectContainer.size:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 203
            aload 0 /* this */
            iload 2 /* size */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.ensureBufferSpace:(I)V
         2: .line 205
            aload 1 /* container */
            invokeinterface com.carrotsearch.hppc.ObjectContainer.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: com.carrotsearch.hppc.ObjectArrayDeque com.carrotsearch.hppc.ObjectContainer int top java.util.Iterator
      StackMap stack:
         3: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ObjectCursor
            astore 3 /* cursor */
        start local 3 // com.carrotsearch.hppc.cursors.ObjectCursor cursor
         4: .line 206
            aload 0 /* this */
            aload 3 /* cursor */
            getfield com.carrotsearch.hppc.cursors.ObjectCursor.value:Ljava/lang/Object;
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.addLast:(Ljava/lang/Object;)V
        end local 3 // com.carrotsearch.hppc.cursors.ObjectCursor cursor
         5: .line 205
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 209
            iload 2 /* size */
            ireturn
        end local 2 // int size
        end local 1 // com.carrotsearch.hppc.ObjectContainer container
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    7     1  container  Lcom/carrotsearch/hppc/ObjectContainer<+TKType;>;
            1    7     2       size  I
            4    5     3     cursor  Lcom/carrotsearch/hppc/cursors/ObjectCursor<+TKType;>;
    Signature: (Lcom/carrotsearch/hppc/ObjectContainer<+TKType;>;)I
    MethodParameters:
           Name  Flags
      container  

  public int addLast(java.lang.Iterable<? extends com.carrotsearch.hppc.cursors.ObjectCursor<? extends KType>>);
    descriptor: (Ljava/lang/Iterable;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // java.lang.Iterable iterable
         0: .line 221
            iconst_0
            istore 2 /* size */
        start local 2 // int size
         1: .line 222
            aload 1 /* iterable */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: com.carrotsearch.hppc.ObjectArrayDeque java.lang.Iterable int top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ObjectCursor
            astore 3 /* cursor */
        start local 3 // com.carrotsearch.hppc.cursors.ObjectCursor cursor
         3: .line 223
            aload 0 /* this */
            aload 3 /* cursor */
            getfield com.carrotsearch.hppc.cursors.ObjectCursor.value:Ljava/lang/Object;
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.addLast:(Ljava/lang/Object;)V
         4: .line 224
            iinc 2 /* size */ 1
        end local 3 // com.carrotsearch.hppc.cursors.ObjectCursor cursor
         5: .line 222
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 226
            iload 2 /* size */
            ireturn
        end local 2 // int size
        end local 1 // java.lang.Iterable iterable
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    7     1  iterable  Ljava/lang/Iterable<+Lcom/carrotsearch/hppc/cursors/ObjectCursor<+TKType;>;>;
            1    7     2      size  I
            3    5     3    cursor  Lcom/carrotsearch/hppc/cursors/ObjectCursor<+TKType;>;
    Signature: (Ljava/lang/Iterable<+Lcom/carrotsearch/hppc/cursors/ObjectCursor<+TKType;>;>;)I
    MethodParameters:
          Name  Flags
      iterable  

  public KType removeFirst();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
         0: .line 234
            getstatic com.carrotsearch.hppc.ObjectArrayDeque.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.size:()I
            ifgt 1
            new java.lang.AssertionError
            dup
            ldc "The deque is empty."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 236
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aaload
            astore 1 /* result */
        start local 1 // java.lang.Object result
         2: .line 237
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aconst_null
            aastore
         3: .line 238
            aload 0 /* this */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            arraylength
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneRight:(II)I
            putfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
         4: .line 239
            aload 1 /* result */
            areturn
        end local 1 // java.lang.Object result
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            2    5     1  result  TKType;
    Signature: ()TKType;

  public KType removeLast();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
         0: .line 247
            getstatic com.carrotsearch.hppc.ObjectArrayDeque.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.size:()I
            ifgt 1
            new java.lang.AssertionError
            dup
            ldc "The deque is empty."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 249
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            arraylength
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneLeft:(II)I
            putfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
         2: .line 250
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            aaload
            astore 1 /* result */
        start local 1 // java.lang.Object result
         3: .line 251
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            aconst_null
            aastore
         4: .line 252
            aload 1 /* result */
            areturn
        end local 1 // java.lang.Object result
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            3    5     1  result  TKType;
    Signature: ()TKType;

  public KType getFirst();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
         0: .line 260
            getstatic com.carrotsearch.hppc.ObjectArrayDeque.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.size:()I
            ifgt 1
            new java.lang.AssertionError
            dup
            ldc "The deque is empty."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 262
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aaload
            areturn
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
    Signature: ()TKType;

  public KType getLast();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
         0: .line 270
            getstatic com.carrotsearch.hppc.ObjectArrayDeque.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.size:()I
            ifgt 1
            new java.lang.AssertionError
            dup
            ldc "The deque is empty."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 272
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            arraylength
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneLeft:(II)I
            aaload
            areturn
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
    Signature: ()TKType;

  public int removeFirst();
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // java.lang.Object e1
         0: .line 280
            aload 0 /* this */
            aload 1 /* e1 */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.bufferIndexOf:(Ljava/lang/Object;)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 281
            iload 2 /* index */
            iflt 3
         2: .line 282
            aload 0 /* this */
            iload 2 /* index */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.removeAtBufferIndex:(I)V
         3: .line 283
      StackMap locals: int
      StackMap stack:
            iload 2 /* index */
            ireturn
        end local 2 // int index
        end local 1 // java.lang.Object e1
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    4     1     e1  TKType;
            1    4     2  index  I
    Signature: (TKType;)I
    MethodParameters:
      Name  Flags
      e1    

  public int bufferIndexOf();
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // java.lang.Object e1
         0: .line 296
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            istore 2 /* last */
        start local 2 // int last
         1: .line 297
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            arraylength
            istore 3 /* bufLen */
        start local 3 // int bufLen
         2: .line 298
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            istore 4 /* i */
        start local 4 // int i
         3: goto 7
         4: .line 299
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            aload 1 /* e1 */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 6
         5: .line 300
            iload 4 /* i */
            ireturn
         6: .line 298
      StackMap locals:
      StackMap stack:
            iload 4 /* i */
            iload 3 /* bufLen */
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneRight:(II)I
            istore 4 /* i */
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            iload 2 /* last */
            if_icmpne 4
        end local 4 // int i
         8: .line 304
            iconst_m1
            ireturn
        end local 3 // int bufLen
        end local 2 // int last
        end local 1 // java.lang.Object e1
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    9     1      e1  TKType;
            1    9     2    last  I
            2    9     3  bufLen  I
            3    8     4       i  I
    Signature: (TKType;)I
    MethodParameters:
      Name  Flags
      e1    

  public int removeLast();
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // java.lang.Object e1
         0: .line 312
            aload 0 /* this */
            aload 1 /* e1 */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.lastBufferIndexOf:(Ljava/lang/Object;)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 313
            iload 2 /* index */
            iflt 3
         2: .line 314
            aload 0 /* this */
            iload 2 /* index */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.removeAtBufferIndex:(I)V
         3: .line 316
      StackMap locals: int
      StackMap stack:
            iload 2 /* index */
            ireturn
        end local 2 // int index
        end local 1 // java.lang.Object e1
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    4     1     e1  TKType;
            1    4     2  index  I
    Signature: (TKType;)I
    MethodParameters:
      Name  Flags
      e1    

  public int lastBufferIndexOf();
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // java.lang.Object e1
         0: .line 329
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            arraylength
            istore 2 /* bufLen */
        start local 2 // int bufLen
         1: .line 330
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            iload 2 /* bufLen */
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneLeft:(II)I
            istore 3 /* last */
        start local 3 // int last
         2: .line 331
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            iload 2 /* bufLen */
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneLeft:(II)I
            istore 4 /* i */
        start local 4 // int i
         3: goto 7
         4: .line 332
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            aload 1 /* e1 */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 6
         5: .line 333
            iload 4 /* i */
            ireturn
         6: .line 331
      StackMap locals:
      StackMap stack:
            iload 4 /* i */
            iload 2 /* bufLen */
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneLeft:(II)I
            istore 4 /* i */
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            iload 3 /* last */
            if_icmpne 4
        end local 4 // int i
         8: .line 336
            iconst_m1
            ireturn
        end local 3 // int last
        end local 2 // int bufLen
        end local 1 // java.lang.Object e1
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    9     1      e1  TKType;
            1    9     2  bufLen  I
            2    9     3    last  I
            3    8     4       i  I
    Signature: (TKType;)I
    MethodParameters:
      Name  Flags
      e1    

  public int removeAll();
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // java.lang.Object e1
         0: .line 344
            iconst_0
            istore 2 /* removed */
        start local 2 // int removed
         1: .line 345
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            istore 3 /* last */
        start local 3 // int last
         2: .line 346
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            arraylength
            istore 4 /* bufLen */
        start local 4 // int bufLen
         3: .line 348
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            dup
            istore 6 /* to */
        start local 6 // int to
         4: istore 5 /* from */
        start local 5 // int from
         5: goto 15
         6: .line 349
      StackMap locals: com.carrotsearch.hppc.ObjectArrayDeque java.lang.Object int int int int int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            iload 5 /* from */
            aaload
            aload 1 /* e1 */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 10
         7: .line 350
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            iload 5 /* from */
            aconst_null
            aastore
         8: .line 351
            iinc 2 /* removed */ 1
         9: .line 352
            goto 14
        10: .line 355
      StackMap locals:
      StackMap stack:
            iload 6 /* to */
            iload 5 /* from */
            if_icmpeq 13
        11: .line 356
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            iload 6 /* to */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            iload 5 /* from */
            aaload
            aastore
        12: .line 357
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            iload 5 /* from */
            aconst_null
            aastore
        13: .line 360
      StackMap locals:
      StackMap stack:
            iload 6 /* to */
            iload 4 /* bufLen */
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneRight:(II)I
            istore 6 /* to */
        14: .line 348
      StackMap locals:
      StackMap stack:
            iload 5 /* from */
            iload 4 /* bufLen */
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneRight:(II)I
            istore 5 /* from */
      StackMap locals:
      StackMap stack:
        15: iload 5 /* from */
            iload 3 /* last */
            if_icmpne 6
        16: .line 363
            aload 0 /* this */
            iload 6 /* to */
            putfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
        17: .line 364
            iload 2 /* removed */
            ireturn
        end local 6 // int to
        end local 5 // int from
        end local 4 // int bufLen
        end local 3 // int last
        end local 2 // int removed
        end local 1 // java.lang.Object e1
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   18     0     this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0   18     1       e1  TKType;
            1   18     2  removed  I
            2   18     3     last  I
            3   18     4   bufLen  I
            5   18     5     from  I
            4   18     6       to  I
    Signature: (TKType;)I
    MethodParameters:
      Name  Flags
      e1    

  public void removeAtBufferIndex(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=9, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // int index
         0: .line 377
            getstatic com.carrotsearch.hppc.ObjectArrayDeque.$assertionsDisabled:Z
            ifne 5
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            if_icmpgt 2
         1: .line 378
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            if_icmplt 3
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            if_icmplt 5
            goto 3
         2: .line 379
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            if_icmpge 5
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            if_icmplt 5
      StackMap locals:
      StackMap stack:
         3: new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "Index out of range (head="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         4: .line 380
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", tail="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", index="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 1 /* index */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         5: .line 383
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            astore 2 /* buffer */
        start local 2 // java.lang.Object[] buffer
         6: .line 384
            aload 2 /* buffer */
            arraylength
            istore 3 /* bufLen */
        start local 3 // int bufLen
         7: .line 385
            iload 3 /* bufLen */
            iconst_1
            isub
            istore 4 /* lastIndex */
        start local 4 // int lastIndex
         8: .line 386
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            istore 5 /* head */
        start local 5 // int head
         9: .line 387
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            istore 6 /* tail */
        start local 6 // int tail
        10: .line 389
            iload 1 /* index */
            iload 5 /* head */
            isub
            invokestatic java.lang.Math.abs:(I)I
            iload 3 /* bufLen */
            irem
            istore 7 /* leftChunk */
        start local 7 // int leftChunk
        11: .line 390
            iload 6 /* tail */
            iload 1 /* index */
            isub
            invokestatic java.lang.Math.abs:(I)I
            iload 3 /* bufLen */
            irem
            istore 8 /* rightChunk */
        start local 8 // int rightChunk
        12: .line 392
            iload 7 /* leftChunk */
            iload 8 /* rightChunk */
            if_icmpge 22
        13: .line 393
            iload 1 /* index */
            iload 5 /* head */
            if_icmplt 16
        14: .line 394
            aload 2 /* buffer */
            iload 5 /* head */
            aload 2 /* buffer */
            iload 5 /* head */
            iconst_1
            iadd
            iload 7 /* leftChunk */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        15: .line 395
            goto 19
        16: .line 396
      StackMap locals: com.carrotsearch.hppc.ObjectArrayDeque int java.lang.Object[] int int int int int int
      StackMap stack:
            aload 2 /* buffer */
            iconst_0
            aload 2 /* buffer */
            iconst_1
            iload 1 /* index */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        17: .line 397
            aload 2 /* buffer */
            iconst_0
            aload 2 /* buffer */
            iload 4 /* lastIndex */
            aaload
            aastore
        18: .line 398
            aload 2 /* buffer */
            iload 5 /* head */
            aload 2 /* buffer */
            iload 5 /* head */
            iconst_1
            iadd
            iload 4 /* lastIndex */
            iload 5 /* head */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        19: .line 400
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            iload 5 /* head */
            aconst_null
            aastore
        20: .line 401
            aload 0 /* this */
            iload 5 /* head */
            iload 3 /* bufLen */
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneRight:(II)I
            putfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
        21: .line 402
            goto 30
        22: .line 403
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            iload 6 /* tail */
            if_icmpge 25
        23: .line 404
            aload 2 /* buffer */
            iload 1 /* index */
            iconst_1
            iadd
            aload 2 /* buffer */
            iload 1 /* index */
            iload 8 /* rightChunk */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        24: .line 405
            goto 28
        25: .line 406
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            iload 1 /* index */
            iconst_1
            iadd
            aload 2 /* buffer */
            iload 1 /* index */
            iload 4 /* lastIndex */
            iload 1 /* index */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        26: .line 407
            aload 2 /* buffer */
            iload 4 /* lastIndex */
            aload 2 /* buffer */
            iconst_0
            aaload
            aastore
        27: .line 408
            aload 2 /* buffer */
            iconst_1
            aload 2 /* buffer */
            iconst_0
            iload 6 /* tail */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        28: .line 410
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            iload 6 /* tail */
            aconst_null
            aastore
        29: .line 411
            aload 0 /* this */
            iload 6 /* tail */
            iload 3 /* bufLen */
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneLeft:(II)I
            putfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
        30: .line 413
      StackMap locals:
      StackMap stack:
            return
        end local 8 // int rightChunk
        end local 7 // int leftChunk
        end local 6 // int tail
        end local 5 // int head
        end local 4 // int lastIndex
        end local 3 // int bufLen
        end local 2 // java.lang.Object[] buffer
        end local 1 // int index
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   31     0        this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0   31     1       index  I
            6   31     2      buffer  [Ljava/lang/Object;
            7   31     3      bufLen  I
            8   31     4   lastIndex  I
            9   31     5        head  I
           10   31     6        tail  I
           11   31     7   leftChunk  I
           12   31     8  rightChunk  I
    MethodParameters:
       Name  Flags
      index  

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
         0: .line 420
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.size:()I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
         0: .line 428
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            if_icmpgt 2
         1: .line 429
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            isub
            ireturn
         2: .line 431
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            isub
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            arraylength
            iadd
            ireturn
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
         0: .line 445
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            if_icmpge 3
         1: .line 446
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;IILjava/lang/Object;)V
         2: .line 447
            goto 5
         3: .line 448
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;IILjava/lang/Object;)V
         4: .line 449
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            arraylength
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;IILjava/lang/Object;)V
         5: .line 451
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            putfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
         6: .line 452
            return
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;

  public void release();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
         0: .line 459
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            putfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
         1: .line 460
            aload 0 /* this */
            getstatic com.carrotsearch.hppc.ObjectArrayList.EMPTY_ARRAY:[Ljava/lang/Object;
            putfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
         2: .line 461
            aload 0 /* this */
            iconst_0
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.ensureBufferSpace:(I)V
         3: .line 462
            return
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;

  public void ensureCapacity(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // int expectedElements
         0: .line 473
            aload 0 /* this */
            iload 1 /* expectedElements */
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.size:()I
            isub
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.ensureBufferSpace:(I)V
         1: .line 474
            return
        end local 1 // int expectedElements
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    2     1  expectedElements  I
    MethodParameters:
                  Name  Flags
      expectedElements  

  protected void ensureBufferSpace(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=8, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // int expectedAdditions
         0: .line 481
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            arraylength
            istore 2 /* bufferLen */
        start local 2 // int bufferLen
         1: .line 482
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.size:()I
            istore 3 /* elementsCount */
        start local 3 // int elementsCount
         2: .line 484
            iload 3 /* elementsCount */
            iload 1 /* expectedAdditions */
            iadd
            iload 2 /* bufferLen */
            if_icmplt 18
         3: .line 486
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.resizer:Lcom/carrotsearch/hppc/ArraySizingStrategy;
            iload 2 /* bufferLen */
            iload 3 /* elementsCount */
            iconst_1
            iadd
            iload 1 /* expectedAdditions */
            invokeinterface com.carrotsearch.hppc.ArraySizingStrategy.grow:(III)I
            istore 4 /* newSize */
        start local 4 // int newSize
         4: .line 487
            getstatic com.carrotsearch.hppc.ObjectArrayDeque.$assertionsDisabled:Z
            ifne 6
            iload 4 /* newSize */
            iload 3 /* elementsCount */
            iload 1 /* expectedAdditions */
            iadd
            iconst_1
            iadd
            if_icmpge 6
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "Resizer failed to return sensible new size: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         5: .line 488
            iload 4 /* newSize */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " <= "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 3 /* elementsCount */
            iload 1 /* expectedAdditions */
            iadd
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         6: .line 491
      StackMap locals: int int int
      StackMap stack:
            iload 4 /* newSize */
            anewarray java.lang.Object
            astore 5 /* newBuffer */
        start local 5 // java.lang.Object[] newBuffer
         7: .line 492
            iload 2 /* bufferLen */
            ifle 11
         8: .line 493
            aload 0 /* this */
            aload 5 /* newBuffer */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            pop
         9: .line 494
            aload 0 /* this */
            iload 3 /* elementsCount */
            putfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
        10: .line 495
            aload 0 /* this */
            iconst_0
            putfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
        11: .line 497
      StackMap locals: java.lang.Object[]
      StackMap stack:
            aload 0 /* this */
            aload 5 /* newBuffer */
            putfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
        end local 5 // java.lang.Object[] newBuffer
        12: .line 498
            goto 18
      StackMap locals: com.carrotsearch.hppc.ObjectArrayDeque int int int int
      StackMap stack: java.lang.OutOfMemoryError
        13: astore 5 /* e */
        start local 5 // java.lang.OutOfMemoryError e
        14: .line 499
            new com.carrotsearch.hppc.BufferAllocationException
            dup
        15: .line 500
            ldc "Not enough memory to allocate new buffers: %,d -> %,d"
        16: .line 501
            aload 5 /* e */
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            iload 2 /* bufferLen */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            iload 4 /* newSize */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
        17: .line 499
            aastore
            invokespecial com.carrotsearch.hppc.BufferAllocationException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;[Ljava/lang/Object;)V
            athrow
        end local 5 // java.lang.OutOfMemoryError e
        end local 4 // int newSize
        18: .line 504
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int elementsCount
        end local 2 // int bufferLen
        end local 1 // int expectedAdditions
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   19     0               this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0   19     1  expectedAdditions  I
            1   19     2          bufferLen  I
            2   19     3      elementsCount  I
            4   18     4            newSize  I
            7   12     5          newBuffer  [Ljava/lang/Object;
           14   18     5                  e  Ljava/lang/OutOfMemoryError;
      Exception table:
        from    to  target  type
           6    12      13  Class java.lang.OutOfMemoryError
    MethodParameters:
                   Name  Flags
      expectedAdditions  

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
         0: .line 514
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.size:()I
            istore 1 /* size */
        start local 1 // int size
         1: .line 515
            aload 0 /* this */
            iload 1 /* size */
            anewarray java.lang.Object
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
        end local 1 // int size
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            1    2     1  size  I

  public KType[] toArray();
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // java.lang.Object[] target
         0: .line 528
            getstatic com.carrotsearch.hppc.ObjectArrayDeque.$assertionsDisabled:Z
            ifne 1
            aload 1 /* target */
            arraylength
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.size:()I
            if_icmpge 1
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "Target array must be >= "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.size:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 530
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            if_icmpge 4
         2: .line 532
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aload 1 /* target */
            iconst_0
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.size:()I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 533
            goto 8
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            if_icmple 8
         5: .line 536
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            arraylength
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            isub
            istore 2 /* rightCount */
        start local 2 // int rightCount
         6: .line 537
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aload 1 /* target */
            iconst_0
            iload 2 /* rightCount */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 538
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            iconst_0
            aload 1 /* target */
            iload 2 /* rightCount */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        end local 2 // int rightCount
         8: .line 541
      StackMap locals:
      StackMap stack:
            aload 1 /* target */
            areturn
        end local 1 // java.lang.Object[] target
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    9     1      target  [Ljava/lang/Object;
            6    8     2  rightCount  I
    Signature: ([TKType;)[TKType;
    MethodParameters:
        Name  Flags
      target  

  public com.carrotsearch.hppc.ObjectArrayDeque<KType> clone();
    descriptor: ()Lcom/carrotsearch/hppc/ObjectArrayDeque;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
         0: .line 552
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.ObjectArrayDeque
            astore 1 /* cloned */
        start local 1 // com.carrotsearch.hppc.ObjectArrayDeque cloned
         1: .line 553
            aload 1 /* cloned */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            invokevirtual java.lang.Object[].clone:()Ljava/lang/Object;
            checkcast java.lang.Object[]
            putfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
         2: .line 554
            aload 1 /* cloned */
         3: areturn
        end local 1 // com.carrotsearch.hppc.ObjectArrayDeque cloned
         4: .line 555
      StackMap locals:
      StackMap stack: java.lang.CloneNotSupportedException
            astore 1 /* e */
        start local 1 // java.lang.CloneNotSupportedException e
         5: .line 556
            new java.lang.RuntimeException
            dup
            aload 1 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.CloneNotSupportedException e
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            1    4     1  cloned  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            5    6     1       e  Ljava/lang/CloneNotSupportedException;
      Exception table:
        from    to  target  type
           0     3       4  Class java.lang.CloneNotSupportedException
    Signature: ()Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;

  protected static int oneLeft(int, int);
    descriptor: (II)I
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // int index
        start local 1 // int modulus
         0: .line 564
            iload 0 /* index */
            iconst_1
            if_icmplt 2
         1: .line 565
            iload 0 /* index */
            iconst_1
            isub
            ireturn
         2: .line 567
      StackMap locals:
      StackMap stack:
            iload 1 /* modulus */
            iconst_1
            isub
            ireturn
        end local 1 // int modulus
        end local 0 // int index
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0    index  I
            0    3     1  modulus  I
    MethodParameters:
         Name  Flags
      index    
      modulus  

  protected static int oneRight(int, int);
    descriptor: (II)I
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // int index
        start local 1 // int modulus
         0: .line 574
            iload 0 /* index */
            iconst_1
            iadd
            iload 1 /* modulus */
            if_icmpne 2
         1: .line 575
            iconst_0
            ireturn
         2: .line 577
      StackMap locals:
      StackMap stack:
            iload 0 /* index */
            iconst_1
            iadd
            ireturn
        end local 1 // int modulus
        end local 0 // int index
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0    index  I
            0    3     1  modulus  I
    MethodParameters:
         Name  Flags
      index    
      modulus  

  public java.util.Iterator<com.carrotsearch.hppc.cursors.ObjectCursor<KType>> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
         0: .line 644
            new com.carrotsearch.hppc.ObjectArrayDeque$ValueIterator
            dup
            aload 0 /* this */
            invokespecial com.carrotsearch.hppc.ObjectArrayDeque$ValueIterator.<init>:(Lcom/carrotsearch/hppc/ObjectArrayDeque;)V
            areturn
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
    Signature: ()Ljava/util/Iterator<Lcom/carrotsearch/hppc/cursors/ObjectCursor<TKType;>;>;

  public java.util.Iterator<com.carrotsearch.hppc.cursors.ObjectCursor<KType>> descendingIterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
         0: .line 662
            new com.carrotsearch.hppc.ObjectArrayDeque$DescendingValueIterator
            dup
            aload 0 /* this */
            invokespecial com.carrotsearch.hppc.ObjectArrayDeque$DescendingValueIterator.<init>:(Lcom/carrotsearch/hppc/ObjectArrayDeque;)V
            areturn
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
    Signature: ()Ljava/util/Iterator<Lcom/carrotsearch/hppc/cursors/ObjectCursor<TKType;>;>;

  public <T extends com.carrotsearch.hppc.procedures.ObjectProcedure<? super KType>> T forEach();
    descriptor: (Lcom/carrotsearch/hppc/procedures/ObjectProcedure;)Lcom/carrotsearch/hppc/procedures/ObjectProcedure;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // com.carrotsearch.hppc.procedures.ObjectProcedure procedure
         0: .line 670
            aload 0 /* this */
            aload 1 /* procedure */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.forEach:(Lcom/carrotsearch/hppc/procedures/ObjectProcedure;II)V
         1: .line 671
            aload 1 /* procedure */
            areturn
        end local 1 // com.carrotsearch.hppc.procedures.ObjectProcedure procedure
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    2     1  procedure  TT;
    Signature: <T::Lcom/carrotsearch/hppc/procedures/ObjectProcedure<-TKType;>;>(TT;)TT;
    MethodParameters:
           Name  Flags
      procedure  

  private void forEach(com.carrotsearch.hppc.procedures.ObjectProcedure<? super KType>, int, );
    descriptor: (Lcom/carrotsearch/hppc/procedures/ObjectProcedure;II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // com.carrotsearch.hppc.procedures.ObjectProcedure procedure
        start local 2 // int fromIndex
        start local 3 // int toIndex
         0: .line 679
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            astore 4 /* buffer */
        start local 4 // java.lang.Object[] buffer
         1: .line 680
            iload 2 /* fromIndex */
            istore 5 /* i */
        start local 5 // int i
         2: goto 5
         3: .line 681
      StackMap locals: java.lang.Object[] int
      StackMap stack:
            aload 1 /* procedure */
            aload 4 /* buffer */
            iload 5 /* i */
            aaload
            invokeinterface com.carrotsearch.hppc.procedures.ObjectProcedure.apply:(Ljava/lang/Object;)V
         4: .line 680
            iload 5 /* i */
            aload 4 /* buffer */
            arraylength
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneRight:(II)I
            istore 5 /* i */
      StackMap locals:
      StackMap stack:
         5: iload 5 /* i */
            iload 3 /* toIndex */
            if_icmpne 3
        end local 5 // int i
         6: .line 683
            return
        end local 4 // java.lang.Object[] buffer
        end local 3 // int toIndex
        end local 2 // int fromIndex
        end local 1 // com.carrotsearch.hppc.procedures.ObjectProcedure procedure
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    7     1  procedure  Lcom/carrotsearch/hppc/procedures/ObjectProcedure<-TKType;>;
            0    7     2  fromIndex  I
            0    7     3    toIndex  I
            1    7     4     buffer  [Ljava/lang/Object;
            2    6     5          i  I
    Signature: (Lcom/carrotsearch/hppc/procedures/ObjectProcedure<-TKType;>;II)V
    MethodParameters:
           Name  Flags
      procedure  
      fromIndex  
      toIndex    final

  public <T extends com.carrotsearch.hppc.predicates.ObjectPredicate<? super KType>> T forEach();
    descriptor: (Lcom/carrotsearch/hppc/predicates/ObjectPredicate;)Lcom/carrotsearch/hppc/predicates/ObjectPredicate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // com.carrotsearch.hppc.predicates.ObjectPredicate predicate
         0: .line 690
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            istore 2 /* fromIndex */
        start local 2 // int fromIndex
         1: .line 691
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            istore 3 /* toIndex */
        start local 3 // int toIndex
         2: .line 693
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            astore 4 /* buffer */
        start local 4 // java.lang.Object[] buffer
         3: .line 694
            iload 2 /* fromIndex */
            istore 5 /* i */
        start local 5 // int i
         4: goto 8
         5: .line 695
      StackMap locals: com.carrotsearch.hppc.ObjectArrayDeque com.carrotsearch.hppc.predicates.ObjectPredicate int int java.lang.Object[] int
      StackMap stack:
            aload 1 /* predicate */
            aload 4 /* buffer */
            iload 5 /* i */
            aaload
            invokeinterface com.carrotsearch.hppc.predicates.ObjectPredicate.apply:(Ljava/lang/Object;)Z
            ifne 7
         6: .line 696
            goto 9
         7: .line 694
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            aload 4 /* buffer */
            arraylength
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneRight:(II)I
            istore 5 /* i */
      StackMap locals:
      StackMap stack:
         8: iload 5 /* i */
            iload 3 /* toIndex */
            if_icmpne 5
        end local 5 // int i
         9: .line 700
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            areturn
        end local 4 // java.lang.Object[] buffer
        end local 3 // int toIndex
        end local 2 // int fromIndex
        end local 1 // com.carrotsearch.hppc.predicates.ObjectPredicate predicate
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0   10     1  predicate  TT;
            1   10     2  fromIndex  I
            2   10     3    toIndex  I
            3   10     4     buffer  [Ljava/lang/Object;
            4    9     5          i  I
    Signature: <T::Lcom/carrotsearch/hppc/predicates/ObjectPredicate<-TKType;>;>(TT;)TT;
    MethodParameters:
           Name  Flags
      predicate  

  public <T extends com.carrotsearch.hppc.procedures.ObjectProcedure<? super KType>> T descendingForEach();
    descriptor: (Lcom/carrotsearch/hppc/procedures/ObjectProcedure;)Lcom/carrotsearch/hppc/procedures/ObjectProcedure;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // com.carrotsearch.hppc.procedures.ObjectProcedure procedure
         0: .line 708
            aload 0 /* this */
            aload 1 /* procedure */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.descendingForEach:(Lcom/carrotsearch/hppc/procedures/ObjectProcedure;II)V
         1: .line 709
            aload 1 /* procedure */
            areturn
        end local 1 // com.carrotsearch.hppc.procedures.ObjectProcedure procedure
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    2     1  procedure  TT;
    Signature: <T::Lcom/carrotsearch/hppc/procedures/ObjectProcedure<-TKType;>;>(TT;)TT;
    MethodParameters:
           Name  Flags
      procedure  

  private void descendingForEach(com.carrotsearch.hppc.procedures.ObjectProcedure<? super KType>, int, );
    descriptor: (Lcom/carrotsearch/hppc/procedures/ObjectProcedure;II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // com.carrotsearch.hppc.procedures.ObjectProcedure procedure
        start local 2 // int fromIndex
        start local 3 // int toIndex
         0: .line 717
            iload 2 /* fromIndex */
            iload 3 /* toIndex */
            if_icmpne 2
         1: .line 718
            return
         2: .line 720
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            astore 4 /* buffer */
        start local 4 // java.lang.Object[] buffer
         3: .line 721
            iload 3 /* toIndex */
            istore 5 /* i */
        start local 5 // int i
         4: .line 723
      StackMap locals: java.lang.Object[] int
      StackMap stack:
            iload 5 /* i */
            aload 4 /* buffer */
            arraylength
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneLeft:(II)I
            istore 5 /* i */
         5: .line 724
            aload 1 /* procedure */
            aload 4 /* buffer */
            iload 5 /* i */
            aaload
            invokeinterface com.carrotsearch.hppc.procedures.ObjectProcedure.apply:(Ljava/lang/Object;)V
         6: .line 725
            iload 5 /* i */
            iload 2 /* fromIndex */
            if_icmpne 4
         7: .line 726
            return
        end local 5 // int i
        end local 4 // java.lang.Object[] buffer
        end local 3 // int toIndex
        end local 2 // int fromIndex
        end local 1 // com.carrotsearch.hppc.procedures.ObjectProcedure procedure
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    8     1  procedure  Lcom/carrotsearch/hppc/procedures/ObjectProcedure<-TKType;>;
            0    8     2  fromIndex  I
            0    8     3    toIndex  I
            3    8     4     buffer  [Ljava/lang/Object;
            4    8     5          i  I
    Signature: (Lcom/carrotsearch/hppc/procedures/ObjectProcedure<-TKType;>;II)V
    MethodParameters:
           Name  Flags
      procedure  
      fromIndex  
      toIndex    final

  public <T extends com.carrotsearch.hppc.predicates.ObjectPredicate<? super KType>> T descendingForEach();
    descriptor: (Lcom/carrotsearch/hppc/predicates/ObjectPredicate;)Lcom/carrotsearch/hppc/predicates/ObjectPredicate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // com.carrotsearch.hppc.predicates.ObjectPredicate predicate
         0: .line 733
            aload 0 /* this */
            aload 1 /* predicate */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.descendingForEach:(Lcom/carrotsearch/hppc/predicates/ObjectPredicate;II)V
         1: .line 734
            aload 1 /* predicate */
            areturn
        end local 1 // com.carrotsearch.hppc.predicates.ObjectPredicate predicate
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    2     1  predicate  TT;
    Signature: <T::Lcom/carrotsearch/hppc/predicates/ObjectPredicate<-TKType;>;>(TT;)TT;
    MethodParameters:
           Name  Flags
      predicate  

  private void descendingForEach(com.carrotsearch.hppc.predicates.ObjectPredicate<? super KType>, int, );
    descriptor: (Lcom/carrotsearch/hppc/predicates/ObjectPredicate;II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // com.carrotsearch.hppc.predicates.ObjectPredicate predicate
        start local 2 // int fromIndex
        start local 3 // int toIndex
         0: .line 743
            iload 2 /* fromIndex */
            iload 3 /* toIndex */
            if_icmpne 2
         1: .line 744
            return
         2: .line 746
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            astore 4 /* buffer */
        start local 4 // java.lang.Object[] buffer
         3: .line 747
            iload 3 /* toIndex */
            istore 5 /* i */
        start local 5 // int i
         4: .line 749
      StackMap locals: java.lang.Object[] int
      StackMap stack:
            iload 5 /* i */
            aload 4 /* buffer */
            arraylength
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneLeft:(II)I
            istore 5 /* i */
         5: .line 750
            aload 1 /* predicate */
            aload 4 /* buffer */
            iload 5 /* i */
            aaload
            invokeinterface com.carrotsearch.hppc.predicates.ObjectPredicate.apply:(Ljava/lang/Object;)Z
            ifne 7
         6: .line 751
            goto 8
         7: .line 753
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            iload 2 /* fromIndex */
            if_icmpne 4
         8: .line 754
      StackMap locals:
      StackMap stack:
            return
        end local 5 // int i
        end local 4 // java.lang.Object[] buffer
        end local 3 // int toIndex
        end local 2 // int fromIndex
        end local 1 // com.carrotsearch.hppc.predicates.ObjectPredicate predicate
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    9     1  predicate  Lcom/carrotsearch/hppc/predicates/ObjectPredicate<-TKType;>;
            0    9     2  fromIndex  I
            0    9     3    toIndex  I
            3    9     4     buffer  [Ljava/lang/Object;
            4    9     5          i  I
    Signature: (Lcom/carrotsearch/hppc/predicates/ObjectPredicate<-TKType;>;II)V
    MethodParameters:
           Name  Flags
      predicate  
      fromIndex  
      toIndex    final

  public int removeAll(com.carrotsearch.hppc.predicates.ObjectPredicate<? super KType>);
    descriptor: (Lcom/carrotsearch/hppc/predicates/ObjectPredicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // com.carrotsearch.hppc.predicates.ObjectPredicate predicate
         0: .line 761
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            astore 2 /* buffer */
        start local 2 // java.lang.Object[] buffer
         1: .line 762
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            istore 3 /* last */
        start local 3 // int last
         2: .line 763
            aload 2 /* buffer */
            arraylength
            istore 4 /* bufLen */
        start local 4 // int bufLen
         3: .line 764
            iconst_0
            istore 5 /* removed */
        start local 5 // int removed
         4: .line 766
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            dup
            istore 7 /* to */
        start local 7 // int to
         5: istore 6 /* from */
        start local 6 // int from
         6: .line 768
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            dup
            istore 7 /* to */
            istore 6 /* from */
            goto 16
         7: .line 769
      StackMap locals: com.carrotsearch.hppc.ObjectArrayDeque com.carrotsearch.hppc.predicates.ObjectPredicate java.lang.Object[] int int int int int
      StackMap stack:
            aload 1 /* predicate */
            aload 2 /* buffer */
            iload 6 /* from */
            aaload
            invokeinterface com.carrotsearch.hppc.predicates.ObjectPredicate.apply:(Ljava/lang/Object;)Z
            ifeq 11
         8: .line 770
            aload 2 /* buffer */
            iload 6 /* from */
            aconst_null
            aastore
         9: .line 771
            iinc 5 /* removed */ 1
        10: .line 772
            goto 15
        11: .line 775
      StackMap locals:
      StackMap stack:
            iload 7 /* to */
            iload 6 /* from */
            if_icmpeq 14
        12: .line 776
            aload 2 /* buffer */
            iload 7 /* to */
            aload 2 /* buffer */
            iload 6 /* from */
            aaload
            aastore
        13: .line 777
            aload 2 /* buffer */
            iload 6 /* from */
            aconst_null
            aastore
        14: .line 780
      StackMap locals:
      StackMap stack:
            iload 7 /* to */
            iload 4 /* bufLen */
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneRight:(II)I
            istore 7 /* to */
        15: .line 768
      StackMap locals:
      StackMap stack:
            iload 6 /* from */
            iload 4 /* bufLen */
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneRight:(II)I
            istore 6 /* from */
      StackMap locals:
      StackMap stack:
        16: iload 6 /* from */
            iload 3 /* last */
            if_icmpne 7
        17: .line 782
            goto 33
      StackMap locals:
      StackMap stack: java.lang.Throwable
        18: astore 8
        19: .line 784
            goto 25
        20: .line 785
      StackMap locals: java.lang.Throwable
      StackMap stack:
            iload 7 /* to */
            iload 6 /* from */
            if_icmpeq 23
        21: .line 786
            aload 2 /* buffer */
            iload 7 /* to */
            aload 2 /* buffer */
            iload 6 /* from */
            aaload
            aastore
        22: .line 787
            aload 2 /* buffer */
            iload 6 /* from */
            aconst_null
            aastore
        23: .line 790
      StackMap locals:
      StackMap stack:
            iload 7 /* to */
            iload 4 /* bufLen */
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneRight:(II)I
            istore 7 /* to */
        24: .line 784
            iload 6 /* from */
            iload 4 /* bufLen */
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneRight:(II)I
            istore 6 /* from */
      StackMap locals:
      StackMap stack:
        25: iload 6 /* from */
            iload 3 /* last */
            if_icmpne 20
        26: .line 792
            aload 0 /* this */
            iload 7 /* to */
            putfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
        27: .line 793
            aload 8
            athrow
        28: .line 785
      StackMap locals:
      StackMap stack:
            iload 7 /* to */
            iload 6 /* from */
            if_icmpeq 31
        29: .line 786
            aload 2 /* buffer */
            iload 7 /* to */
            aload 2 /* buffer */
            iload 6 /* from */
            aaload
            aastore
        30: .line 787
            aload 2 /* buffer */
            iload 6 /* from */
            aconst_null
            aastore
        31: .line 790
      StackMap locals:
      StackMap stack:
            iload 7 /* to */
            iload 4 /* bufLen */
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneRight:(II)I
            istore 7 /* to */
        32: .line 784
            iload 6 /* from */
            iload 4 /* bufLen */
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneRight:(II)I
            istore 6 /* from */
      StackMap locals:
      StackMap stack:
        33: iload 6 /* from */
            iload 3 /* last */
            if_icmpne 28
        34: .line 792
            aload 0 /* this */
            iload 7 /* to */
            putfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
        35: .line 795
            iload 5 /* removed */
            ireturn
        end local 7 // int to
        end local 6 // int from
        end local 5 // int removed
        end local 4 // int bufLen
        end local 3 // int last
        end local 2 // java.lang.Object[] buffer
        end local 1 // com.carrotsearch.hppc.predicates.ObjectPredicate predicate
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   36     0       this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0   36     1  predicate  Lcom/carrotsearch/hppc/predicates/ObjectPredicate<-TKType;>;
            1   36     2     buffer  [Ljava/lang/Object;
            2   36     3       last  I
            3   36     4     bufLen  I
            4   36     5    removed  I
            6   36     6       from  I
            5   36     7         to  I
      Exception table:
        from    to  target  type
           6    18      18  any
    Signature: (Lcom/carrotsearch/hppc/predicates/ObjectPredicate<-TKType;>;)I
    MethodParameters:
           Name  Flags
      predicate  

  public boolean contains();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // java.lang.Object e
         0: .line 803
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            istore 2 /* fromIndex */
        start local 2 // int fromIndex
         1: .line 804
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            istore 3 /* toIndex */
        start local 3 // int toIndex
         2: .line 806
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            astore 4 /* buffer */
        start local 4 // java.lang.Object[] buffer
         3: .line 807
            iload 2 /* fromIndex */
            istore 5 /* i */
        start local 5 // int i
         4: goto 8
         5: .line 808
      StackMap locals: com.carrotsearch.hppc.ObjectArrayDeque java.lang.Object int int java.lang.Object[] int
      StackMap stack:
            aload 0 /* this */
            aload 4 /* buffer */
            iload 5 /* i */
            aaload
            aload 1 /* e */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 7
         6: .line 809
            iconst_1
            ireturn
         7: .line 807
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            aload 4 /* buffer */
            arraylength
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneRight:(II)I
            istore 5 /* i */
      StackMap locals:
      StackMap stack:
         8: iload 5 /* i */
            iload 3 /* toIndex */
            if_icmpne 5
        end local 5 // int i
         9: .line 813
            iconst_0
            ireturn
        end local 4 // java.lang.Object[] buffer
        end local 3 // int toIndex
        end local 2 // int fromIndex
        end local 1 // java.lang.Object e
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0   10     1          e  TKType;
            1   10     2  fromIndex  I
            2   10     3    toIndex  I
            3   10     4     buffer  [Ljava/lang/Object;
            4    9     5          i  I
    Signature: (TKType;)Z
    MethodParameters:
      Name  Flags
      e     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
         0: .line 821
            iconst_1
            istore 1 /* h */
        start local 1 // int h
         1: .line 822
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.head:I
            istore 2 /* fromIndex */
        start local 2 // int fromIndex
         2: .line 823
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.tail:I
            istore 3 /* toIndex */
        start local 3 // int toIndex
         3: .line 825
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            astore 4 /* buffer */
        start local 4 // java.lang.Object[] buffer
         4: .line 826
            iload 2 /* fromIndex */
            istore 5 /* i */
        start local 5 // int i
         5: goto 8
         6: .line 827
      StackMap locals: com.carrotsearch.hppc.ObjectArrayDeque int int int java.lang.Object[] int
      StackMap stack:
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectArrayDeque.buffer:[Ljava/lang/Object;
            iload 5 /* i */
            aaload
            invokestatic com.carrotsearch.hppc.BitMixer.mix:(Ljava/lang/Object;)I
            iadd
            istore 1 /* h */
         7: .line 826
            iload 5 /* i */
            aload 4 /* buffer */
            arraylength
            invokestatic com.carrotsearch.hppc.ObjectArrayDeque.oneRight:(II)I
            istore 5 /* i */
      StackMap locals:
      StackMap stack:
         8: iload 5 /* i */
            iload 3 /* toIndex */
            if_icmpne 6
        end local 5 // int i
         9: .line 829
            iload 1 /* h */
            ireturn
        end local 4 // java.lang.Object[] buffer
        end local 3 // int toIndex
        end local 2 // int fromIndex
        end local 1 // int h
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            1   10     1          h  I
            2   10     2  fromIndex  I
            3   10     3    toIndex  I
            4   10     4     buffer  [Ljava/lang/Object;
            5    9     5          i  I

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // java.lang.Object obj
         0: .line 841
            aload 1 /* obj */
            ifnull 4
         1: .line 842
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* obj */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpne 4
         2: .line 843
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* obj */
            invokevirtual java.lang.Class.cast:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.ObjectArrayDeque
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.equalElements:(Lcom/carrotsearch/hppc/ObjectArrayDeque;)Z
            ifeq 4
         3: .line 841
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         4: iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0    5     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  protected boolean equalElements(com.carrotsearch.hppc.ObjectArrayDeque<?>);
    descriptor: (Lcom/carrotsearch/hppc/ObjectArrayDeque;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
        start local 1 // com.carrotsearch.hppc.ObjectArrayDeque other
         0: .line 852
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.size:()I
            istore 2 /* max */
        start local 2 // int max
         1: .line 853
            aload 1 /* other */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.size:()I
            iload 2 /* max */
            if_icmpeq 3
         2: .line 854
            iconst_0
            ireturn
         3: .line 857
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.iterator:()Ljava/util/Iterator;
            astore 3 /* i1 */
        start local 3 // java.util.Iterator i1
         4: .line 858
            aload 1 /* other */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.iterator:()Ljava/util/Iterator;
            astore 4 /* i2 */
        start local 4 // java.util.Iterator i2
         5: .line 860
            goto 8
         6: .line 861
      StackMap locals: java.util.Iterator java.util.Iterator
      StackMap stack:
            aload 0 /* this */
            aload 4 /* i2 */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ObjectCursor
            getfield com.carrotsearch.hppc.cursors.ObjectCursor.value:Ljava/lang/Object;
            aload 3 /* i1 */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ObjectCursor
            getfield com.carrotsearch.hppc.cursors.ObjectCursor.value:Ljava/lang/Object;
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 8
         7: .line 862
            iconst_0
            ireturn
         8: .line 860
      StackMap locals:
      StackMap stack:
            aload 3 /* i1 */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifeq 9
            aload 4 /* i2 */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
         9: .line 866
      StackMap locals:
      StackMap stack:
            aload 3 /* i1 */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 12
        10: .line 867
            aload 4 /* i2 */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 12
        11: .line 866
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        12: iconst_0
            ireturn
        end local 4 // java.util.Iterator i2
        end local 3 // java.util.Iterator i1
        end local 2 // int max
        end local 1 // com.carrotsearch.hppc.ObjectArrayDeque other
        end local 0 // com.carrotsearch.hppc.ObjectArrayDeque this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
            0   13     1  other  Lcom/carrotsearch/hppc/ObjectArrayDeque<*>;
            1   13     2    max  I
            4   13     3     i1  Ljava/util/Iterator<Lcom/carrotsearch/hppc/cursors/ObjectCursor<TKType;>;>;
            5   13     4     i2  Ljava/util/Iterator<+Lcom/carrotsearch/hppc/cursors/ObjectCursor<*>;>;
    Signature: (Lcom/carrotsearch/hppc/ObjectArrayDeque<*>;)Z
    MethodParameters:
       Name  Flags
      other  

  public static <KType> com.carrotsearch.hppc.ObjectArrayDeque<KType> from(KType[]);
    descriptor: ([Ljava/lang/Object;)Lcom/carrotsearch/hppc/ObjectArrayDeque;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.lang.Object[] elements
         0: .line 878
            new com.carrotsearch.hppc.ObjectArrayDeque
            dup
            aload 0 /* elements */
            arraylength
            invokespecial com.carrotsearch.hppc.ObjectArrayDeque.<init>:(I)V
            astore 1 /* coll */
        start local 1 // com.carrotsearch.hppc.ObjectArrayDeque coll
         1: .line 879
            aload 1 /* coll */
            aload 0 /* elements */
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.addLast:([Ljava/lang/Object;)V
         2: .line 880
            aload 1 /* coll */
            areturn
        end local 1 // com.carrotsearch.hppc.ObjectArrayDeque coll
        end local 0 // java.lang.Object[] elements
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0  elements  [Ljava/lang/Object;
            1    3     1      coll  Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
    Signature: <KType:Ljava/lang/Object;>([TKType;)Lcom/carrotsearch/hppc/ObjectArrayDeque<TKType;>;
    RuntimeVisibleAnnotations: 
      java.lang.SafeVarargs()
    MethodParameters:
          Name  Flags
      elements  

  public int retainAll(com.carrotsearch.hppc.predicates.ObjectPredicate);
    descriptor: (Lcom/carrotsearch/hppc/predicates/ObjectPredicate;)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 com.carrotsearch.hppc.AbstractObjectCollection.retainAll:(Lcom/carrotsearch/hppc/predicates/ObjectPredicate;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int retainAll(com.carrotsearch.hppc.ObjectLookupContainer);
    descriptor: (Lcom/carrotsearch/hppc/ObjectLookupContainer;)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 com.carrotsearch.hppc.AbstractObjectCollection.retainAll:(Lcom/carrotsearch/hppc/ObjectLookupContainer;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial com.carrotsearch.hppc.AbstractObjectCollection.toString:()Ljava/lang/String;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int removeAll(com.carrotsearch.hppc.ObjectLookupContainer);
    descriptor: (Lcom/carrotsearch/hppc/ObjectLookupContainer;)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 com.carrotsearch.hppc.AbstractObjectCollection.removeAll:(Lcom/carrotsearch/hppc/ObjectLookupContainer;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object[] toArray(java.lang.Class);
    descriptor: (Ljava/lang/Class;)[Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokespecial com.carrotsearch.hppc.AbstractObjectCollection.toArray:(Ljava/lang/Class;)[Ljava/lang/Object;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.carrotsearch.hppc.ObjectArrayDeque.clone:()Lcom/carrotsearch/hppc/ObjectArrayDeque;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
Signature: <KType:Ljava/lang/Object;>Lcom/carrotsearch/hppc/AbstractObjectCollection<TKType;>;Lcom/carrotsearch/hppc/ObjectDeque<TKType;>;Lcom/carrotsearch/hppc/Preallocable;Ljava/lang/Cloneable;
SourceFile: "ObjectArrayDeque.java"
NestMembers:
  com.carrotsearch.hppc.ObjectArrayDeque$DescendingValueIterator  com.carrotsearch.hppc.ObjectArrayDeque$ValueIterator
InnerClasses:
  private final DescendingValueIterator = com.carrotsearch.hppc.ObjectArrayDeque$DescendingValueIterator of com.carrotsearch.hppc.ObjectArrayDeque
  private final ValueIterator = com.carrotsearch.hppc.ObjectArrayDeque$ValueIterator of com.carrotsearch.hppc.ObjectArrayDeque