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

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.primitive.AbstractByteIterable this
         0: .line 34
            aload 0 /* this */
            ldc "["
            ldc ", "
            ldc "]"
            invokevirtual org.eclipse.collections.impl.primitive.AbstractByteIterable.makeString:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.primitive.AbstractByteIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/primitive/AbstractByteIterable;

  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.primitive.AbstractByteIterable this
        start local 1 // byte defaultValue
         0: .line 40
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.primitive.AbstractByteIterable.isEmpty:()Z
            ifeq 2
         1: .line 42
            iload 1 /* defaultValue */
            ireturn
         2: .line 44
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.primitive.AbstractByteIterable.min:()B
            ireturn
        end local 1 // byte defaultValue
        end local 0 // org.eclipse.collections.impl.primitive.AbstractByteIterable this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/eclipse/collections/impl/primitive/AbstractByteIterable;
            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.primitive.AbstractByteIterable this
        start local 1 // byte defaultValue
         0: .line 50
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.primitive.AbstractByteIterable.isEmpty:()Z
            ifeq 2
         1: .line 52
            iload 1 /* defaultValue */
            ireturn
         2: .line 54
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.primitive.AbstractByteIterable.max:()B
            ireturn
        end local 1 // byte defaultValue
        end local 0 // org.eclipse.collections.impl.primitive.AbstractByteIterable this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/eclipse/collections/impl/primitive/AbstractByteIterable;
            0    3     1  defaultValue  B
    MethodParameters:
              Name  Flags
      defaultValue  

  public double average();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.primitive.AbstractByteIterable this
         0: .line 60
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.primitive.AbstractByteIterable.isEmpty:()Z
            ifeq 2
         1: .line 62
            new java.lang.ArithmeticException
            dup
            invokespecial java.lang.ArithmeticException.<init>:()V
            athrow
         2: .line 64
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.primitive.AbstractByteIterable.sum:()J
            l2d
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.primitive.AbstractByteIterable.size:()I
            i2d
            ddiv
            dreturn
        end local 0 // org.eclipse.collections.impl.primitive.AbstractByteIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/primitive/AbstractByteIterable;

  public double median();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.eclipse.collections.impl.primitive.AbstractByteIterable this
         0: .line 70
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.primitive.AbstractByteIterable.isEmpty:()Z
            ifeq 2
         1: .line 72
            new java.lang.ArithmeticException
            dup
            invokespecial java.lang.ArithmeticException.<init>:()V
            athrow
         2: .line 74
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.primitive.AbstractByteIterable.toSortedArray:()[B
            astore 1 /* sortedArray */
        start local 1 // byte[] sortedArray
         3: .line 75
            aload 1 /* sortedArray */
            arraylength
            iconst_1
            ishr
            istore 2 /* middleIndex */
        start local 2 // int middleIndex
         4: .line 76
            aload 1 /* sortedArray */
            arraylength
            iconst_1
            if_icmple 8
            aload 1 /* sortedArray */
            arraylength
            iconst_1
            iand
            ifne 8
         5: .line 78
            aload 1 /* sortedArray */
            iload 2 /* middleIndex */
            baload
            istore 3 /* first */
        start local 3 // byte first
         6: .line 79
            aload 1 /* sortedArray */
            iload 2 /* middleIndex */
            iconst_1
            isub
            baload
            istore 4 /* second */
        start local 4 // byte second
         7: .line 80
            iload 3 /* first */
            i2d
            iload 4 /* second */
            i2d
            dadd
            ldc 2.0
            ddiv
            dreturn
        end local 4 // byte second
        end local 3 // byte first
         8: .line 82
      StackMap locals: byte[] int
      StackMap stack:
            aload 1 /* sortedArray */
            iload 2 /* middleIndex */
            baload
            i2d
            dreturn
        end local 2 // int middleIndex
        end local 1 // byte[] sortedArray
        end local 0 // org.eclipse.collections.impl.primitive.AbstractByteIterable this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Lorg/eclipse/collections/impl/primitive/AbstractByteIterable;
            3    9     1  sortedArray  [B
            4    9     2  middleIndex  I
            6    8     3        first  B
            7    8     4       second  B

  public byte[] toSortedArray();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.primitive.AbstractByteIterable this
         0: .line 88
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.primitive.AbstractByteIterable.toArray:()[B
            astore 1 /* array */
        start local 1 // byte[] array
         1: .line 89
            aload 1 /* array */
            invokestatic java.util.Arrays.sort:([B)V
         2: .line 90
            aload 1 /* array */
            areturn
        end local 1 // byte[] array
        end local 0 // org.eclipse.collections.impl.primitive.AbstractByteIterable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/primitive/AbstractByteIterable;
            1    3     1  array  [B

  public org.eclipse.collections.api.list.primitive.MutableByteList toSortedList();
    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.primitive.AbstractByteIterable this
         0: .line 96
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.primitive.AbstractByteIterable.toList:()Lorg/eclipse/collections/api/list/primitive/MutableByteList;
            invokeinterface org.eclipse.collections.api.list.primitive.MutableByteList.sortThis:()Lorg/eclipse/collections/api/list/primitive/MutableByteList;
            areturn
        end local 0 // org.eclipse.collections.impl.primitive.AbstractByteIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/primitive/AbstractByteIterable;

  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.primitive.AbstractByteIterable this
         0: .line 102
            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.primitive.AbstractByteIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/primitive/AbstractByteIterable;

  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.primitive.AbstractByteIterable this
         0: .line 108
            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.primitive.AbstractByteIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/primitive/AbstractByteIterable;

  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.primitive.AbstractByteIterable this
         0: .line 114
            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.primitive.AbstractByteIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/primitive/AbstractByteIterable;

  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.primitive.AbstractByteIterable this
         0: .line 120
            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.primitive.AbstractByteIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/primitive/AbstractByteIterable;
}
SourceFile: "AbstractByteIterable.java"