final class org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack extends org.eclipse.collections.impl.stack.primitive.AbstractIntStack implements org.eclipse.collections.api.stack.primitive.ImmutableIntStack, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack
  super_class: org.eclipse.collections.impl.stack.primitive.AbstractIntStack
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private final org.eclipse.collections.impl.list.mutable.primitive.IntArrayList delegate;
    descriptor: Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  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.immutable.primitive.ImmutableIntArrayStack this
        start local 1 // int[] newElements
         0: .line 45
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.stack.primitive.AbstractIntStack.<init>:()V
         1: .line 47
            aload 0 /* this */
            aload 1 /* newElements */
            arraylength
            invokevirtual org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.checkOptimizedSize:(I)V
         2: .line 48
            aload 0 /* this */
            new org.eclipse.collections.impl.list.mutable.primitive.IntArrayList
            dup
            aload 1 /* newElements */
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.<init>:([I)V
            putfield org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
         3: .line 49
            return
        end local 1 // int[] newElements
        end local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;
            0    4     1  newElements  [I
    MethodParameters:
             Name  Flags
      newElements  

  private void <init>(org.eclipse.collections.impl.list.mutable.primitive.IntArrayList);
    descriptor: (Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
        start local 1 // org.eclipse.collections.impl.list.mutable.primitive.IntArrayList newElements
         0: .line 51
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.stack.primitive.AbstractIntStack.<init>:()V
         1: .line 53
            aload 0 /* this */
            aload 1 /* newElements */
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.size:()I
            invokevirtual org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.checkOptimizedSize:(I)V
         2: .line 54
            aload 0 /* this */
            aload 1 /* newElements */
            putfield org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
         3: .line 55
            return
        end local 1 // org.eclipse.collections.impl.list.mutable.primitive.IntArrayList newElements
        end local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;
            0    4     1  newElements  Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
    MethodParameters:
             Name  Flags
      newElements  

  private void checkOptimizedSize(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
        start local 1 // int length
         0: .line 59
            iload 1 /* length */
            iconst_1
            if_icmpgt 2
         1: .line 61
            new java.lang.IllegalArgumentException
            dup
            ldc "Use IntStacks.immutable.with() to instantiate an optimized collection"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 63
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int length
        end local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;
            0    3     1  length  I
    MethodParameters:
        Name  Flags
      length  

  public static org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack newStack(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.api.IntIterable iterable
         0: .line 67
            new org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack
            dup
            aload 0 /* iterable */
            invokeinterface org.eclipse.collections.api.IntIterable.toArray:()[I
            invokespecial org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.<init>:([I)V
            areturn
        end local 0 // org.eclipse.collections.api.IntIterable iterable
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  iterable  Lorg/eclipse/collections/api/IntIterable;
    MethodParameters:
          Name  Flags
      iterable  

  public static org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack newStackWith(int[]);
    descriptor: ([I)Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // int[] elements
         0: .line 72
            aload 0 /* elements */
            arraylength
            newarray 10
            astore 1 /* newArray */
        start local 1 // int[] newArray
         1: .line 73
            aload 0 /* elements */
            iconst_0
            aload 1 /* newArray */
            iconst_0
            aload 0 /* elements */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 74
            new org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack
            dup
            aload 1 /* newArray */
            invokespecial org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.<init>:([I)V
            areturn
        end local 1 // int[] newArray
        end local 0 // int[] elements
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0  elements  [I
            1    3     1  newArray  [I
    MethodParameters:
          Name  Flags
      elements  

  public static org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack newStackFromTopToBottom(int[]);
    descriptor: ([I)Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int[] items
         0: .line 79
            new org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack
            dup
            aload 0 /* items */
            invokestatic org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.newListWith:([I)Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.reverseThis:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokespecial org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.<init>:(Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;)V
            areturn
        end local 0 // int[] items
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  items  [I
    MethodParameters:
       Name  Flags
      items  

  public static org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack newStackFromTopToBottom(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.api.IntIterable items
         0: .line 84
            new org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack
            dup
            aload 0 /* items */
            invokestatic org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.newList:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.reverseThis:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokespecial org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.<init>:(Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;)V
            areturn
        end local 0 // org.eclipse.collections.api.IntIterable items
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  items  Lorg/eclipse/collections/api/IntIterable;
    MethodParameters:
       Name  Flags
      items  

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

  public org.eclipse.collections.api.stack.primitive.ImmutableIntStack push(int);
    descriptor: (I)Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
        start local 1 // int item
         0: .line 96
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokestatic org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.newList:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            astore 2 /* newDelegate */
        start local 2 // org.eclipse.collections.impl.list.mutable.primitive.IntArrayList newDelegate
         1: .line 97
            aload 2 /* newDelegate */
            iload 1 /* item */
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.add:(I)Z
            pop
         2: .line 98
            new org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack
            dup
            aload 2 /* newDelegate */
            invokespecial org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.<init>:(Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;)V
            areturn
        end local 2 // org.eclipse.collections.impl.list.mutable.primitive.IntArrayList newDelegate
        end local 1 // int item
        end local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;
            0    3     1         item  I
            1    3     2  newDelegate  Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
    MethodParameters:
      Name  Flags
      item  

  public org.eclipse.collections.api.stack.primitive.ImmutableIntStack pop();
    descriptor: ()Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
         0: .line 104
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokestatic org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.newList:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            astore 1 /* newDelegate */
        start local 1 // org.eclipse.collections.impl.list.mutable.primitive.IntArrayList newDelegate
         1: .line 105
            aload 1 /* newDelegate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.size:()I
            iconst_1
            isub
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.removeAtIndex:(I)I
            pop
         2: .line 106
            getstatic org.eclipse.collections.impl.factory.primitive.IntStacks.immutable:Lorg/eclipse/collections/api/factory/stack/primitive/ImmutableIntStackFactory;
            aload 1 /* newDelegate */
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.toArray:()[I
            invokeinterface org.eclipse.collections.api.factory.stack.primitive.ImmutableIntStackFactory.with:([I)Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
            areturn
        end local 1 // org.eclipse.collections.impl.list.mutable.primitive.IntArrayList newDelegate
        end local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;
            1    3     1  newDelegate  Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;

  public org.eclipse.collections.api.stack.primitive.ImmutableIntStack pop(int);
    descriptor: (I)Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
        start local 1 // int count
         0: .line 112
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.checkNegativeCount:(I)V
         1: .line 113
            iload 1 /* count */
            ifne 3
         2: .line 115
            aload 0 /* this */
            areturn
         3: .line 117
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.checkSizeLessThanCount:(I)V
         4: .line 118
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokestatic org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.newList:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            astore 2 /* newDelegate */
        start local 2 // org.eclipse.collections.impl.list.mutable.primitive.IntArrayList newDelegate
         5: .line 119
            goto 8
         6: .line 121
      StackMap locals: org.eclipse.collections.impl.list.mutable.primitive.IntArrayList
      StackMap stack:
            aload 2 /* newDelegate */
            aload 2 /* newDelegate */
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.size:()I
            iconst_1
            isub
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.removeAtIndex:(I)I
            pop
         7: .line 122
            iinc 1 /* count */ -1
         8: .line 119
      StackMap locals:
      StackMap stack:
            iload 1 /* count */
            ifgt 6
         9: .line 124
            getstatic org.eclipse.collections.impl.factory.primitive.IntStacks.immutable:Lorg/eclipse/collections/api/factory/stack/primitive/ImmutableIntStackFactory;
            aload 2 /* newDelegate */
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.toArray:()[I
            invokeinterface org.eclipse.collections.api.factory.stack.primitive.ImmutableIntStackFactory.with:([I)Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
            areturn
        end local 2 // org.eclipse.collections.impl.list.mutable.primitive.IntArrayList newDelegate
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   10     0         this  Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;
            0   10     1        count  I
            5   10     2  newDelegate  Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
    MethodParameters:
       Name  Flags
      count  

  private void checkNegativeCount(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
        start local 1 // int count
         0: .line 129
            iload 1 /* count */
            ifge 2
         1: .line 131
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Count must be positive but was "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* count */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 133
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;
            0    3     1  count  I
    MethodParameters:
       Name  Flags
      count  

  public org.eclipse.collections.api.stack.primitive.ImmutableIntStack select(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
         0: .line 138
            getstatic org.eclipse.collections.impl.factory.primitive.IntStacks.immutable:Lorg/eclipse/collections/api/factory/stack/primitive/ImmutableIntStackFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.asReversed:()Lorg/eclipse/collections/api/LazyIntIterable;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.LazyIntIterable.select:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/LazyIntIterable;
            invokeinterface org.eclipse.collections.api.factory.stack.primitive.ImmutableIntStackFactory.withAllReversed:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
        end local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.stack.primitive.ImmutableIntStack reject(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
         0: .line 144
            getstatic org.eclipse.collections.impl.factory.primitive.IntStacks.immutable:Lorg/eclipse/collections/api/factory/stack/primitive/ImmutableIntStackFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.asReversed:()Lorg/eclipse/collections/api/LazyIntIterable;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.LazyIntIterable.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/LazyIntIterable;
            invokeinterface org.eclipse.collections.api.factory.stack.primitive.ImmutableIntStackFactory.withAllReversed:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
        end local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public <V> org.eclipse.collections.api.stack.ImmutableStack<V> collect(org.eclipse.collections.api.block.function.primitive.IntToObjectFunction<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)Lorg/eclipse/collections/api/stack/ImmutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntToObjectFunction function
         0: .line 150
            getstatic org.eclipse.collections.impl.factory.Stacks.immutable:Lorg/eclipse/collections/api/factory/stack/ImmutableStackFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.asReversed:()Lorg/eclipse/collections/api/LazyIntIterable;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.LazyIntIterable.collect:(Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)Lorg/eclipse/collections/api/LazyIterable;
            invokeinterface org.eclipse.collections.api.factory.stack.ImmutableStackFactory.withAllReversed:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntToObjectFunction function
        end local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction<+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction<+TV;>;)Lorg/eclipse/collections/api/stack/ImmutableStack<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.stack.primitive.ImmutableIntStack toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
         0: .line 156
            aload 0 /* this */
            areturn
        end local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
         0: .line 162
            iconst_0
            ireturn
        end local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;

  public boolean notEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
         0: .line 168
            iconst_1
            ireturn
        end local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;

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

  private java.lang.Object writeReplace();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
         0: .line 179
            new org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack$ImmutableIntStackSerializationProxy
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack$ImmutableIntStackSerializationProxy.<init>:(Lorg/eclipse/collections/api/stack/primitive/IntStack;)V
            areturn
        end local 0 // org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/immutable/primitive/ImmutableIntArrayStack;

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

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

  public org.eclipse.collections.api.stack.primitive.IntStack select(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/stack/primitive/IntStack;
    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.immutable.primitive.ImmutableIntArrayStack.select:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

  public org.eclipse.collections.api.stack.StackIterable collect(org.eclipse.collections.api.block.function.primitive.IntToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)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.IntToObjectFunction
            invokevirtual org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack.collect:(Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)Lorg/eclipse/collections/api/stack/ImmutableStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

  public org.eclipse.collections.api.stack.primitive.IntStack reject(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/stack/primitive/IntStack;
    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.immutable.primitive.ImmutableIntArrayStack.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "ImmutableIntArrayStack.java"
NestMembers:
  org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack$ImmutableIntStackSerializationProxy  org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack$ImmutableIntStackSerializationProxy$1
InnerClasses:
  private ImmutableIntStackSerializationProxy = org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack$ImmutableIntStackSerializationProxy of org.eclipse.collections.impl.stack.immutable.primitive.ImmutableIntArrayStack