public abstract class org.eclipse.collections.impl.stack.primitive.AbstractByteStack implements org.eclipse.collections.api.stack.primitive.ByteStack
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.eclipse.collections.impl.stack.primitive.AbstractByteStack
  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.AbstractByteStack this
         0: .line 38
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;

  protected abstract org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList getDelegate();
    descriptor: ()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
    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.AbstractByteStack this
         0: .line 44
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.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.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;

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

  public org.eclipse.collections.api.list.primitive.ByteList peek(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/primitive/ByteList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
        start local 1 // int count
         0: .line 60
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.checkPositiveValueForCount:(I)V
         1: .line 61
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.checkSizeLessThanCount:(I)V
         2: .line 62
            iload 1 /* count */
            ifne 4
         3: .line 64
            new org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList
            dup
            iconst_0
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.<init>:(I)V
            areturn
         4: .line 66
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList
            dup
            iload 1 /* count */
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.<init>:(I)V
            astore 2 /* subList */
        start local 2 // org.eclipse.collections.api.list.primitive.MutableByteList subList
         5: .line 67
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.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.MutableByteList int int
      StackMap stack:
            aload 2 /* subList */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            iload 3 /* index */
            iload 4 /* i */
            isub
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.get:(I)B
            invokeinterface org.eclipse.collections.api.list.primitive.MutableByteList.add:(B)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.MutableByteList subList
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            0   12     1    count  I
            5   12     2  subList  Lorg/eclipse/collections/api/list/primitive/MutableByteList;
            6   12     3    index  I
            7   11     4        i  I
    MethodParameters:
       Name  Flags
      count  

  public byte peekAt(int);
    descriptor: (I)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
        start local 1 // int index
         0: .line 78
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.rangeCheck:(I)V
         1: .line 79
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.size:()I
            iconst_1
            isub
            iload 1 /* index */
            isub
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.get:(I)B
            ireturn
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            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.AbstractByteStack 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.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.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.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.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.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            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.AbstractByteStack 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.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            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.AbstractByteStack this
        start local 1 // int count
         0: .line 100
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.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.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.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.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            0    3     1  count  I
    MethodParameters:
       Name  Flags
      count  

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

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

  public void each(org.eclipse.collections.api.block.procedure.primitive.ByteProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ByteProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ByteProcedure procedure
         0: .line 124
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.asReversed:()Lorg/eclipse/collections/api/LazyByteIterable;
            aload 1 /* procedure */
            invokeinterface org.eclipse.collections.api.LazyByteIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/primitive/ByteProcedure;)V
         1: .line 125
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ByteProcedure procedure
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/ByteProcedure;
    MethodParameters:
           Name  Flags
      procedure  

  public int count(org.eclipse.collections.api.block.predicate.primitive.BytePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
         0: .line 130
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.asReversed:()Lorg/eclipse/collections/api/LazyByteIterable;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.LazyByteIterable.count:(Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)I
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.BytePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
         0: .line 136
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.asReversed:()Lorg/eclipse/collections/api/LazyByteIterable;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.LazyByteIterable.anySatisfy:(Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.BytePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
         0: .line 142
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.asReversed:()Lorg/eclipse/collections/api/LazyByteIterable;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.LazyByteIterable.allSatisfy:(Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.BytePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
         0: .line 148
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.asReversed:()Lorg/eclipse/collections/api/LazyByteIterable;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.LazyByteIterable.noneSatisfy:(Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public byte detectIfNone(org.eclipse.collections.api.block.predicate.primitive.BytePredicate, byte);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;B)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
        start local 2 // byte ifNone
         0: .line 154
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.asReversed:()Lorg/eclipse/collections/api/LazyByteIterable;
            aload 1 /* predicate */
            iload 2 /* ifNone */
            invokeinterface org.eclipse.collections.api.LazyByteIterable.detectIfNone:(Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;B)B
            ireturn
        end local 2 // byte ifNone
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;
            0    1     2     ifNone  B
    MethodParameters:
           Name  Flags
      predicate  
      ifNone     

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

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

  public boolean containsAll(byte[]);
    descriptor: ([B)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
        start local 1 // byte[] source
         0: .line 172
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.asReversed:()Lorg/eclipse/collections/api/LazyByteIterable;
            aload 1 /* source */
            invokeinterface org.eclipse.collections.api.LazyByteIterable.containsAll:([B)Z
            ireturn
        end local 1 // byte[] source
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            0    1     1  source  [B
    MethodParameters:
        Name  Flags
      source  

  public boolean containsAll(org.eclipse.collections.api.ByteIterable);
    descriptor: (Lorg/eclipse/collections/api/ByteIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
        start local 1 // org.eclipse.collections.api.ByteIterable source
         0: .line 178
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.asReversed:()Lorg/eclipse/collections/api/LazyByteIterable;
            aload 1 /* source */
            invokeinterface org.eclipse.collections.api.LazyByteIterable.containsAll:(Lorg/eclipse/collections/api/ByteIterable;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.ByteIterable source
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            0    1     1  source  Lorg/eclipse/collections/api/ByteIterable;
    MethodParameters:
        Name  Flags
      source  

  public org.eclipse.collections.api.list.primitive.MutableByteList toList();
    descriptor: ()Lorg/eclipse/collections/api/list/primitive/MutableByteList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
         0: .line 184
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.newList:(Lorg/eclipse/collections/api/ByteIterable;)Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;

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

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

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

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

  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.AbstractByteStack this
         0: .line 214
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.size:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;

  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.AbstractByteStack this
        start local 1 // java.lang.Object otherStack
         0: .line 220
            aload 1 /* otherStack */
            aload 0 /* this */
            if_acmpne 2
         1: .line 222
            iconst_1
            ireturn
         2: .line 224
      StackMap locals:
      StackMap stack:
            aload 1 /* otherStack */
            instanceof org.eclipse.collections.api.stack.primitive.ByteStack
            ifne 4
         3: .line 226
            iconst_0
            ireturn
         4: .line 228
      StackMap locals:
      StackMap stack:
            aload 1 /* otherStack */
            checkcast org.eclipse.collections.api.stack.primitive.ByteStack
            astore 2 /* stack */
        start local 2 // org.eclipse.collections.api.stack.primitive.ByteStack stack
         5: .line 229
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.size:()I
            aload 2 /* stack */
            invokeinterface org.eclipse.collections.api.stack.primitive.ByteStack.size:()I
            if_icmpeq 7
         6: .line 231
            iconst_0
            ireturn
         7: .line 233
      StackMap locals: org.eclipse.collections.api.stack.primitive.ByteStack
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         8: goto 12
         9: .line 235
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.peekAt:(I)B
            aload 2 /* stack */
            iload 3 /* i */
            invokeinterface org.eclipse.collections.api.stack.primitive.ByteStack.peekAt:(I)B
            if_icmpeq 11
        10: .line 237
            iconst_0
            ireturn
        11: .line 233
      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.AbstractByteStack.size:()I
            if_icmplt 9
        end local 3 // int i
        13: .line 240
            iconst_1
            ireturn
        end local 2 // org.eclipse.collections.api.stack.primitive.ByteStack stack
        end local 1 // java.lang.Object otherStack
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            0   14     1  otherStack  Ljava/lang/Object;
            5   14     2       stack  Lorg/eclipse/collections/api/stack/primitive/ByteStack;
            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.AbstractByteStack this
         0: .line 246
            iconst_1
            istore 1 /* hashCode */
        start local 1 // int hashCode
         1: .line 247
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.asReversed:()Lorg/eclipse/collections/api/LazyByteIterable;
            astore 2 /* iterable */
        start local 2 // org.eclipse.collections.api.ByteIterable iterable
         2: .line 248
            aload 2 /* iterable */
            invokeinterface org.eclipse.collections.api.ByteIterable.byteIterator:()Lorg/eclipse/collections/api/iterator/ByteIterator;
            astore 3 /* iterator */
        start local 3 // org.eclipse.collections.api.iterator.ByteIterator iterator
         3: .line 249
            goto 6
         4: .line 251
      StackMap locals: int org.eclipse.collections.api.ByteIterable org.eclipse.collections.api.iterator.ByteIterator
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.ByteIterator.next:()B
            istore 4 /* item */
        start local 4 // byte item
         5: .line 252
            bipush 31
            iload 1 /* hashCode */
            imul
            iload 4 /* item */
            iadd
            istore 1 /* hashCode */
        end local 4 // byte item
         6: .line 249
      StackMap locals:
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.ByteIterator.hasNext:()Z
            ifne 4
         7: .line 254
            iload 1 /* hashCode */
            ireturn
        end local 3 // org.eclipse.collections.api.iterator.ByteIterator iterator
        end local 2 // org.eclipse.collections.api.ByteIterable iterable
        end local 1 // int hashCode
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            1    8     1  hashCode  I
            2    8     2  iterable  Lorg/eclipse/collections/api/ByteIterable;
            3    8     3  iterator  Lorg/eclipse/collections/api/iterator/ByteIterator;
            5    6     4      item  B

  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.AbstractByteStack this
         0: .line 260
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.asReversed:()Lorg/eclipse/collections/api/LazyByteIterable;
            invokeinterface org.eclipse.collections.api.LazyByteIterable.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;

  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.AbstractByteStack this
         0: .line 266
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.asReversed:()Lorg/eclipse/collections/api/LazyByteIterable;
            invokeinterface org.eclipse.collections.api.LazyByteIterable.makeString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;

  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.AbstractByteStack this
        start local 1 // java.lang.String separator
         0: .line 272
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.asReversed:()Lorg/eclipse/collections/api/LazyByteIterable;
            aload 1 /* separator */
            invokeinterface org.eclipse.collections.api.LazyByteIterable.makeString:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String separator
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            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.AbstractByteStack this
        start local 1 // java.lang.String start
        start local 2 // java.lang.String separator
        start local 3 // java.lang.String end
         0: .line 278
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.asReversed:()Lorg/eclipse/collections/api/LazyByteIterable;
            aload 1 /* start */
            aload 2 /* separator */
            aload 3 /* end */
            invokeinterface org.eclipse.collections.api.LazyByteIterable.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.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            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.AbstractByteStack this
        start local 1 // java.lang.Appendable appendable
         0: .line 284
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.asReversed:()Lorg/eclipse/collections/api/LazyByteIterable;
            aload 1 /* appendable */
            invokeinterface org.eclipse.collections.api.LazyByteIterable.appendString:(Ljava/lang/Appendable;)V
         1: .line 285
            return
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            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.AbstractByteStack this
        start local 1 // java.lang.Appendable appendable
        start local 2 // java.lang.String separator
         0: .line 290
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.asReversed:()Lorg/eclipse/collections/api/LazyByteIterable;
            aload 1 /* appendable */
            aload 2 /* separator */
            invokeinterface org.eclipse.collections.api.LazyByteIterable.appendString:(Ljava/lang/Appendable;Ljava/lang/String;)V
         1: .line 291
            return
        end local 2 // java.lang.String separator
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            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.AbstractByteStack 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 296
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.asReversed:()Lorg/eclipse/collections/api/LazyByteIterable;
            aload 1 /* appendable */
            aload 2 /* start */
            aload 3 /* separator */
            aload 4 /* end */
            invokeinterface org.eclipse.collections.api.LazyByteIterable.appendString:(Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         1: .line 297
            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.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            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 byte getFirst();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
         0: .line 302
            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.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;

  public int indexOf(byte);
    descriptor: (B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
        start local 1 // byte value
         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 ".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 // byte value
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            0    1     1  value  B
    MethodParameters:
       Name  Flags
      value  

  public <T> T injectIntoWithIndex(T, org.eclipse.collections.api.block.function.primitive.ObjectByteIntToObjectFunction<? super T, ? extends T>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectByteIntToObjectFunction;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.ObjectByteIntToObjectFunction function
         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 ".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.ObjectByteIntToObjectFunction function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            0    1     1  injectedValue  TT;
            0    1     2       function  Lorg/eclipse/collections/api/block/function/primitive/ObjectByteIntToObjectFunction<-TT;+TT;>;
    Signature: <T:Ljava/lang/Object;>(TT;Lorg/eclipse/collections/api/block/function/primitive/ObjectByteIntToObjectFunction<-TT;+TT;>;)TT;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public void forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ByteIntProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ByteIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ByteIntProcedure procedure
         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 ".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.ByteIntProcedure procedure
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            0    1     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/ByteIntProcedure;
    MethodParameters:
           Name  Flags
      procedure  

  public org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.ByteIterable> 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.AbstractByteStack this
        start local 1 // int size
         0: .line 326
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.asReversed:()Lorg/eclipse/collections/api/LazyByteIterable;
            iload 1 /* size */
            invokeinterface org.eclipse.collections.api.LazyByteIterable.chunk:(I)Lorg/eclipse/collections/api/RichIterable;
            areturn
        end local 1 // int size
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            0    1     1  size  I
    Signature: (I)Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/ByteIterable;>;
    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.AbstractByteStack this
         0: .line 332
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.sum:()J
            lreturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;

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

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

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

  public byte maxIfEmpty(byte);
    descriptor: (B)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
        start local 1 // byte defaultValue
         0: .line 360
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.isEmpty:()Z
            ifeq 2
         1: .line 362
            iload 1 /* defaultValue */
            ireturn
         2: .line 364
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.max:()B
            ireturn
        end local 1 // byte defaultValue
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;
            0    3     1  defaultValue  B
    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.AbstractByteStack this
         0: .line 370
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.average:()D
            dreturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;

  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.AbstractByteStack this
         0: .line 376
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.primitive.AbstractByteStack.getDelegate:()Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.median:()D
            dreturn
        end local 0 // org.eclipse.collections.impl.stack.primitive.AbstractByteStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/primitive/AbstractByteStack;

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

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

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