public class org.eclipse.collections.impl.string.immutable.CodePointList extends org.eclipse.collections.impl.primitive.AbstractIntIterable implements java.lang.CharSequence, org.eclipse.collections.api.list.primitive.ImmutableIntList, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.string.immutable.CodePointList
  super_class: org.eclipse.collections.impl.primitive.AbstractIntIterable
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  private final org.eclipse.collections.api.list.primitive.ImmutableIntList codePoints;
    descriptor: Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // java.lang.String value
         0: .line 57
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.primitive.AbstractIntIterable.<init>:()V
         1: .line 59
            aload 1 /* value */
            invokevirtual java.lang.String.length:()I
            istore 2 /* stringSize */
        start local 2 // int stringSize
         2: .line 60
            new org.eclipse.collections.impl.list.mutable.primitive.IntArrayList
            dup
            iload 2 /* stringSize */
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.<init>:(I)V
            astore 3 /* list */
        start local 3 // org.eclipse.collections.impl.list.mutable.primitive.IntArrayList list
         3: .line 61
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: goto 8
         5: .line 63
      StackMap locals: org.eclipse.collections.impl.string.immutable.CodePointList java.lang.String int org.eclipse.collections.impl.list.mutable.primitive.IntArrayList int
      StackMap stack:
            aload 1 /* value */
            iload 4 /* i */
            invokevirtual java.lang.String.codePointAt:(I)I
            istore 5 /* codePoint */
        start local 5 // int codePoint
         6: .line 64
            iload 4 /* i */
            iload 5 /* codePoint */
            invokestatic java.lang.Character.charCount:(I)I
            iadd
            istore 4 /* i */
         7: .line 65
            aload 3 /* list */
            iload 5 /* codePoint */
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.add:(I)Z
            pop
        end local 5 // int codePoint
         8: .line 61
      StackMap locals:
      StackMap stack:
            iload 4 /* i */
            iload 2 /* stringSize */
            if_icmplt 5
        end local 4 // int i
         9: .line 67
            aload 0 /* this */
            aload 3 /* list */
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.toImmutable:()Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            putfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
        10: .line 68
            return
        end local 3 // org.eclipse.collections.impl.list.mutable.primitive.IntArrayList list
        end local 2 // int stringSize
        end local 1 // java.lang.String value
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0        this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0   11     1       value  Ljava/lang/String;
            2   11     2  stringSize  I
            3   11     3        list  Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            4    9     4           i  I
            6    8     5   codePoint  I
    MethodParameters:
       Name  Flags
      value  

  private void <init>(org.eclipse.collections.api.list.primitive.ImmutableIntList);
    descriptor: (Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // org.eclipse.collections.api.list.primitive.ImmutableIntList points
         0: .line 70
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.primitive.AbstractIntIterable.<init>:()V
         1: .line 72
            aload 0 /* this */
            aload 1 /* points */
            putfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
         2: .line 73
            return
        end local 1 // org.eclipse.collections.api.list.primitive.ImmutableIntList points
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    3     1  points  Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
    MethodParameters:
        Name  Flags
      points  

  private void <init>(int[]);
    descriptor: ([I)V
    flags: (0x0082) ACC_PRIVATE, ACC_VARARGS
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // int[] codePoints
         0: .line 75
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.primitive.AbstractIntIterable.<init>:()V
         1: .line 77
            aload 0 /* this */
            getstatic org.eclipse.collections.impl.factory.primitive.IntLists.immutable:Lorg/eclipse/collections/api/factory/list/primitive/ImmutableIntListFactory;
            aload 1 /* codePoints */
            invokeinterface org.eclipse.collections.api.factory.list.primitive.ImmutableIntListFactory.with:([I)Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            putfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
         2: .line 78
            return
        end local 1 // int[] codePoints
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    3     1  codePoints  [I
    MethodParameters:
            Name  Flags
      codePoints  

  public static org.eclipse.collections.impl.string.immutable.CodePointList from(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.String value
         0: .line 82
            new org.eclipse.collections.impl.string.immutable.CodePointList
            dup
            aload 0 /* value */
            invokespecial org.eclipse.collections.impl.string.immutable.CodePointList.<init>:(Ljava/lang/String;)V
            areturn
        end local 0 // java.lang.String value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  value  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      value  

  public static org.eclipse.collections.impl.string.immutable.CodePointList from(int[]);
    descriptor: ([I)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int[] codePoints
         0: .line 87
            new org.eclipse.collections.impl.string.immutable.CodePointList
            dup
            aload 0 /* codePoints */
            invokespecial org.eclipse.collections.impl.string.immutable.CodePointList.<init>:([I)V
            areturn
        end local 0 // int[] codePoints
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0  codePoints  [I
    MethodParameters:
            Name  Flags
      codePoints  

  public static org.eclipse.collections.impl.string.immutable.CodePointList from(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.api.IntIterable iterable
         0: .line 92
            aload 0 /* iterable */
            instanceof org.eclipse.collections.api.list.primitive.ImmutableIntList
            ifeq 2
         1: .line 94
            new org.eclipse.collections.impl.string.immutable.CodePointList
            dup
            aload 0 /* iterable */
            checkcast org.eclipse.collections.api.list.primitive.ImmutableIntList
            invokespecial org.eclipse.collections.impl.string.immutable.CodePointList.<init>:(Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;)V
            areturn
         2: .line 96
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.string.immutable.CodePointList
            dup
            aload 0 /* iterable */
            invokeinterface org.eclipse.collections.api.IntIterable.toArray:()[I
            invokespecial org.eclipse.collections.impl.string.immutable.CodePointList.<init>:([I)V
            areturn
        end local 0 // org.eclipse.collections.api.IntIterable iterable
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0  iterable  Lorg/eclipse/collections/api/IntIterable;
    MethodParameters:
          Name  Flags
      iterable  

  public java.lang.StringBuilder toStringBuilder();
    descriptor: ()Ljava/lang/StringBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
         0: .line 101
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* builder */
        start local 1 // java.lang.StringBuilder builder
         1: .line 102
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 104
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            aload 1 /* builder */
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.get:(I)I
            invokevirtual java.lang.StringBuilder.appendCodePoint:(I)Ljava/lang/StringBuilder;
            pop
         4: .line 102
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.size:()I
            if_icmplt 3
        end local 2 // int i
         6: .line 106
            aload 1 /* builder */
            areturn
        end local 1 // java.lang.StringBuilder builder
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            1    7     1  builder  Ljava/lang/StringBuilder;
            2    6     2        i  I

  public char charAt(int);
    descriptor: (I)C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // int index
         0: .line 112
            iconst_0
            istore 2 /* currentIndex */
        start local 2 // int currentIndex
         1: .line 113
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 13
         3: .line 115
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            iload 3 /* i */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.get:(I)I
            istore 4 /* codePoint */
        start local 4 // int codePoint
         4: .line 116
            iload 4 /* codePoint */
            invokestatic java.lang.Character.charCount:(I)I
            istore 5 /* charCount */
        start local 5 // int charCount
         5: .line 117
            iload 1 /* index */
            iload 2 /* currentIndex */
            iload 5 /* charCount */
            iadd
            if_icmpge 11
         6: .line 119
            iload 5 /* charCount */
            iconst_1
            if_icmpne 8
         7: .line 121
            iload 4 /* codePoint */
            i2c
            ireturn
         8: .line 123
      StackMap locals: int int
      StackMap stack:
            iload 1 /* index */
            iload 2 /* currentIndex */
            if_icmpne 10
         9: .line 125
            iload 4 /* codePoint */
            invokestatic java.lang.Character.highSurrogate:(I)C
            ireturn
        10: .line 127
      StackMap locals:
      StackMap stack:
            iload 4 /* codePoint */
            invokestatic java.lang.Character.lowSurrogate:(I)C
            ireturn
        11: .line 129
      StackMap locals:
      StackMap stack:
            iload 2 /* currentIndex */
            iload 5 /* charCount */
            iadd
            istore 2 /* currentIndex */
        end local 5 // int charCount
        end local 4 // int codePoint
        12: .line 113
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.size:()I
            if_icmplt 3
        end local 3 // int i
        14: .line 131
            new java.lang.IndexOutOfBoundsException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Char value at "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* index */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " is out of bounds for length "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* currentIndex */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // int currentIndex
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   15     0          this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0   15     1         index  I
            1   15     2  currentIndex  I
            2   14     3             i  I
            4   12     4     codePoint  I
            5   12     5     charCount  I
    MethodParameters:
       Name  Flags
      index  

  public int length();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
         0: .line 137
            iconst_0
            istore 1 /* length */
        start local 1 // int length
         1: .line 138
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 140
      StackMap locals: int int
      StackMap stack:
            iload 1 /* length */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            iload 2 /* i */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.get:(I)I
            invokestatic java.lang.Character.charCount:(I)I
            iadd
            istore 1 /* length */
         4: .line 138
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.size:()I
            if_icmplt 3
        end local 2 // int i
         6: .line 142
            iload 1 /* length */
            ireturn
        end local 1 // int length
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            1    7     1  length  I
            2    6     2       i  I

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
         0: .line 148
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.length:()I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  public java.lang.String subSequence(int, int);
    descriptor: (II)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // int start
        start local 2 // int end
         0: .line 154
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.toStringBuilder:()Ljava/lang/StringBuilder;
            astore 3 /* builder */
        start local 3 // java.lang.StringBuilder builder
         1: .line 155
            aload 3 /* builder */
            iload 1 /* start */
            iload 2 /* end */
            invokevirtual java.lang.StringBuilder.substring:(II)Ljava/lang/String;
            areturn
        end local 3 // java.lang.StringBuilder builder
        end local 2 // int end
        end local 1 // int start
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    2     1    start  I
            0    2     2      end  I
            1    2     3  builder  Ljava/lang/StringBuilder;
    MethodParameters:
       Name  Flags
      start  
      end    

  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.string.immutable.CodePointList this
         0: .line 164
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.toStringBuilder:()Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  public org.eclipse.collections.api.iterator.IntIterator intIterator();
    descriptor: ()Lorg/eclipse/collections/api/iterator/IntIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
         0: .line 170
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.intIterator:()Lorg/eclipse/collections/api/iterator/IntIterator;
            areturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  public int[] toArray();
    descriptor: ()[I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
         0: .line 176
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.toArray:()[I
            areturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  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.string.immutable.CodePointList this
        start local 1 // int[] target
         0: .line 182
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            aload 1 /* target */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.toArray:([I)[I
            areturn
        end local 1 // int[] target
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            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.string.immutable.CodePointList this
        start local 1 // int expected
         0: .line 188
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            iload 1 /* expected */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.contains:(I)Z
            ireturn
        end local 1 // int expected
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  expected  I
    MethodParameters:
          Name  Flags
      expected  

  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.string.immutable.CodePointList this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.IntProcedure procedure
         0: .line 194
            aload 0 /* this */
            aload 1 /* procedure */
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.each:(Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)V
         1: .line 195
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.IntProcedure procedure
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;
    MethodParameters:
           Name  Flags
      procedure  

  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.string.immutable.CodePointList this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.IntProcedure procedure
         0: .line 200
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            aload 1 /* procedure */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.each:(Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)V
         1: .line 201
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.IntProcedure procedure
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;
    MethodParameters:
           Name  Flags
      procedure  

  public org.eclipse.collections.impl.string.immutable.CodePointList distinct();
    descriptor: ()Lorg/eclipse/collections/impl/string/immutable/CodePointList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
         0: .line 206
            new org.eclipse.collections.impl.string.immutable.CodePointList
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.distinct:()Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokespecial org.eclipse.collections.impl.string.immutable.CodePointList.<init>:(Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;)V
            areturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  public org.eclipse.collections.impl.string.immutable.CodePointList newWith(int);
    descriptor: (I)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // int element
         0: .line 212
            new org.eclipse.collections.impl.string.immutable.CodePointList
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            iload 1 /* element */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.newWith:(I)Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokespecial org.eclipse.collections.impl.string.immutable.CodePointList.<init>:(Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;)V
            areturn
        end local 1 // int element
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  element  I
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.impl.string.immutable.CodePointList newWithout(int);
    descriptor: (I)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // int element
         0: .line 218
            new org.eclipse.collections.impl.string.immutable.CodePointList
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            iload 1 /* element */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.newWithout:(I)Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokespecial org.eclipse.collections.impl.string.immutable.CodePointList.<init>:(Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;)V
            areturn
        end local 1 // int element
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  element  I
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.impl.string.immutable.CodePointList newWithAll(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // org.eclipse.collections.api.IntIterable elements
         0: .line 224
            new org.eclipse.collections.impl.string.immutable.CodePointList
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            aload 1 /* elements */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.newWithAll:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokespecial org.eclipse.collections.impl.string.immutable.CodePointList.<init>:(Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;)V
            areturn
        end local 1 // org.eclipse.collections.api.IntIterable elements
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  elements  Lorg/eclipse/collections/api/IntIterable;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.impl.string.immutable.CodePointList newWithoutAll(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // org.eclipse.collections.api.IntIterable elements
         0: .line 230
            new org.eclipse.collections.impl.string.immutable.CodePointList
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            aload 1 /* elements */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.newWithoutAll:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokespecial org.eclipse.collections.impl.string.immutable.CodePointList.<init>:(Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;)V
            areturn
        end local 1 // org.eclipse.collections.api.IntIterable elements
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  elements  Lorg/eclipse/collections/api/IntIterable;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.impl.string.immutable.CodePointList toReversed();
    descriptor: ()Lorg/eclipse/collections/impl/string/immutable/CodePointList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
         0: .line 236
            new org.eclipse.collections.impl.string.immutable.CodePointList
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.toReversed:()Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokespecial org.eclipse.collections.impl.string.immutable.CodePointList.<init>:(Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;)V
            areturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  public org.eclipse.collections.api.list.primitive.ImmutableIntList subList(int, int);
    descriptor: (II)Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // int fromIndex
        start local 2 // int toIndex
         0: .line 242
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.subList:(II)Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            areturn
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  fromIndex  I
            0    1     2    toIndex  I
    MethodParameters:
           Name  Flags
      fromIndex  
      toIndex    

  public int get(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // int index
         0: .line 248
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            iload 1 /* index */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.get:(I)I
            ireturn
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public long dotProduct(org.eclipse.collections.api.list.primitive.IntList);
    descriptor: (Lorg/eclipse/collections/api/list/primitive/IntList;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // org.eclipse.collections.api.list.primitive.IntList list
         0: .line 254
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            aload 1 /* list */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.dotProduct:(Lorg/eclipse/collections/api/list/primitive/IntList;)J
            lreturn
        end local 1 // org.eclipse.collections.api.list.primitive.IntList list
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  list  Lorg/eclipse/collections/api/list/primitive/IntList;
    MethodParameters:
      Name  Flags
      list  

  public int binarySearch(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // int value
         0: .line 260
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            iload 1 /* value */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.binarySearch:(I)I
            ireturn
        end local 1 // int value
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public int lastIndexOf(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // int value
         0: .line 266
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            iload 1 /* value */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.lastIndexOf:(I)I
            ireturn
        end local 1 // int value
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  value  I
    MethodParameters:
       Name  Flags
      value  

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

  public int getLast();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
         0: .line 278
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.getLast:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  public org.eclipse.collections.api.LazyIntIterable asReversed();
    descriptor: ()Lorg/eclipse/collections/api/LazyIntIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
         0: .line 284
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.asReversed:()Lorg/eclipse/collections/api/LazyIntIterable;
            areturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  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=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.ObjectIntIntToObjectFunction function
         0: .line 290
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            aload 1 /* injectedValue */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.injectIntoWithIndex:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectIntIntToObjectFunction;)Ljava/lang/Object;
            areturn
        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.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            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 int getFirst();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
         0: .line 296
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.getFirst:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  public int indexOf(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // int value
         0: .line 302
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            iload 1 /* value */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.indexOf:(I)I
            ireturn
        end local 1 // int value
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  value  I
    MethodParameters:
       Name  Flags
      value  

  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=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.IntIntProcedure procedure
         0: .line 308
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            aload 1 /* procedure */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.forEachWithIndex:(Lorg/eclipse/collections/api/block/procedure/primitive/IntIntProcedure;)V
         1: .line 309
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.IntIntProcedure procedure
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/IntIntProcedure;
    MethodParameters:
           Name  Flags
      procedure  

  public org.eclipse.collections.impl.string.immutable.CodePointList select(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
         0: .line 314
            new org.eclipse.collections.impl.string.immutable.CodePointList
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.select:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokespecial org.eclipse.collections.impl.string.immutable.CodePointList.<init>:(Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.impl.string.immutable.CodePointList reject(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
         0: .line 320
            new org.eclipse.collections.impl.string.immutable.CodePointList
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokespecial org.eclipse.collections.impl.string.immutable.CodePointList.<init>:(Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public <V> org.eclipse.collections.api.list.ImmutableList<V> collect(org.eclipse.collections.api.block.function.primitive.IntToObjectFunction<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntToObjectFunction function
         0: .line 326
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.collect:(Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntToObjectFunction function
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction<+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction<+TV;>;)Lorg/eclipse/collections/api/list/ImmutableList<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.impl.string.immutable.CodePointList collectInt(org.eclipse.collections.api.block.function.primitive.IntToIntFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntToIntFunction;)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntToIntFunction function
         0: .line 331
            new org.eclipse.collections.impl.list.mutable.primitive.IntArrayList
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.size:()I
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.<init>:(I)V
            astore 2 /* collected */
        start local 2 // org.eclipse.collections.impl.list.mutable.primitive.IntArrayList collected
         1: .line 332
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 6
         3: .line 334
      StackMap locals: org.eclipse.collections.impl.list.mutable.primitive.IntArrayList int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.get:(I)I
            istore 4 /* codePoint */
        start local 4 // int codePoint
         4: .line 335
            aload 2 /* collected */
            aload 1 /* function */
            iload 4 /* codePoint */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.add:(I)Z
            pop
        end local 4 // int codePoint
         5: .line 332
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.size:()I
            if_icmplt 3
        end local 3 // int i
         7: .line 337
            new org.eclipse.collections.impl.string.immutable.CodePointList
            dup
            aload 2 /* collected */
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.toImmutable:()Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokespecial org.eclipse.collections.impl.string.immutable.CodePointList.<init>:(Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;)V
            areturn
        end local 2 // org.eclipse.collections.impl.list.mutable.primitive.IntArrayList collected
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntToIntFunction function
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    8     1   function  Lorg/eclipse/collections/api/block/function/primitive/IntToIntFunction;
            1    8     2  collected  Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
            2    7     3          i  I
            4    5     4  codePoint  I
    MethodParameters:
          Name  Flags
      function  

  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.string.immutable.CodePointList this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
        start local 2 // int ifNone
         0: .line 343
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            aload 1 /* predicate */
            iload 2 /* ifNone */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.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.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;
            0    1     2     ifNone  I
    MethodParameters:
           Name  Flags
      predicate  
      ifNone     

  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.string.immutable.CodePointList this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
         0: .line 349
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.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.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            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.string.immutable.CodePointList this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
         0: .line 355
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.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.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            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.string.immutable.CodePointList this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
         0: .line 361
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.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.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            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.string.immutable.CodePointList this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
         0: .line 367
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.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.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;
    MethodParameters:
           Name  Flags
      predicate  

  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.string.immutable.CodePointList this
         0: .line 373
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.toList:()Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  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.string.immutable.CodePointList this
         0: .line 379
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.toSet:()Lorg/eclipse/collections/api/set/primitive/MutableIntSet;
            areturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  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.string.immutable.CodePointList this
         0: .line 385
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.toBag:()Lorg/eclipse/collections/api/bag/primitive/MutableIntBag;
            areturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  public <T> T injectInto(T, org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction<? super T, ? extends T>);
    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.string.immutable.CodePointList this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction function
         0: .line 391
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            aload 1 /* injectedValue */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.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.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  injectedValue  TT;
            0    1     2       function  Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction<-TT;+TT;>;
    Signature: <T:Ljava/lang/Object;>(TT;Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction<-TT;+TT;>;)TT;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  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.string.immutable.CodePointList this
        start local 1 // int size
         0: .line 397
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            iload 1 /* size */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.chunk:(I)Lorg/eclipse/collections/api/RichIterable;
            areturn
        end local 1 // int size
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            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.string.immutable.CodePointList this
         0: .line 403
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.sum:()J
            lreturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  public int max();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
         0: .line 409
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.max:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  public int min();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
         0: .line 415
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.min:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
         0: .line 421
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.size:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  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=3, locals=13, args_size=5
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList 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 429
            aload 1 /* appendable */
            aload 2 /* start */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         1: .line 430
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.size:()I
            istore 5 /* size */
        start local 5 // int size
         2: .line 431
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         3: goto 20
         4: .line 433
      StackMap locals: int int
      StackMap stack:
            iload 6 /* i */
            ifle 6
         5: .line 435
            aload 1 /* appendable */
            aload 3 /* separator */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         6: .line 437
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* i */
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.get:(I)I
            istore 7 /* codePoint */
        start local 7 // int codePoint
         7: .line 438
            aload 1 /* appendable */
            instanceof java.lang.StringBuilder
            ifeq 10
         8: .line 440
            aload 1 /* appendable */
            checkcast java.lang.StringBuilder
            iload 7 /* codePoint */
            invokevirtual java.lang.StringBuilder.appendCodePoint:(I)Ljava/lang/StringBuilder;
            pop
         9: .line 441
            goto 19
        10: .line 442
      StackMap locals: int
      StackMap stack:
            aload 1 /* appendable */
            instanceof java.lang.StringBuffer
            ifeq 13
        11: .line 444
            aload 1 /* appendable */
            checkcast java.lang.StringBuffer
            iload 7 /* codePoint */
            invokevirtual java.lang.StringBuffer.appendCodePoint:(I)Ljava/lang/StringBuffer;
            pop
        12: .line 445
            goto 19
        13: .line 448
      StackMap locals:
      StackMap stack:
            iload 7 /* codePoint */
            invokestatic java.lang.Character.toChars:(I)[C
            astore 8 /* chars */
        start local 8 // char[] chars
        14: .line 449
            aload 8 /* chars */
            dup
            astore 12
            arraylength
            istore 11
            iconst_0
            istore 10
            goto 18
      StackMap locals: org.eclipse.collections.impl.string.immutable.CodePointList java.lang.Appendable java.lang.String java.lang.String java.lang.String int int int char[] top int int char[]
      StackMap stack:
        15: aload 12
            iload 10
            caload
            istore 9 /* aChar */
        start local 9 // char aChar
        16: .line 451
            aload 1 /* appendable */
            iload 9 /* aChar */
            invokeinterface java.lang.Appendable.append:(C)Ljava/lang/Appendable;
            pop
        end local 9 // char aChar
        17: .line 449
            iinc 10 1
      StackMap locals:
      StackMap stack:
        18: iload 10
            iload 11
            if_icmplt 15
        end local 8 // char[] chars
        end local 7 // int codePoint
        19: .line 431
      StackMap locals: org.eclipse.collections.impl.string.immutable.CodePointList java.lang.Appendable java.lang.String java.lang.String java.lang.String int int
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 6 /* i */
            iload 5 /* size */
            if_icmplt 4
        end local 6 // int i
        21: .line 455
            aload 1 /* appendable */
            aload 4 /* end */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        end local 5 // int size
        22: .line 456
            goto 25
        23: .line 457
      StackMap locals: org.eclipse.collections.impl.string.immutable.CodePointList java.lang.Appendable java.lang.String java.lang.String java.lang.String
      StackMap stack: java.io.IOException
            astore 5 /* e */
        start local 5 // java.io.IOException e
        24: .line 459
            new java.lang.RuntimeException
            dup
            aload 5 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.io.IOException e
        25: .line 461
      StackMap locals:
      StackMap stack:
            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.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   26     0        this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0   26     1  appendable  Ljava/lang/Appendable;
            0   26     2       start  Ljava/lang/String;
            0   26     3   separator  Ljava/lang/String;
            0   26     4         end  Ljava/lang/String;
            2   22     5        size  I
            3   21     6           i  I
            7   19     7   codePoint  I
           14   19     8       chars  [C
           16   17     9       aChar  C
           24   25     5           e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0    22      23  Class java.io.IOException
    MethodParameters:
            Name  Flags
      appendable  
      start       
      separator   
      end         

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // java.lang.Object otherList
         0: .line 466
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            aload 1 /* otherList */
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object otherList
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0    1     1  otherList  Ljava/lang/Object;
    MethodParameters:
           Name  Flags
      otherList  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
         0: .line 472
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.hashCode:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  public org.eclipse.collections.api.list.ImmutableList<org.eclipse.collections.api.tuple.primitive.IntIntPair> zipInt(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // org.eclipse.collections.api.IntIterable iterable
         0: .line 481
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.size:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 482
            aload 1 /* iterable */
            invokeinterface org.eclipse.collections.api.IntIterable.size:()I
            istore 3 /* othersize */
        start local 3 // int othersize
         2: .line 483
            getstatic org.eclipse.collections.api.factory.Lists.mutable:Lorg/eclipse/collections/api/factory/list/MutableListFactory;
            iload 2 /* size */
            iload 3 /* othersize */
            invokestatic java.lang.Math.min:(II)I
            invokeinterface org.eclipse.collections.api.factory.list.MutableListFactory.withInitialCapacity:(I)Lorg/eclipse/collections/api/list/MutableList;
            astore 4 /* target */
        start local 4 // org.eclipse.collections.api.list.MutableList target
         3: .line 484
            aload 1 /* iterable */
            invokeinterface org.eclipse.collections.api.IntIterable.intIterator:()Lorg/eclipse/collections/api/iterator/IntIterator;
            astore 5 /* iterator */
        start local 5 // org.eclipse.collections.api.iterator.IntIterator iterator
         4: .line 485
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         5: goto 8
         6: .line 487
      StackMap locals: org.eclipse.collections.impl.string.immutable.CodePointList org.eclipse.collections.api.IntIterable int int org.eclipse.collections.api.list.MutableList org.eclipse.collections.api.iterator.IntIterator int
      StackMap stack:
            aload 4 /* target */
            aload 0 /* this */
            iload 6 /* i */
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.get:(I)I
            aload 5 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.IntIterator.next:()I
            invokestatic org.eclipse.collections.impl.tuple.primitive.PrimitiveTuples.pair:(II)Lorg/eclipse/collections/api/tuple/primitive/IntIntPair;
            invokeinterface org.eclipse.collections.api.list.MutableList.add:(Ljava/lang/Object;)Z
            pop
         7: .line 485
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 6 /* i */
            iload 2 /* size */
            if_icmpge 9
            iload 6 /* i */
            iload 3 /* othersize */
            if_icmplt 6
        end local 6 // int i
         9: .line 489
      StackMap locals:
      StackMap stack:
            aload 4 /* target */
            invokeinterface org.eclipse.collections.api.list.MutableList.toImmutable:()Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
        end local 5 // org.eclipse.collections.api.iterator.IntIterator iterator
        end local 4 // org.eclipse.collections.api.list.MutableList target
        end local 3 // int othersize
        end local 2 // int size
        end local 1 // org.eclipse.collections.api.IntIterable iterable
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0   10     1   iterable  Lorg/eclipse/collections/api/IntIterable;
            1   10     2       size  I
            2   10     3  othersize  I
            3   10     4     target  Lorg/eclipse/collections/api/list/MutableList<Lorg/eclipse/collections/api/tuple/primitive/IntIntPair;>;
            4   10     5   iterator  Lorg/eclipse/collections/api/iterator/IntIterator;
            5    9     6          i  I
    Signature: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/list/ImmutableList<Lorg/eclipse/collections/api/tuple/primitive/IntIntPair;>;
    MethodParameters:
          Name  Flags
      iterable  

  public <T> org.eclipse.collections.api.list.ImmutableList<org.eclipse.collections.api.tuple.primitive.IntObjectPair<T>> zip(java.lang.Iterable<T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
        start local 1 // java.lang.Iterable iterable
         0: .line 498
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.size:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 499
            aload 1 /* iterable */
            invokestatic org.eclipse.collections.impl.utility.Iterate.sizeOf:(Ljava/lang/Iterable;)I
            istore 3 /* othersize */
        start local 3 // int othersize
         2: .line 500
            getstatic org.eclipse.collections.api.factory.Lists.mutable:Lorg/eclipse/collections/api/factory/list/MutableListFactory;
            iload 2 /* size */
            iload 3 /* othersize */
            invokestatic java.lang.Math.min:(II)I
            invokeinterface org.eclipse.collections.api.factory.list.MutableListFactory.withInitialCapacity:(I)Lorg/eclipse/collections/api/list/MutableList;
            astore 4 /* target */
        start local 4 // org.eclipse.collections.api.list.MutableList target
         3: .line 501
            aload 1 /* iterable */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 5 /* iterator */
        start local 5 // java.util.Iterator iterator
         4: .line 502
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         5: goto 8
         6: .line 504
      StackMap locals: org.eclipse.collections.impl.string.immutable.CodePointList java.lang.Iterable int int org.eclipse.collections.api.list.MutableList java.util.Iterator int
      StackMap stack:
            aload 4 /* target */
            aload 0 /* this */
            iload 6 /* i */
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.get:(I)I
            aload 5 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.tuple.primitive.PrimitiveTuples.pair:(ILjava/lang/Object;)Lorg/eclipse/collections/api/tuple/primitive/IntObjectPair;
            invokeinterface org.eclipse.collections.api.list.MutableList.add:(Ljava/lang/Object;)Z
            pop
         7: .line 502
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 6 /* i */
            iload 2 /* size */
            if_icmpge 9
            iload 6 /* i */
            iload 3 /* othersize */
            if_icmplt 6
        end local 6 // int i
         9: .line 506
      StackMap locals:
      StackMap stack:
            aload 4 /* target */
            invokeinterface org.eclipse.collections.api.list.MutableList.toImmutable:()Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
        end local 5 // java.util.Iterator iterator
        end local 4 // org.eclipse.collections.api.list.MutableList target
        end local 3 // int othersize
        end local 2 // int size
        end local 1 // java.lang.Iterable iterable
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            0   10     1   iterable  Ljava/lang/Iterable<TT;>;
            1   10     2       size  I
            2   10     3  othersize  I
            3   10     4     target  Lorg/eclipse/collections/api/list/MutableList<Lorg/eclipse/collections/api/tuple/primitive/IntObjectPair<TT;>;>;
            4   10     5   iterator  Ljava/util/Iterator<TT;>;
            5    9     6          i  I
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<TT;>;)Lorg/eclipse/collections/api/list/ImmutableList<Lorg/eclipse/collections/api/tuple/primitive/IntObjectPair<TT;>;>;
    MethodParameters:
          Name  Flags
      iterable  

  public java.util.Spliterator$OfInt spliterator();
    descriptor: ()Ljava/util/Spliterator$OfInt;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
         0: .line 512
            aload 0 /* this */
            getfield org.eclipse.collections.impl.string.immutable.CodePointList.codePoints:Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            invokeinterface org.eclipse.collections.api.list.primitive.ImmutableIntList.spliterator:()Ljava/util/Spliterator$OfInt;
            areturn
        end local 0 // org.eclipse.collections.impl.string.immutable.CodePointList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/string/immutable/CodePointList;

  public org.eclipse.collections.api.list.ListIterable collectWithIndex(org.eclipse.collections.api.block.function.primitive.IntIntToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntIntToObjectFunction;)Lorg/eclipse/collections/api/list/ListIterable;
    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.list.primitive.ImmutableIntList.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/IntIntToObjectFunction;)Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable collectWithIndex(org.eclipse.collections.api.block.function.primitive.IntIntToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntIntToObjectFunction;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    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.list.primitive.ImmutableIntList.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/IntIntToObjectFunction;)Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  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.list.primitive.ImmutableIntList.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/IntIntToObjectFunction;)Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

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

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

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

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

  public org.eclipse.collections.api.ordered.primitive.ReversibleIntIterable distinct();
    descriptor: ()Lorg/eclipse/collections/api/ordered/primitive/ReversibleIntIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.distinct:()Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.IntList distinct();
    descriptor: ()Lorg/eclipse/collections/api/list/primitive/IntList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.distinct:()Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.ImmutableIntList distinct();
    descriptor: ()Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.distinct:()Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.ImmutableIntCollection newWithout(int);
    descriptor: (I)Lorg/eclipse/collections/api/collection/primitive/ImmutableIntCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.newWithout:(I)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.ImmutableIntList newWithout(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.newWithout:(I)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.ImmutableIntCollection newWith(int);
    descriptor: (I)Lorg/eclipse/collections/api/collection/primitive/ImmutableIntCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.newWith:(I)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.ImmutableIntList newWith(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.newWith:(I)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

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

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

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

  public java.lang.CharSequence subSequence(int, int);
    descriptor: (II)Ljava/lang/CharSequence;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            iload 2
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.subSequence:(II)Ljava/lang/String;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable zip(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/ListIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.IntList tap(org.eclipse.collections.api.block.procedure.primitive.IntProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)Lorg/eclipse/collections/api/list/primitive/IntList;
    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.list.primitive.ImmutableIntList.tap:(Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.ImmutableIntCollection tap(org.eclipse.collections.api.block.procedure.primitive.IntProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)Lorg/eclipse/collections/api/collection/primitive/ImmutableIntCollection;
    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.list.primitive.ImmutableIntList.tap:(Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

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

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

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

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

  public org.eclipse.collections.api.ordered.primitive.ReversibleIntIterable toReversed();
    descriptor: ()Lorg/eclipse/collections/api/ordered/primitive/ReversibleIntIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.toReversed:()Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.IntList toReversed();
    descriptor: ()Lorg/eclipse/collections/api/list/primitive/IntList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.toReversed:()Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.ImmutableIntList toReversed();
    descriptor: ()Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.toReversed:()Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable zipInt(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/list/ListIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.zipInt:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.ImmutableIntCollection newWithoutAll(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/collection/primitive/ImmutableIntCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.newWithoutAll:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.ImmutableIntList newWithoutAll(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.newWithoutAll:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.ImmutableIntCollection newWithAll(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/collection/primitive/ImmutableIntCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.newWithAll:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.ImmutableIntList newWithAll(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.newWithAll:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/string/immutable/CodePointList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.IntList subList(int, int);
    descriptor: (II)Lorg/eclipse/collections/api/list/primitive/IntList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            iload 2
            invokevirtual org.eclipse.collections.impl.string.immutable.CodePointList.subList:(II)Lorg/eclipse/collections/api/list/primitive/ImmutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "CodePointList.java"
InnerClasses:
  public abstract OfInt = java.util.Spliterator$OfInt of java.util.Spliterator