public class org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack extends org.eclipse.collections.impl.stack.primitive.AbstractDoubleStack implements org.eclipse.collections.api.stack.primitive.MutableDoubleStack, java.io.Externalizable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack
  super_class: org.eclipse.collections.impl.stack.primitive.AbstractDoubleStack
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private transient org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList delegate;
    descriptor: Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
         0: .line 43
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.stack.primitive.AbstractDoubleStack.<init>:()V
         1: .line 45
            aload 0 /* this */
            new org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList
            dup
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.<init>:()V
            putfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
         2: .line 46
            return
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;

  private void <init>(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
        start local 1 // int size
         0: .line 48
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.stack.primitive.AbstractDoubleStack.<init>:()V
         1: .line 50
            aload 0 /* this */
            new org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList
            dup
            iload 1 /* size */
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.<init>:(I)V
            putfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
         2: .line 51
            return
        end local 1 // int size
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
            0    3     1  size  I
    MethodParameters:
      Name  Flags
      size  

  private void <init>(double[]);
    descriptor: ([D)V
    flags: (0x0082) ACC_PRIVATE, ACC_VARARGS
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
        start local 1 // double[] items
         0: .line 53
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.stack.primitive.AbstractDoubleStack.<init>:()V
         1: .line 55
            aload 0 /* this */
            new org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList
            dup
            aload 1 /* items */
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.<init>:([D)V
            putfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
         2: .line 56
            return
        end local 1 // double[] items
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
            0    3     1  items  [D
    MethodParameters:
       Name  Flags
      items  

  public static org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack newStackFromTopToBottom(double[]);
    descriptor: ([D)Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // double[] items
         0: .line 60
            new org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack
            dup
            aload 0 /* items */
            arraylength
            invokespecial org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.<init>:(I)V
            astore 1 /* stack */
        start local 1 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack stack
         1: .line 61
            aload 0 /* items */
            arraylength
            iconst_1
            isub
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 63
      StackMap locals: org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack int
      StackMap stack:
            aload 1 /* stack */
            aload 0 /* items */
            iload 2 /* i */
            daload
            invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.push:(D)V
         4: .line 61
            iinc 2 /* i */ -1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            ifge 3
        end local 2 // int i
         6: .line 65
            aload 1 /* stack */
            areturn
        end local 1 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack stack
        end local 0 // double[] items
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0  items  [D
            1    7     1  stack  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
            2    6     2      i  I
    MethodParameters:
       Name  Flags
      items  

  public static org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack newStackWith(double[]);
    descriptor: ([D)Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // double[] items
         0: .line 70
            new org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack
            dup
            aload 0 /* items */
            invokespecial org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.<init>:([D)V
            areturn
        end local 0 // double[] items
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  items  [D
    MethodParameters:
       Name  Flags
      items  

  public static org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack newStack(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.collections.api.DoubleIterable items
         0: .line 75
            new org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack
            dup
            aload 0 /* items */
            invokeinterface org.eclipse.collections.api.DoubleIterable.size:()I
            invokespecial org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.<init>:(I)V
            astore 1 /* stack */
        start local 1 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack stack
         1: .line 76
            aload 1 /* stack */
            aload 0 /* items */
            invokestatic org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.newList:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
            putfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
         2: .line 77
            aload 1 /* stack */
            areturn
        end local 1 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack stack
        end local 0 // org.eclipse.collections.api.DoubleIterable items
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0  items  Lorg/eclipse/collections/api/DoubleIterable;
            1    3     1  stack  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
    MethodParameters:
       Name  Flags
      items  

  public static org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack newStackFromTopToBottom(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.collections.api.DoubleIterable items
         0: .line 82
            new org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack
            dup
            aload 0 /* items */
            invokeinterface org.eclipse.collections.api.DoubleIterable.size:()I
            invokespecial org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.<init>:(I)V
            astore 1 /* stack */
        start local 1 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack stack
         1: .line 83
            aload 1 /* stack */
            aload 0 /* items */
            invokestatic org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.newList:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.reverseThis:()Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
            putfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
         2: .line 84
            aload 1 /* stack */
            areturn
        end local 1 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack stack
        end local 0 // org.eclipse.collections.api.DoubleIterable items
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0  items  Lorg/eclipse/collections/api/DoubleIterable;
            1    3     1  stack  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
    MethodParameters:
       Name  Flags
      items  

  protected org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList getDelegate();
    descriptor: ()Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
         0: .line 90
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;

  public void push(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
        start local 1 // double item
         0: .line 96
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
            dload 1 /* item */
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.add:(D)Z
            pop
         1: .line 97
            return
        end local 1 // double item
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
            0    2     1  item  D
    MethodParameters:
      Name  Flags
      item  

  public double pop();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
         0: .line 102
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.checkEmptyStack:()V
         1: .line 103
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.size:()I
            iconst_1
            isub
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.removeAtIndex:(I)D
            dreturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;

  public org.eclipse.collections.api.list.primitive.DoubleList pop(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/primitive/DoubleList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
        start local 1 // int count
         0: .line 109
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.checkPositiveValueForCount:(I)V
         1: .line 110
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.checkSizeLessThanCount:(I)V
         2: .line 111
            iload 1 /* count */
            ifne 4
         3: .line 113
            new org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList
            dup
            iconst_0
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.<init>:(I)V
            areturn
         4: .line 115
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList
            dup
            iload 1 /* count */
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.<init>:(I)V
            astore 2 /* subList */
        start local 2 // org.eclipse.collections.api.list.primitive.MutableDoubleList subList
         5: .line 116
            goto 8
         6: .line 118
      StackMap locals: org.eclipse.collections.api.list.primitive.MutableDoubleList
      StackMap stack:
            aload 2 /* subList */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.pop:()D
            invokeinterface org.eclipse.collections.api.list.primitive.MutableDoubleList.add:(D)Z
            pop
         7: .line 119
            iinc 1 /* count */ -1
         8: .line 116
      StackMap locals:
      StackMap stack:
            iload 1 /* count */
            ifgt 6
         9: .line 121
            aload 2 /* subList */
            areturn
        end local 2 // org.eclipse.collections.api.list.primitive.MutableDoubleList subList
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
            0   10     1    count  I
            5   10     2  subList  Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
    MethodParameters:
       Name  Flags
      count  

  public org.eclipse.collections.api.stack.primitive.MutableDoubleStack select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
         0: .line 127
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.asReversed:()Lorg/eclipse/collections/api/LazyDoubleIterable;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.LazyDoubleIterable.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/LazyDoubleIterable;
            invokestatic org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.newStackFromTopToBottom:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.stack.primitive.MutableDoubleStack reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
         0: .line 133
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.asReversed:()Lorg/eclipse/collections/api/LazyDoubleIterable;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.LazyDoubleIterable.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/LazyDoubleIterable;
            invokestatic org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.newStackFromTopToBottom:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public <V> org.eclipse.collections.api.stack.MutableStack<V> collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/stack/MutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction function
         0: .line 139
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.asReversed:()Lorg/eclipse/collections/api/LazyDoubleIterable;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.LazyDoubleIterable.collect:(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/LazyIterable;
            invokestatic org.eclipse.collections.impl.stack.mutable.ArrayStack.newStackFromTopToBottom:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction function
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction<+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction<+TV;>;)Lorg/eclipse/collections/api/stack/MutableStack<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
         0: .line 145
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.clear:()V
         1: .line 146
            return
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;

  public org.eclipse.collections.api.list.primitive.MutableDoubleList toSortedList();
    descriptor: ()Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
         0: .line 151
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.newList:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.sortThis:()Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;

  public org.eclipse.collections.api.stack.primitive.MutableDoubleStack asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
         0: .line 157
            new org.eclipse.collections.impl.stack.mutable.primitive.UnmodifiableDoubleStack
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.stack.mutable.primitive.UnmodifiableDoubleStack.<init>:(Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;)V
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;

  public org.eclipse.collections.api.stack.primitive.MutableDoubleStack asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
         0: .line 163
            new org.eclipse.collections.impl.stack.mutable.primitive.SynchronizedDoubleStack
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.stack.mutable.primitive.SynchronizedDoubleStack.<init>:(Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;)V
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;

  public org.eclipse.collections.api.stack.primitive.ImmutableDoubleStack toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/stack/primitive/ImmutableDoubleStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
         0: .line 169
            getstatic org.eclipse.collections.impl.factory.primitive.DoubleStacks.immutable:Lorg/eclipse/collections/api/factory/stack/primitive/ImmutableDoubleStackFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
            invokeinterface org.eclipse.collections.api.factory.stack.primitive.ImmutableDoubleStackFactory.withAll:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/api/stack/primitive/ImmutableDoubleStack;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;

  public org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack newEmpty();
    descriptor: ()Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
         0: .line 179
            new org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack
            dup
            invokespecial org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.<init>:()V
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;

  public void writeExternal(java.io.ObjectOutput);
    descriptor: (Ljava/io/ObjectOutput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
        start local 1 // java.io.ObjectOutput out
         0: .line 185
            aload 1 /* out */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.size:()I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         1: .line 186
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.asReversed:()Lorg/eclipse/collections/api/LazyDoubleIterable;
            invokeinterface org.eclipse.collections.api.LazyDoubleIterable.doubleIterator:()Lorg/eclipse/collections/api/iterator/DoubleIterator;
            astore 2 /* iterator */
        start local 2 // org.eclipse.collections.api.iterator.DoubleIterator iterator
         2: .line 187
            goto 5
         3: .line 189
      StackMap locals: org.eclipse.collections.api.iterator.DoubleIterator
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            dstore 3 /* each */
        start local 3 // double each
         4: .line 190
            aload 1 /* out */
            dload 3 /* each */
            invokeinterface java.io.ObjectOutput.writeDouble:(D)V
        end local 3 // double each
         5: .line 187
      StackMap locals:
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 3
         6: .line 192
            return
        end local 2 // org.eclipse.collections.api.iterator.DoubleIterator iterator
        end local 1 // java.io.ObjectOutput out
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
            0    7     1       out  Ljava/io/ObjectOutput;
            2    7     2  iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
            4    5     3      each  D
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  public void readExternal(java.io.ObjectInput);
    descriptor: (Ljava/io/ObjectInput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
        start local 1 // java.io.ObjectInput in
         0: .line 197
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 198
            iload 2 /* size */
            newarray 7
            astore 3 /* array */
        start local 3 // double[] array
         2: .line 199
            iload 2 /* size */
            iconst_1
            isub
            istore 4 /* i */
        start local 4 // int i
         3: goto 6
         4: .line 201
      StackMap locals: int double[] int
      StackMap stack:
            aload 3 /* array */
            iload 4 /* i */
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readDouble:()D
            dastore
         5: .line 199
            iinc 4 /* i */ -1
      StackMap locals:
      StackMap stack:
         6: iload 4 /* i */
            ifge 4
        end local 4 // int i
         7: .line 203
            aload 0 /* this */
            aload 3 /* array */
            invokestatic org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.newListWith:([D)Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
            putfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
         8: .line 204
            return
        end local 3 // double[] array
        end local 2 // int size
        end local 1 // java.io.ObjectInput in
        end local 0 // org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
            0    9     1     in  Ljava/io/ObjectInput;
            1    9     2   size  I
            2    9     3  array  [D
            3    7     4      i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

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

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

  public org.eclipse.collections.api.stack.primitive.DoubleStack select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/stack/primitive/DoubleStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

  public org.eclipse.collections.api.stack.StackIterable collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/stack/StackIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.collect:(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/stack/MutableStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

  public org.eclipse.collections.api.stack.primitive.DoubleStack reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/stack/primitive/DoubleStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.stack.primitive.MutableDoubleStack newEmpty();
    descriptor: ()Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.newEmpty:()Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "DoubleArrayStack.java"