public class org.eclipse.collections.impl.lazy.primitive.TapCharIterable$TapCharIterator implements org.eclipse.collections.api.iterator.CharIterator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.lazy.primitive.TapCharIterable$TapCharIterator
  super_class: java.lang.Object
{
  private final org.eclipse.collections.api.iterator.CharIterator iterator;
    descriptor: Lorg/eclipse/collections/api/iterator/CharIterator;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.eclipse.collections.api.block.procedure.primitive.CharProcedure procedure;
    descriptor: Lorg/eclipse/collections/api/block/procedure/primitive/CharProcedure;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.eclipse.collections.api.CharIterable, org.eclipse.collections.api.block.procedure.primitive.CharProcedure);
    descriptor: (Lorg/eclipse/collections/api/CharIterable;Lorg/eclipse/collections/api/block/procedure/primitive/CharProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.primitive.TapCharIterable$TapCharIterator this
        start local 1 // org.eclipse.collections.api.CharIterable iterable
        start local 2 // org.eclipse.collections.api.block.procedure.primitive.CharProcedure procedure
         0: .line 96
            aload 0 /* this */
            aload 1 /* iterable */
            invokeinterface org.eclipse.collections.api.CharIterable.charIterator:()Lorg/eclipse/collections/api/iterator/CharIterator;
            aload 2 /* procedure */
            invokespecial org.eclipse.collections.impl.lazy.primitive.TapCharIterable$TapCharIterator.<init>:(Lorg/eclipse/collections/api/iterator/CharIterator;Lorg/eclipse/collections/api/block/procedure/primitive/CharProcedure;)V
         1: .line 97
            return
        end local 2 // org.eclipse.collections.api.block.procedure.primitive.CharProcedure procedure
        end local 1 // org.eclipse.collections.api.CharIterable iterable
        end local 0 // org.eclipse.collections.impl.lazy.primitive.TapCharIterable$TapCharIterator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/lazy/primitive/TapCharIterable$TapCharIterator;
            0    2     1   iterable  Lorg/eclipse/collections/api/CharIterable;
            0    2     2  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/CharProcedure;
    MethodParameters:
           Name  Flags
      iterable   
      procedure  

  public void <init>(org.eclipse.collections.api.iterator.CharIterator, org.eclipse.collections.api.block.procedure.primitive.CharProcedure);
    descriptor: (Lorg/eclipse/collections/api/iterator/CharIterator;Lorg/eclipse/collections/api/block/procedure/primitive/CharProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.primitive.TapCharIterable$TapCharIterator this
        start local 1 // org.eclipse.collections.api.iterator.CharIterator iterator
        start local 2 // org.eclipse.collections.api.block.procedure.primitive.CharProcedure procedure
         0: .line 99
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 101
            aload 0 /* this */
            aload 1 /* iterator */
            putfield org.eclipse.collections.impl.lazy.primitive.TapCharIterable$TapCharIterator.iterator:Lorg/eclipse/collections/api/iterator/CharIterator;
         2: .line 102
            aload 0 /* this */
            aload 2 /* procedure */
            putfield org.eclipse.collections.impl.lazy.primitive.TapCharIterable$TapCharIterator.procedure:Lorg/eclipse/collections/api/block/procedure/primitive/CharProcedure;
         3: .line 103
            return
        end local 2 // org.eclipse.collections.api.block.procedure.primitive.CharProcedure procedure
        end local 1 // org.eclipse.collections.api.iterator.CharIterator iterator
        end local 0 // org.eclipse.collections.impl.lazy.primitive.TapCharIterable$TapCharIterator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/lazy/primitive/TapCharIterable$TapCharIterator;
            0    4     1   iterator  Lorg/eclipse/collections/api/iterator/CharIterator;
            0    4     2  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/CharProcedure;
    MethodParameters:
           Name  Flags
      iterator   
      procedure  

  public boolean hasNext();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.primitive.TapCharIterable$TapCharIterator this
         0: .line 108
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.TapCharIterable$TapCharIterator.iterator:Lorg/eclipse/collections/api/iterator/CharIterator;
            invokeinterface org.eclipse.collections.api.iterator.CharIterator.hasNext:()Z
            ireturn
        end local 0 // org.eclipse.collections.impl.lazy.primitive.TapCharIterable$TapCharIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/primitive/TapCharIterable$TapCharIterator;

  public char next();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.primitive.TapCharIterable$TapCharIterator this
         0: .line 114
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.TapCharIterable$TapCharIterator.iterator:Lorg/eclipse/collections/api/iterator/CharIterator;
            invokeinterface org.eclipse.collections.api.iterator.CharIterator.next:()C
            istore 1 /* next */
        start local 1 // char next
         1: .line 115
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.TapCharIterable$TapCharIterator.procedure:Lorg/eclipse/collections/api/block/procedure/primitive/CharProcedure;
            iload 1 /* next */
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.CharProcedure.value:(C)V
         2: .line 116
            iload 1 /* next */
            ireturn
        end local 1 // char next
        end local 0 // org.eclipse.collections.impl.lazy.primitive.TapCharIterable$TapCharIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/lazy/primitive/TapCharIterable$TapCharIterator;
            1    3     1  next  C
}
SourceFile: "TapCharIterable.java"
NestHost: org.eclipse.collections.impl.lazy.primitive.TapCharIterable
InnerClasses:
  public TapCharIterator = org.eclipse.collections.impl.lazy.primitive.TapCharIterable$TapCharIterator of org.eclipse.collections.impl.lazy.primitive.TapCharIterable