class org.pcollections.AmortizedPQueue$1 implements java.util.Iterator<E>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.pcollections.AmortizedPQueue$1
  super_class: java.lang.Object
{
  private org.pcollections.PQueue<E> queue;
    descriptor: Lorg/pcollections/PQueue;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lorg/pcollections/PQueue<TE;>;

  final org.pcollections.AmortizedPQueue this$0;
    descriptor: Lorg/pcollections/AmortizedPQueue;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(org.pcollections.AmortizedPQueue);
    descriptor: (Lorg/pcollections/AmortizedPQueue;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.pcollections.AmortizedPQueue$1 this
         0: .line 61
            aload 0 /* this */
            aload 1
            putfield org.pcollections.AmortizedPQueue$1.this$0:Lorg/pcollections/AmortizedPQueue;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 62
            aload 0 /* this */
            aload 1
            putfield org.pcollections.AmortizedPQueue$1.queue:Lorg/pcollections/PQueue;
         2: .line 61
            return
        end local 0 // org.pcollections.AmortizedPQueue$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/pcollections/AmortizedPQueue$1;
    MethodParameters:
        Name  Flags
      this$0  final

  public boolean hasNext();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.pcollections.AmortizedPQueue$1 this
         0: .line 65
            aload 0 /* this */
            getfield org.pcollections.AmortizedPQueue$1.queue:Lorg/pcollections/PQueue;
            invokeinterface org.pcollections.PQueue.size:()I
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.pcollections.AmortizedPQueue$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/pcollections/AmortizedPQueue$1;

  public E next();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.pcollections.AmortizedPQueue$1 this
         0: .line 69
            aload 0 /* this */
            getfield org.pcollections.AmortizedPQueue$1.queue:Lorg/pcollections/PQueue;
            invokeinterface org.pcollections.PQueue.peek:()Ljava/lang/Object;
            astore 1 /* e */
        start local 1 // java.lang.Object e
         1: .line 70
            aload 0 /* this */
            aload 0 /* this */
            getfield org.pcollections.AmortizedPQueue$1.queue:Lorg/pcollections/PQueue;
            invokeinterface org.pcollections.PQueue.minus:()Lorg/pcollections/PQueue;
            putfield org.pcollections.AmortizedPQueue$1.queue:Lorg/pcollections/PQueue;
         2: .line 71
            aload 1 /* e */
            areturn
        end local 1 // java.lang.Object e
        end local 0 // org.pcollections.AmortizedPQueue$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/pcollections/AmortizedPQueue$1;
            1    3     1     e  TE;
    Signature: ()TE;

  public void remove();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.pcollections.AmortizedPQueue$1 this
         0: .line 75
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // org.pcollections.AmortizedPQueue$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/pcollections/AmortizedPQueue$1;
}
Signature: Ljava/lang/Object;Ljava/util/Iterator<TE;>;
SourceFile: "AmortizedPQueue.java"
EnclosingMethod: org.pcollections.AmortizedPQueue.iterator:()Ljava/util/Iterator;
NestHost: org.pcollections.AmortizedPQueue
InnerClasses:
  org.pcollections.AmortizedPQueue$1