public abstract class org.eclipse.collections.impl.stack.primitive.AbstractIntStack implements org.eclipse.collections.api.stack.primitive.IntStack
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.eclipse.collections.impl.stack.primitive.AbstractIntStack
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 38
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  protected abstract org.eclipse.collections.impl.list.mutable.primitive.IntArrayList getDelegate();
    descriptor: ()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT

  protected void checkEmptyStack();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 44
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.isEmpty:()Z
            ifeq 2
         1: .line 46
            new java.util.EmptyStackException
            dup
            invokespecial java.util.EmptyStackException.<init>:()V
            athrow
         2: .line 48
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public int peek();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 53
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.checkEmptyStack:()V
         1: .line 54
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.getLast:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public org.eclipse.collections.api.list.primitive.IntList peek(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/primitive/IntList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // int count
         0: .line 60
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.checkPositiveValueForCount:(I)V
         1: .line 61
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.checkSizeLessThanCount:(I)V
         2: .line 62
            iload 1 /* count */
            ifne 4
         3: .line 64
            new org.eclipse.collections.impl.list.mutable.primitive.IntArrayList
            dup
            iconst_0
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.<init>:(I)V
            areturn
         4: .line 66
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.list.mutable.primitive.IntArrayList
            dup
            iload 1 /* count */
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.<init>:(I)V
            astore 2 /* subList */
        start local 2 // org.eclipse.collections.api.list.primitive.MutableIntList subList
         5: .line 67
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.size:()I
            iconst_1
            isub
            istore 3 /* index */
        start local 3 // int index
         6: .line 68
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         7: goto 10
         8: .line 70
      StackMap locals: org.eclipse.collections.api.list.primitive.MutableIntList int int
      StackMap stack:
            aload 2 /* subList */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            iload 3 /* index */
            iload 4 /* i */
            isub
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.get:(I)I
            invokeinterface org.eclipse.collections.api.list.primitive.MutableIntList.add:(I)Z
            pop
         9: .line 68
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 4 /* i */
            iload 1 /* count */
            if_icmplt 8
        end local 4 // int i
        11: .line 72
            aload 2 /* subList */
            areturn
        end local 3 // int index
        end local 2 // org.eclipse.collections.api.list.primitive.MutableIntList subList
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0   12     1    count  I
            5   12     2  subList  Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            6   12     3    index  I
            7   11     4        i  I
    MethodParameters:
       Name  Flags
      count  

  public int peekAt(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // int index
         0: .line 78
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.rangeCheck:(I)V
         1: .line 79
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.size:()I
            iconst_1
            isub
            iload 1 /* index */
            isub
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.get:(I)I
            ireturn
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected void rangeCheck(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // int index
         0: .line 84
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.size:()I
            iconst_1
            isub
            if_icmple 2
         1: .line 86
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Index "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* index */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " out of range.Should be between 0 and "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.size:()I
            iconst_1
            isub
            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 88
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    3     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected void checkPositiveValueForCount(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // int count
         0: .line 92
            iload 1 /* count */
            ifge 2
         1: .line 94
            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 96
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    3     1  count  I
    MethodParameters:
       Name  Flags
      count  

  protected void checkSizeLessThanCount(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // int count
         0: .line 100
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.size:()I
            iload 1 /* count */
            if_icmpge 2
         1: .line 102
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Count must be less than size: Count = "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* count */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " Size = "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.size:()I
            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 104
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    3     1  count  I
    MethodParameters:
       Name  Flags
      count  

  public void forEach(org.eclipse.collections.api.block.procedure.primitive.IntProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.IntProcedure procedure
         0: .line 109
            aload 0 /* this */
            aload 1 /* procedure */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.each:(Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)V
         1: .line 110
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.IntProcedure procedure
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;
    MethodParameters:
           Name  Flags
      procedure  

  public org.eclipse.collections.api.iterator.IntIterator intIterator();
    descriptor: ()Lorg/eclipse/collections/api/iterator/IntIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 115
            new org.eclipse.collections.impl.iterator.UnmodifiableIntIterator
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.asReversed:()Lorg/eclipse/collections/api/LazyIntIterable;
            invokeinterface org.eclipse.collections.api.LazyIntIterable.intIterator:()Lorg/eclipse/collections/api/iterator/IntIterator;
            invokespecial org.eclipse.collections.impl.iterator.UnmodifiableIntIterator.<init>:(Lorg/eclipse/collections/api/iterator/IntIterator;)V
            areturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public void each(org.eclipse.collections.api.block.procedure.primitive.IntProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.IntProcedure procedure
         0: .line 124
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()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 /* procedure */
            invokeinterface org.eclipse.collections.api.LazyIntIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)V
         1: .line 125
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.IntProcedure procedure
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;
    MethodParameters:
           Name  Flags
      procedure  

  public int count(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
         0: .line 130
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()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.count:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)I
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
         0: .line 136
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()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.anySatisfy:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
         0: .line 142
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()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.allSatisfy:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
         0: .line 148
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()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.noneSatisfy:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public int detectIfNone(org.eclipse.collections.api.block.predicate.primitive.IntPredicate, int);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
        start local 2 // int ifNone
         0: .line 154
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()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 */
            iload 2 /* ifNone */
            invokeinterface org.eclipse.collections.api.LazyIntIterable.detectIfNone:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;I)I
            ireturn
        end local 2 // int ifNone
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;
            0    1     2     ifNone  I
    MethodParameters:
           Name  Flags
      predicate  
      ifNone     

  public int[] toArray();
    descriptor: ()[I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 160
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.asReversed:()Lorg/eclipse/collections/api/LazyIntIterable;
            invokeinterface org.eclipse.collections.api.LazyIntIterable.toArray:()[I
            areturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public int[] toArray(int[]);
    descriptor: ([I)[I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // int[] target
         0: .line 166
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()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 /* target */
            invokeinterface org.eclipse.collections.api.LazyIntIterable.toArray:([I)[I
            areturn
        end local 1 // int[] target
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    1     1  target  [I
    MethodParameters:
        Name  Flags
      target  

  public boolean contains(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // int value
         0: .line 172
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.asReversed:()Lorg/eclipse/collections/api/LazyIntIterable;
            iload 1 /* value */
            invokeinterface org.eclipse.collections.api.LazyIntIterable.contains:(I)Z
            ireturn
        end local 1 // int value
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    1     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public boolean containsAll(int[]);
    descriptor: ([I)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // int[] source
         0: .line 178
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()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 /* source */
            invokeinterface org.eclipse.collections.api.LazyIntIterable.containsAll:([I)Z
            ireturn
        end local 1 // int[] source
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    1     1  source  [I
    MethodParameters:
        Name  Flags
      source  

  public boolean containsAll(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // org.eclipse.collections.api.IntIterable source
         0: .line 184
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()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 /* source */
            invokeinterface org.eclipse.collections.api.LazyIntIterable.containsAll:(Lorg/eclipse/collections/api/IntIterable;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.IntIterable source
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    1     1  source  Lorg/eclipse/collections/api/IntIterable;
    MethodParameters:
        Name  Flags
      source  

  public org.eclipse.collections.api.list.primitive.MutableIntList toList();
    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.primitive.AbstractIntStack this
         0: .line 190
            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;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public org.eclipse.collections.api.set.primitive.MutableIntSet toSet();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/MutableIntSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 196
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.IntHashSet.newSet:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/IntHashSet;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public org.eclipse.collections.api.bag.primitive.MutableIntBag toBag();
    descriptor: ()Lorg/eclipse/collections/api/bag/primitive/MutableIntBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 202
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.bag.mutable.primitive.IntHashBag.newBag:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/bag/mutable/primitive/IntHashBag;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public <V> V injectInto(V, org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction<? super V, ? extends V>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction function
         0: .line 208
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.toReversed:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            aload 1 /* injectedValue */
            aload 2 /* function */
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Ljava/lang/Object;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    1     1  injectedValue  TV;
            0    1     2       function  Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction<-TV;+TV;>;
    Signature: <V:Ljava/lang/Object;>(TV;Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction<-TV;+TV;>;)TV;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public org.eclipse.collections.api.LazyIntIterable asLazy();
    descriptor: ()Lorg/eclipse/collections/api/LazyIntIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 214
            new org.eclipse.collections.impl.lazy.primitive.LazyIntIterableAdapter
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.lazy.primitive.LazyIntIterableAdapter.<init>:(Lorg/eclipse/collections/api/IntIterable;)V
            areturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 220
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.size:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // java.lang.Object otherStack
         0: .line 226
            aload 1 /* otherStack */
            aload 0 /* this */
            if_acmpne 2
         1: .line 228
            iconst_1
            ireturn
         2: .line 230
      StackMap locals:
      StackMap stack:
            aload 1 /* otherStack */
            instanceof org.eclipse.collections.api.stack.primitive.IntStack
            ifne 4
         3: .line 232
            iconst_0
            ireturn
         4: .line 234
      StackMap locals:
      StackMap stack:
            aload 1 /* otherStack */
            checkcast org.eclipse.collections.api.stack.primitive.IntStack
            astore 2 /* stack */
        start local 2 // org.eclipse.collections.api.stack.primitive.IntStack stack
         5: .line 235
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.size:()I
            aload 2 /* stack */
            invokeinterface org.eclipse.collections.api.stack.primitive.IntStack.size:()I
            if_icmpeq 7
         6: .line 237
            iconst_0
            ireturn
         7: .line 239
      StackMap locals: org.eclipse.collections.api.stack.primitive.IntStack
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         8: goto 12
         9: .line 241
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.peekAt:(I)I
            aload 2 /* stack */
            iload 3 /* i */
            invokeinterface org.eclipse.collections.api.stack.primitive.IntStack.peekAt:(I)I
            if_icmpeq 11
        10: .line 243
            iconst_0
            ireturn
        11: .line 239
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 3 /* i */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.size:()I
            if_icmplt 9
        end local 3 // int i
        13: .line 246
            iconst_1
            ireturn
        end local 2 // org.eclipse.collections.api.stack.primitive.IntStack stack
        end local 1 // java.lang.Object otherStack
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0   14     1  otherStack  Ljava/lang/Object;
            5   14     2       stack  Lorg/eclipse/collections/api/stack/primitive/IntStack;
            8   13     3           i  I
    MethodParameters:
            Name  Flags
      otherStack  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 252
            iconst_1
            istore 1 /* hashCode */
        start local 1 // int hashCode
         1: .line 253
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.asReversed:()Lorg/eclipse/collections/api/LazyIntIterable;
            astore 2 /* iterable */
        start local 2 // org.eclipse.collections.api.IntIterable iterable
         2: .line 254
            aload 2 /* iterable */
            invokeinterface org.eclipse.collections.api.IntIterable.intIterator:()Lorg/eclipse/collections/api/iterator/IntIterator;
            astore 3 /* iterator */
        start local 3 // org.eclipse.collections.api.iterator.IntIterator iterator
         3: .line 255
            goto 6
         4: .line 257
      StackMap locals: int org.eclipse.collections.api.IntIterable org.eclipse.collections.api.iterator.IntIterator
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.IntIterator.next:()I
            istore 4 /* item */
        start local 4 // int item
         5: .line 258
            bipush 31
            iload 1 /* hashCode */
            imul
            iload 4 /* item */
            iadd
            istore 1 /* hashCode */
        end local 4 // int item
         6: .line 255
      StackMap locals:
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.IntIterator.hasNext:()Z
            ifne 4
         7: .line 260
            iload 1 /* hashCode */
            ireturn
        end local 3 // org.eclipse.collections.api.iterator.IntIterator iterator
        end local 2 // org.eclipse.collections.api.IntIterable iterable
        end local 1 // int hashCode
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            1    8     1  hashCode  I
            2    8     2  iterable  Lorg/eclipse/collections/api/IntIterable;
            3    8     3  iterator  Lorg/eclipse/collections/api/iterator/IntIterator;
            5    6     4      item  I

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 266
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.asReversed:()Lorg/eclipse/collections/api/LazyIntIterable;
            invokeinterface org.eclipse.collections.api.LazyIntIterable.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public java.lang.String makeString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 272
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.asReversed:()Lorg/eclipse/collections/api/LazyIntIterable;
            invokeinterface org.eclipse.collections.api.LazyIntIterable.makeString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public java.lang.String makeString(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // java.lang.String separator
         0: .line 278
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()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 /* separator */
            invokeinterface org.eclipse.collections.api.LazyIntIterable.makeString:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String separator
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    1     1  separator  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      separator  

  public java.lang.String makeString(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // java.lang.String start
        start local 2 // java.lang.String separator
        start local 3 // java.lang.String end
         0: .line 284
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()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 /* start */
            aload 2 /* separator */
            aload 3 /* end */
            invokeinterface org.eclipse.collections.api.LazyIntIterable.makeString:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 3 // java.lang.String end
        end local 2 // java.lang.String separator
        end local 1 // java.lang.String start
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    1     1      start  Ljava/lang/String;
            0    1     2  separator  Ljava/lang/String;
            0    1     3        end  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      start      
      separator  
      end        

  public void appendString(java.lang.Appendable);
    descriptor: (Ljava/lang/Appendable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // java.lang.Appendable appendable
         0: .line 290
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()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 /* appendable */
            invokeinterface org.eclipse.collections.api.LazyIntIterable.appendString:(Ljava/lang/Appendable;)V
         1: .line 291
            return
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    2     1  appendable  Ljava/lang/Appendable;
    MethodParameters:
            Name  Flags
      appendable  

  public void appendString(java.lang.Appendable, java.lang.String);
    descriptor: (Ljava/lang/Appendable;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // java.lang.Appendable appendable
        start local 2 // java.lang.String separator
         0: .line 296
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()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 /* appendable */
            aload 2 /* separator */
            invokeinterface org.eclipse.collections.api.LazyIntIterable.appendString:(Ljava/lang/Appendable;Ljava/lang/String;)V
         1: .line 297
            return
        end local 2 // java.lang.String separator
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    2     1  appendable  Ljava/lang/Appendable;
            0    2     2   separator  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      appendable  
      separator   

  public void appendString(java.lang.Appendable, java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // java.lang.Appendable appendable
        start local 2 // java.lang.String start
        start local 3 // java.lang.String separator
        start local 4 // java.lang.String end
         0: .line 302
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()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 /* appendable */
            aload 2 /* start */
            aload 3 /* separator */
            aload 4 /* end */
            invokeinterface org.eclipse.collections.api.LazyIntIterable.appendString:(Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         1: .line 303
            return
        end local 4 // java.lang.String end
        end local 3 // java.lang.String separator
        end local 2 // java.lang.String start
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    2     1  appendable  Ljava/lang/Appendable;
            0    2     2       start  Ljava/lang/String;
            0    2     3   separator  Ljava/lang/String;
            0    2     4         end  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      appendable  
      start       
      separator   
      end         

  public int getFirst();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 308
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ".getFirst() not implemented yet"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public int indexOf(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // int value
         0: .line 314
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ".indexOf() not implemented yet"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // int value
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    1     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public <T> T injectIntoWithIndex(T, org.eclipse.collections.api.block.function.primitive.ObjectIntIntToObjectFunction<? super T, ? extends T>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectIntIntToObjectFunction;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.ObjectIntIntToObjectFunction function
         0: .line 320
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ".injectIntoWithIndex() not implemented yet"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // org.eclipse.collections.api.block.function.primitive.ObjectIntIntToObjectFunction function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    1     1  injectedValue  TT;
            0    1     2       function  Lorg/eclipse/collections/api/block/function/primitive/ObjectIntIntToObjectFunction<-TT;+TT;>;
    Signature: <T:Ljava/lang/Object;>(TT;Lorg/eclipse/collections/api/block/function/primitive/ObjectIntIntToObjectFunction<-TT;+TT;>;)TT;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public void forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.IntIntProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.IntIntProcedure procedure
         0: .line 326
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ".forEachWithIndex() not implemented yet"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.IntIntProcedure procedure
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    1     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/IntIntProcedure;
    MethodParameters:
           Name  Flags
      procedure  

  public org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.IntIterable> chunk(int);
    descriptor: (I)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // int size
         0: .line 332
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.asReversed:()Lorg/eclipse/collections/api/LazyIntIterable;
            iload 1 /* size */
            invokeinterface org.eclipse.collections.api.LazyIntIterable.chunk:(I)Lorg/eclipse/collections/api/RichIterable;
            areturn
        end local 1 // int size
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    1     1  size  I
    Signature: (I)Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/IntIterable;>;
    MethodParameters:
      Name  Flags
      size  

  public long sum();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 338
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.sum:()J
            lreturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public int max();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 344
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.max:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public int min();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 350
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.min:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public int minIfEmpty(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // int defaultValue
         0: .line 356
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.isEmpty:()Z
            ifeq 2
         1: .line 358
            iload 1 /* defaultValue */
            ireturn
         2: .line 360
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.min:()I
            ireturn
        end local 1 // int defaultValue
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    3     1  defaultValue  I
    MethodParameters:
              Name  Flags
      defaultValue  

  public int maxIfEmpty(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
        start local 1 // int defaultValue
         0: .line 366
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.isEmpty:()Z
            ifeq 2
         1: .line 368
            iload 1 /* defaultValue */
            ireturn
         2: .line 370
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.max:()I
            ireturn
        end local 1 // int defaultValue
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;
            0    3     1  defaultValue  I
    MethodParameters:
              Name  Flags
      defaultValue  

  public double average();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 376
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.average:()D
            dreturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public double median();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 382
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.median:()D
            dreturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public int[] toSortedArray();
    descriptor: ()[I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
         0: .line 388
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractIntStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.toSortedArray:()[I
            areturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractIntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractIntStack;

  public org.eclipse.collections.api.ordered.OrderedIterable collectWithIndex(org.eclipse.collections.api.block.function.primitive.IntIntToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntIntToObjectFunction;)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.IntIntToObjectFunction
            invokeinterface org.eclipse.collections.api.stack.primitive.IntStack.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/IntIntToObjectFunction;)Lorg/eclipse/collections/api/stack/StackIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.IntIterable tap(org.eclipse.collections.api.block.procedure.primitive.IntProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)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
            invokeinterface org.eclipse.collections.api.stack.primitive.IntStack.tap:(Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)Lorg/eclipse/collections/api/stack/primitive/IntStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "AbstractIntStack.java"