public abstract class org.eclipse.collections.impl.lazy.AbstractLazyIterable<T> extends org.eclipse.collections.impl.AbstractRichIterable<T> implements org.eclipse.collections.api.LazyIterable<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.eclipse.collections.impl.lazy.AbstractLazyIterable
  super_class: org.eclipse.collections.impl.AbstractRichIterable
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
         0: .line 82
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.AbstractRichIterable.<init>:()V
            return
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;

  public org.eclipse.collections.api.LazyIterable<T> asLazy();
    descriptor: ()Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
         0: .line 89
            aload 0 /* this */
            areturn
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
    Signature: ()Lorg/eclipse/collections/api/LazyIterable<TT;>;

  public <R extends java.util.Collection<T>> R into();
    descriptor: (Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // java.util.Collection target
         0: .line 95
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Procedures2.addToCollection:()Lorg/eclipse/collections/api/block/procedure/Procedure2;
            aload 1 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.forEachWith:(Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
         1: .line 96
            aload 1 /* target */
            areturn
        end local 1 // java.util.Collection target
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    2     1  target  TR;
    Signature: <R::Ljava/util/Collection<TT;>;>(TR;)TR;
    MethodParameters:
        Name  Flags
      target  

  public <E> E[] toArray();
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // java.lang.Object[] array
         0: .line 102
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.toList:()Lorg/eclipse/collections/api/list/MutableList;
            aload 1 /* array */
            invokeinterface org.eclipse.collections.api.list.MutableList.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object[] array
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  array  [Ljava/lang/Object;
    Signature: <E:Ljava/lang/Object;>([TE;)[TE;
    MethodParameters:
       Name  Flags
      array  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
         0: .line 108
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.alwaysTrue:()Lorg/eclipse/collections/impl/block/factory/Predicates;
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.count:(Lorg/eclipse/collections/api/block/predicate/Predicate;)I
            ireturn
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
         0: .line 114
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.alwaysTrue:()Lorg/eclipse/collections/impl/block/factory/Predicates;
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.anySatisfy:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;

  public T getFirst();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
         0: .line 120
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.alwaysTrue:()Lorg/eclipse/collections/impl/block/factory/Predicates;
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.detect:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
    Signature: ()TT;

  public T getLast();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
         0: .line 126
            iconst_1
            anewarray java.lang.Object
            astore 1 /* result */
        start local 1 // java.lang.Object[] result
         1: .line 127
            aload 0 /* this */
            aload 1 /* result */
            invokedynamic value([Ljava/lang/Object;)Lorg/eclipse/collections/api/block/procedure/Procedure;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  org/eclipse/collections/impl/lazy/AbstractLazyIterable.lambda$0([Ljava/lang/Object;Ljava/lang/Object;)V (6)
                  (Ljava/lang/Object;)V
                  1
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.each:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 128
            aload 1 /* result */
            iconst_0
            aaload
            areturn
        end local 1 // java.lang.Object[] result
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            1    3     1  result  [Ljava/lang/Object;
    Signature: ()TT;

  public T getOnly();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
         0: .line 134
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.iterator:()Ljava/util/Iterator;
            astore 1 /* iterator */
        start local 1 // java.util.Iterator iterator
         1: .line 136
            aload 1 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         2: .line 138
            new java.lang.IllegalStateException
            dup
            ldc "Size must be 1 but was 0"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 141
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 1 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 2 /* result */
        start local 2 // java.lang.Object result
         4: .line 142
            aload 1 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifeq 6
         5: .line 144
            new java.lang.IllegalStateException
            dup
            ldc "Size must be 1 but was greater than 1"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 147
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* result */
            areturn
        end local 2 // java.lang.Object result
        end local 1 // java.util.Iterator iterator
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            1    7     1  iterator  Ljava/util/Iterator<TT;>;
            4    7     2    result  TT;
    Signature: ()TT;

  public org.eclipse.collections.api.LazyIterable<T> select(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 153
            aload 0 /* this */
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.select:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> org.eclipse.collections.api.LazyIterable<T> selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 159
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.bind:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/block/predicate/Predicate;
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.select:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public org.eclipse.collections.api.LazyIterable<T> reject(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 165
            aload 0 /* this */
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.reject:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> org.eclipse.collections.api.LazyIterable<T> rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 171
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.bind:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/block/predicate/Predicate;
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.reject:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public org.eclipse.collections.api.partition.list.PartitionMutableList<T> partition(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 177
            new org.eclipse.collections.impl.partition.list.PartitionFastList
            dup
            invokespecial org.eclipse.collections.impl.partition.list.PartitionFastList.<init>:()V
            astore 2 /* partitionMutableList */
        start local 2 // org.eclipse.collections.api.partition.list.PartitionMutableList partitionMutableList
         1: .line 178
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.PartitionProcedure
            dup
            aload 1 /* predicate */
            aload 2 /* partitionMutableList */
            invokespecial org.eclipse.collections.impl.block.procedure.PartitionProcedure.<init>:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/partition/PartitionMutableCollection;)V
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 179
            aload 2 /* partitionMutableList */
            areturn
        end local 2 // org.eclipse.collections.api.partition.list.PartitionMutableList partitionMutableList
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    3     0                  this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    3     1             predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            1    3     2  partitionMutableList  Lorg/eclipse/collections/api/partition/list/PartitionMutableList<TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> org.eclipse.collections.api.partition.list.PartitionMutableList<T> partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 185
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.bind:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/block/predicate/Predicate;
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <S> org.eclipse.collections.api.LazyIterable<S> selectInstancesOf(java.lang.Class<S>);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // java.lang.Class clazz
         0: .line 191
            aload 0 /* this */
            aload 1 /* clazz */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.selectInstancesOf:(Ljava/lang/Iterable;Ljava/lang/Class;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 1 // java.lang.Class clazz
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  clazz  Ljava/lang/Class<TS;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Class<TS;>;)Lorg/eclipse/collections/api/LazyIterable<TS;>;
    MethodParameters:
       Name  Flags
      clazz  

  public <V> org.eclipse.collections.api.LazyIterable<V> collect(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 197
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.collect:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/LazyIterable<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.LazyBooleanIterable collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/LazyBooleanIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
         0: .line 203
            new org.eclipse.collections.impl.lazy.primitive.CollectBooleanIterable
            dup
            aload 0 /* this */
            aload 1 /* booleanFunction */
            invokespecial org.eclipse.collections.impl.lazy.primitive.CollectBooleanIterable.<init>:(Lorg/eclipse/collections/api/LazyIterable;Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  booleanFunction  Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TT;>;)Lorg/eclipse/collections/api/LazyBooleanIterable;
    MethodParameters:
                 Name  Flags
      booleanFunction  

  public org.eclipse.collections.api.LazyByteIterable collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/LazyByteIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
         0: .line 209
            new org.eclipse.collections.impl.lazy.primitive.CollectByteIterable
            dup
            aload 0 /* this */
            aload 1 /* byteFunction */
            invokespecial org.eclipse.collections.impl.lazy.primitive.CollectByteIterable.<init>:(Lorg/eclipse/collections/api/LazyIterable;Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  byteFunction  Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TT;>;)Lorg/eclipse/collections/api/LazyByteIterable;
    MethodParameters:
              Name  Flags
      byteFunction  

  public org.eclipse.collections.api.LazyCharIterable collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/LazyCharIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
         0: .line 215
            new org.eclipse.collections.impl.lazy.primitive.CollectCharIterable
            dup
            aload 0 /* this */
            aload 1 /* charFunction */
            invokespecial org.eclipse.collections.impl.lazy.primitive.CollectCharIterable.<init>:(Lorg/eclipse/collections/api/LazyIterable;Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  charFunction  Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TT;>;)Lorg/eclipse/collections/api/LazyCharIterable;
    MethodParameters:
              Name  Flags
      charFunction  

  public org.eclipse.collections.api.LazyDoubleIterable collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/LazyDoubleIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
         0: .line 221
            new org.eclipse.collections.impl.lazy.primitive.CollectDoubleIterable
            dup
            aload 0 /* this */
            aload 1 /* doubleFunction */
            invokespecial org.eclipse.collections.impl.lazy.primitive.CollectDoubleIterable.<init>:(Lorg/eclipse/collections/api/LazyIterable;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  doubleFunction  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;)Lorg/eclipse/collections/api/LazyDoubleIterable;
    MethodParameters:
                Name  Flags
      doubleFunction  

  public org.eclipse.collections.api.LazyFloatIterable collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/LazyFloatIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
         0: .line 227
            new org.eclipse.collections.impl.lazy.primitive.CollectFloatIterable
            dup
            aload 0 /* this */
            aload 1 /* floatFunction */
            invokespecial org.eclipse.collections.impl.lazy.primitive.CollectFloatIterable.<init>:(Lorg/eclipse/collections/api/LazyIterable;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  floatFunction  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;)Lorg/eclipse/collections/api/LazyFloatIterable;
    MethodParameters:
               Name  Flags
      floatFunction  

  public org.eclipse.collections.api.LazyIntIterable collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/LazyIntIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
         0: .line 233
            new org.eclipse.collections.impl.lazy.primitive.CollectIntIterable
            dup
            aload 0 /* this */
            aload 1 /* intFunction */
            invokespecial org.eclipse.collections.impl.lazy.primitive.CollectIntIterable.<init>:(Lorg/eclipse/collections/api/LazyIterable;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  intFunction  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;)Lorg/eclipse/collections/api/LazyIntIterable;
    MethodParameters:
             Name  Flags
      intFunction  

  public org.eclipse.collections.api.LazyLongIterable collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/LazyLongIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
         0: .line 239
            new org.eclipse.collections.impl.lazy.primitive.CollectLongIterable
            dup
            aload 0 /* this */
            aload 1 /* longFunction */
            invokespecial org.eclipse.collections.impl.lazy.primitive.CollectLongIterable.<init>:(Lorg/eclipse/collections/api/LazyIterable;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  longFunction  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;)Lorg/eclipse/collections/api/LazyLongIterable;
    MethodParameters:
              Name  Flags
      longFunction  

  public org.eclipse.collections.api.LazyShortIterable collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/LazyShortIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
         0: .line 245
            new org.eclipse.collections.impl.lazy.primitive.CollectShortIterable
            dup
            aload 0 /* this */
            aload 1 /* shortFunction */
            invokespecial org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.<init>:(Lorg/eclipse/collections/api/LazyIterable;Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  shortFunction  Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;)Lorg/eclipse/collections/api/LazyShortIterable;
    MethodParameters:
               Name  Flags
      shortFunction  

  public <P, V> org.eclipse.collections.api.LazyIterable<V> collectWith(org.eclipse.collections.api.block.function.Function2<? super T, ? super P, ? extends V>, P);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
        start local 2 // java.lang.Object parameter
         0: .line 251
            aload 0 /* this */
            aload 1 /* function */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.block.factory.Functions.bind:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/block/function/Function;
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.collect:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.function.Function2 function
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1   function  Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TV;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TV;>;TP;)Lorg/eclipse/collections/api/LazyIterable<TV;>;
    MethodParameters:
           Name  Flags
      function   
      parameter  

  public <V> org.eclipse.collections.api.LazyIterable<V> flatCollect(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 257
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.flatCollect:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;)Lorg/eclipse/collections/api/LazyIterable<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.LazyIterable<T> concatenate(java.lang.Iterable<T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // java.lang.Iterable iterable
         0: .line 263
            iconst_2
            anewarray java.lang.Iterable
            dup
            iconst_0
            aload 0 /* this */
            aastore
            dup
            iconst_1
            aload 1 /* iterable */
            aastore
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.concatenate:([Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 1 // java.lang.Iterable iterable
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  iterable  Ljava/lang/Iterable<TT;>;
    Signature: (Ljava/lang/Iterable<TT;>;)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
          Name  Flags
      iterable  

  public <V> org.eclipse.collections.api.LazyIterable<V> collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T>, org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function function
         0: .line 269
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.collectIf:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    1     2   function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/LazyIterable<TV;>;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  public org.eclipse.collections.api.LazyIterable<T> take(int);
    descriptor: (I)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // int count
         0: .line 275
            aload 0 /* this */
            iload 1 /* count */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.take:(Ljava/lang/Iterable;I)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  count  I
    Signature: (I)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
       Name  Flags
      count  

  public org.eclipse.collections.api.LazyIterable<T> drop(int);
    descriptor: (I)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // int count
         0: .line 281
            aload 0 /* this */
            iload 1 /* count */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.drop:(Ljava/lang/Iterable;I)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  count  I
    Signature: (I)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
       Name  Flags
      count  

  public org.eclipse.collections.api.LazyIterable<T> takeWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 287
            aload 0 /* this */
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.takeWhile:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.LazyIterable<T> dropWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 293
            aload 0 /* this */
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.dropWhile:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.LazyIterable<T> distinct();
    descriptor: ()Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
         0: .line 299
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.distinct:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
    Signature: ()Lorg/eclipse/collections/api/LazyIterable<TT;>;

  public org.eclipse.collections.api.stack.MutableStack<T> toStack();
    descriptor: ()Lorg/eclipse/collections/api/stack/MutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
         0: .line 304
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.stack.mutable.ArrayStack.newStack:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
    Signature: ()Lorg/eclipse/collections/api/stack/MutableStack<TT;>;

  public <V> org.eclipse.collections.api.multimap.Multimap<V, T> groupBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 310
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.multimap.list.FastListMultimap.newMultimap:()Lorg/eclipse/collections/impl/multimap/list/FastListMultimap;
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.groupBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/multimap/Multimap<TV;TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <V> org.eclipse.collections.api.multimap.Multimap<V, T> groupByEach(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 316
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.multimap.list.FastListMultimap.newMultimap:()Lorg/eclipse/collections/impl/multimap/list/FastListMultimap;
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;)Lorg/eclipse/collections/api/multimap/Multimap<TV;TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <V> org.eclipse.collections.api.map.MapIterable<V, T> groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MapIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 322
            aload 0 /* this */
            aload 1 /* function */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.size:()I
            invokestatic org.eclipse.collections.impl.map.mutable.UnifiedMap.newMap:(I)Lorg/eclipse/collections/impl/map/mutable/UnifiedMap;
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/map/MutableMapIterable;)Lorg/eclipse/collections/api/map/MutableMapIterable;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/map/MapIterable<TV;TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <S> org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.tuple.Pair<T, S>> zip(java.lang.Iterable<S>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // java.lang.Iterable that
         0: .line 328
            aload 0 /* this */
            aload 1 /* that */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.zip:(Ljava/lang/Iterable;Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 1 // java.lang.Iterable that
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  that  Ljava/lang/Iterable<TS;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Iterable<TS;>;)Lorg/eclipse/collections/api/LazyIterable<Lorg/eclipse/collections/api/tuple/Pair<TT;TS;>;>;
    MethodParameters:
      Name  Flags
      that  

  public org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.tuple.Pair<T, java.lang.Integer>> zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
         0: .line 334
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.zipWithIndex:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
    Signature: ()Lorg/eclipse/collections/api/LazyIterable<Lorg/eclipse/collections/api/tuple/Pair<TT;Ljava/lang/Integer;>;>;

  public org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.RichIterable<T>> chunk(int);
    descriptor: (I)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // int size
         0: .line 340
            aload 0 /* this */
            iload 1 /* size */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.chunk:(Ljava/lang/Iterable;I)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 1 // int size
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  size  I
    Signature: (I)Lorg/eclipse/collections/api/LazyIterable<Lorg/eclipse/collections/api/RichIterable<TT;>;>;
    MethodParameters:
      Name  Flags
      size  

  public org.eclipse.collections.api.LazyIterable<T> tap(org.eclipse.collections.api.block.procedure.Procedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 346
            aload 0 /* this */
            aload 1 /* procedure */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.tap:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    1     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
           Name  Flags
      procedure  

  public <V> org.eclipse.collections.api.map.primitive.ObjectLongMap<V> sumByInt(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, org.eclipse.collections.api.block.function.primitive.IntFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.IntFunction function
         0: .line 352
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ObjectLongHashMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/primitive/ObjectLongHashMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.map.primitive.MutableObjectLongMap result
         1: .line 353
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.PrimitiveFunctions.sumByIntFunction:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/block/function/Function2;
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.ObjectLongMap
            areturn
        end local 3 // org.eclipse.collections.api.map.primitive.MutableObjectLongMap result
        end local 2 // org.eclipse.collections.api.block.function.primitive.IntFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    2     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    2     2  function  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;
            1    2     3    result  Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap<TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap<TV;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public <V> org.eclipse.collections.api.map.primitive.ObjectDoubleMap<V> sumByFloat(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
         0: .line 359
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ObjectDoubleHashMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/primitive/ObjectDoubleHashMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap result
         1: .line 360
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.PrimitiveFunctions.sumByFloatFunction:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/block/function/Function2;
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.ObjectDoubleMap
            areturn
        end local 3 // org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap result
        end local 2 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    2     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    2     2  function  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;
            1    2     3    result  Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap<TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap<TV;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public <V> org.eclipse.collections.api.map.primitive.ObjectLongMap<V> sumByLong(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, org.eclipse.collections.api.block.function.primitive.LongFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.LongFunction function
         0: .line 366
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ObjectLongHashMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/primitive/ObjectLongHashMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.map.primitive.MutableObjectLongMap result
         1: .line 367
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.PrimitiveFunctions.sumByLongFunction:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/block/function/Function2;
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.ObjectLongMap
            areturn
        end local 3 // org.eclipse.collections.api.map.primitive.MutableObjectLongMap result
        end local 2 // org.eclipse.collections.api.block.function.primitive.LongFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    2     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    2     2  function  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;
            1    2     3    result  Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap<TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap<TV;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public <V> org.eclipse.collections.api.map.primitive.ObjectDoubleMap<V> sumByDouble(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
         0: .line 373
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ObjectDoubleHashMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/primitive/ObjectDoubleHashMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap result
         1: .line 374
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.PrimitiveFunctions.sumByDoubleFunction:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/block/function/Function2;
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.ObjectDoubleMap
            areturn
        end local 3 // org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap result
        end local 2 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    2     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    2     2  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;
            1    2     3    result  Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap<TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap<TV;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public java.util.Optional<T> minOptional(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // java.util.Comparator comparator
         0: .line 380
            new org.eclipse.collections.impl.block.procedure.MinComparatorProcedure
            dup
            aload 1 /* comparator */
            invokespecial org.eclipse.collections.impl.block.procedure.MinComparatorProcedure.<init>:(Ljava/util/Comparator;)V
            astore 2 /* minComparatorProcedure */
        start local 2 // org.eclipse.collections.impl.block.procedure.MinComparatorProcedure minComparatorProcedure
         1: .line 381
            aload 0 /* this */
            aload 2 /* minComparatorProcedure */
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 382
            aload 2 /* minComparatorProcedure */
            invokevirtual org.eclipse.collections.impl.block.procedure.MinComparatorProcedure.getResultOptional:()Ljava/util/Optional;
            areturn
        end local 2 // org.eclipse.collections.impl.block.procedure.MinComparatorProcedure minComparatorProcedure
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    3     0                    this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    3     1              comparator  Ljava/util/Comparator<-TT;>;
            1    3     2  minComparatorProcedure  Lorg/eclipse/collections/impl/block/procedure/MinComparatorProcedure<TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)Ljava/util/Optional<TT;>;
    MethodParameters:
            Name  Flags
      comparator  

  public java.util.Optional<T> maxOptional(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // java.util.Comparator comparator
         0: .line 388
            new org.eclipse.collections.impl.block.procedure.MaxComparatorProcedure
            dup
            aload 1 /* comparator */
            invokespecial org.eclipse.collections.impl.block.procedure.MaxComparatorProcedure.<init>:(Ljava/util/Comparator;)V
            astore 2 /* maxComparatorProcedure */
        start local 2 // org.eclipse.collections.impl.block.procedure.MaxComparatorProcedure maxComparatorProcedure
         1: .line 389
            aload 0 /* this */
            aload 2 /* maxComparatorProcedure */
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 390
            aload 2 /* maxComparatorProcedure */
            invokevirtual org.eclipse.collections.impl.block.procedure.MaxComparatorProcedure.getResultOptional:()Ljava/util/Optional;
            areturn
        end local 2 // org.eclipse.collections.impl.block.procedure.MaxComparatorProcedure maxComparatorProcedure
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    3     0                    this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    3     1              comparator  Ljava/util/Comparator<-TT;>;
            1    3     2  maxComparatorProcedure  Lorg/eclipse/collections/impl/block/procedure/MaxComparatorProcedure<TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)Ljava/util/Optional<TT;>;
    MethodParameters:
            Name  Flags
      comparator  

  public java.util.Optional<T> minOptional();
    descriptor: ()Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
         0: .line 396
            new org.eclipse.collections.impl.block.procedure.MinProcedure
            dup
            invokespecial org.eclipse.collections.impl.block.procedure.MinProcedure.<init>:()V
            astore 1 /* minProcedure */
        start local 1 // org.eclipse.collections.impl.block.procedure.MinProcedure minProcedure
         1: .line 397
            aload 0 /* this */
            aload 1 /* minProcedure */
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 398
            aload 1 /* minProcedure */
            invokevirtual org.eclipse.collections.impl.block.procedure.MinProcedure.getResultOptional:()Ljava/util/Optional;
            areturn
        end local 1 // org.eclipse.collections.impl.block.procedure.MinProcedure minProcedure
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            1    3     1  minProcedure  Lorg/eclipse/collections/impl/block/procedure/MinProcedure<TT;>;
    Signature: ()Ljava/util/Optional<TT;>;

  public java.util.Optional<T> maxOptional();
    descriptor: ()Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
         0: .line 404
            new org.eclipse.collections.impl.block.procedure.MaxProcedure
            dup
            invokespecial org.eclipse.collections.impl.block.procedure.MaxProcedure.<init>:()V
            astore 1 /* maxProcedure */
        start local 1 // org.eclipse.collections.impl.block.procedure.MaxProcedure maxProcedure
         1: .line 405
            aload 0 /* this */
            aload 1 /* maxProcedure */
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 406
            aload 1 /* maxProcedure */
            invokevirtual org.eclipse.collections.impl.block.procedure.MaxProcedure.getResultOptional:()Ljava/util/Optional;
            areturn
        end local 1 // org.eclipse.collections.impl.block.procedure.MaxProcedure maxProcedure
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            1    3     1  maxProcedure  Lorg/eclipse/collections/impl/block/procedure/MaxProcedure<TT;>;
    Signature: ()Ljava/util/Optional<TT;>;

  public <V extends java.lang.Comparable<? super V>> java.util.Optional<T> minByOptional(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 412
            new org.eclipse.collections.impl.block.procedure.MinByProcedure
            dup
            aload 1 /* function */
            invokespecial org.eclipse.collections.impl.block.procedure.MinByProcedure.<init>:(Lorg/eclipse/collections/api/block/function/Function;)V
            astore 2 /* minByProcedure */
        start local 2 // org.eclipse.collections.impl.block.procedure.MinByProcedure minByProcedure
         1: .line 413
            aload 0 /* this */
            aload 2 /* minByProcedure */
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 414
            aload 2 /* minByProcedure */
            invokevirtual org.eclipse.collections.impl.block.procedure.MinByProcedure.getResultOptional:()Ljava/util/Optional;
            areturn
        end local 2 // org.eclipse.collections.impl.block.procedure.MinByProcedure minByProcedure
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    3     1        function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            1    3     2  minByProcedure  Lorg/eclipse/collections/impl/block/procedure/MinByProcedure<TT;TV;>;
    Signature: <V::Ljava/lang/Comparable<-TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Ljava/util/Optional<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <V extends java.lang.Comparable<? super V>> java.util.Optional<T> maxByOptional(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 420
            new org.eclipse.collections.impl.block.procedure.MaxByProcedure
            dup
            aload 1 /* function */
            invokespecial org.eclipse.collections.impl.block.procedure.MaxByProcedure.<init>:(Lorg/eclipse/collections/api/block/function/Function;)V
            astore 2 /* maxByProcedure */
        start local 2 // org.eclipse.collections.impl.block.procedure.MaxByProcedure maxByProcedure
         1: .line 421
            aload 0 /* this */
            aload 2 /* maxByProcedure */
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 422
            aload 2 /* maxByProcedure */
            invokevirtual org.eclipse.collections.impl.block.procedure.MaxByProcedure.getResultOptional:()Ljava/util/Optional;
            areturn
        end local 2 // org.eclipse.collections.impl.block.procedure.MaxByProcedure maxByProcedure
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.lazy.AbstractLazyIterable this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
            0    3     1        function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            1    3     2  maxByProcedure  Lorg/eclipse/collections/impl/block/procedure/MaxByProcedure<TT;TV;>;
    Signature: <V::Ljava/lang/Comparable<-TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Ljava/util/Optional<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.RichIterable collectIf(org.eclipse.collections.api.block.predicate.Predicate, org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            aload 2
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable chunk(int);
    descriptor: (I)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
            iload 1
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.chunk:(I)Lorg/eclipse/collections/api/LazyIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/RichIterable;
    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.lazy.AbstractLazyIterable.zipWithIndex:()Lorg/eclipse/collections/api/LazyIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable zip(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)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 java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.CharIterable collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/CharIterable;
    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.CharFunction
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/LazyCharIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)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.Function
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.IntIterable collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)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
            checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/LazyIntIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.LongIterable collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/LongIterable;
    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.LongFunction
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/LazyLongIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable rejectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ByteIterable collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/ByteIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ByteFunction
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/LazyByteIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.PartitionIterable partition(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/PartitionIterable;
    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.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.DoubleIterable collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/DoubleIterable;
    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.DoubleFunction
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/LazyDoubleIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)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.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable collectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)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.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ShortIterable collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/ShortIterable;
    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.ShortFunction
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/LazyShortIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)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.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.FloatIterable collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/FloatIterable;
    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.FloatFunction
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/LazyFloatIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable selectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.PartitionIterable partitionWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/PartitionIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)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 java.lang.Class
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.BooleanIterable collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/BooleanIterable;
    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.BooleanFunction
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/LazyBooleanIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable collect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)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.Function
            invokevirtual org.eclipse.collections.impl.lazy.AbstractLazyIterable.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static void lambda$0(java.lang.Object[], java.lang.Object);
    descriptor: ([Ljava/lang/Object;Ljava/lang/Object;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=2, args_size=2
        start local 1 // java.lang.Object each
         0: .line 127
            aload 0
            iconst_0
            aload 1 /* each */
            dup_x2
            aastore
            return
        end local 1 // java.lang.Object each
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1  each  TT;

  private static java.lang.Object $deserializeLambda$(java.lang.invoke.SerializedLambda);
    descriptor: (Ljava/lang/invoke/SerializedLambda;)Ljava/lang/Object;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=3, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodName:()Ljava/lang/String;
            astore 1
            iconst_m1
            istore 2
            aload 1
            invokevirtual java.lang.String.hashCode:()I
            lookupswitch { // 1
          -1647345005: 1
              default: 2
          }
      StackMap locals: java.lang.String int
      StackMap stack:
         1: aload 1
            ldc "lambda$0"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 2
            iconst_0
            istore 2
      StackMap locals:
      StackMap stack:
         2: iload 2
            lookupswitch { // 1
                    0: 3
              default: 4
          }
      StackMap locals:
      StackMap stack:
         3: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 6
            if_icmpne 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/procedure/Procedure"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "value"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/lazy/AbstractLazyIterable"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "([Ljava/lang/Object;Ljava/lang/Object;)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast java.lang.Object[]
            invokedynamic value([Ljava/lang/Object;)Lorg/eclipse/collections/api/block/procedure/Procedure;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  org/eclipse/collections/impl/lazy/AbstractLazyIterable.lambda$0([Ljava/lang/Object;Ljava/lang/Object;)V (6)
                  (Ljava/lang/Object;)V
                  1
            areturn
      StackMap locals:
      StackMap stack:
         4: new java.lang.IllegalArgumentException
            dup
            ldc "Invalid lambda deserialization"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Lorg/eclipse/collections/impl/AbstractRichIterable<TT;>;Lorg/eclipse/collections/api/LazyIterable<TT;>;
SourceFile: "AbstractLazyIterable.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles