public class org.eclipse.collections.impl.lazy.SelectInstancesOfIterable<T> extends org.eclipse.collections.impl.lazy.AbstractLazyIterable<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.lazy.SelectInstancesOfIterable
  super_class: org.eclipse.collections.impl.lazy.AbstractLazyIterable
{
  private final java.lang.Iterable<?> adapted;
    descriptor: Ljava/lang/Iterable;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/Iterable<*>;

  private final java.lang.Class<T> clazz;
    descriptor: Ljava/lang/Class;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/Class<TT;>;

  public void <init>(java.lang.Iterable<?>, java.lang.Class<T>);
    descriptor: (Ljava/lang/Iterable;Ljava/lang/Class;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
        start local 1 // java.lang.Iterable newAdapted
        start local 2 // java.lang.Class clazz
         0: .line 36
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.lazy.AbstractLazyIterable.<init>:()V
         1: .line 38
            aload 0 /* this */
            aload 1 /* newAdapted */
            putfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.adapted:Ljava/lang/Iterable;
         2: .line 39
            aload 0 /* this */
            aload 2 /* clazz */
            putfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.clazz:Ljava/lang/Class;
         3: .line 40
            return
        end local 2 // java.lang.Class clazz
        end local 1 // java.lang.Iterable newAdapted
        end local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lorg/eclipse/collections/impl/lazy/SelectInstancesOfIterable<TT;>;
            0    4     1  newAdapted  Ljava/lang/Iterable<*>;
            0    4     2       clazz  Ljava/lang/Class<TT;>;
    Signature: (Ljava/lang/Iterable<*>;Ljava/lang/Class<TT;>;)V
    MethodParameters:
            Name  Flags
      newAdapted  
      clazz       

  public void each(org.eclipse.collections.api.block.procedure.Procedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 45
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.adapted:Ljava/lang/Iterable;
            new org.eclipse.collections.impl.block.procedure.IfProcedure
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.clazz:Ljava/lang/Class;
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.instanceOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/block/factory/Predicates;
            aload 1 /* procedure */
            invokespecial org.eclipse.collections.impl.block.procedure.IfProcedure.<init>:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
            invokestatic org.eclipse.collections.impl.utility.Iterate.forEach:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 46
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/lazy/SelectInstancesOfIterable<TT;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public void forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 51
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.adapted:Ljava/lang/Iterable;
            new org.eclipse.collections.impl.block.procedure.IfObjectIntProcedure
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.clazz:Ljava/lang/Class;
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.instanceOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/block/factory/Predicates;
            aload 1 /* objectIntProcedure */
            invokespecial org.eclipse.collections.impl.block.procedure.IfObjectIntProcedure.<init>:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
            invokestatic org.eclipse.collections.impl.utility.Iterate.forEach:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 52
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/eclipse/collections/impl/lazy/SelectInstancesOfIterable<TT;>;
            0    2     1  objectIntProcedure  Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;)V
    MethodParameters:
                    Name  Flags
      objectIntProcedure  

  public <P> void forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        start local 2 // java.lang.Object parameter
         0: .line 57
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.adapted:Ljava/lang/Iterable;
            new org.eclipse.collections.impl.block.procedure.IfProcedureWith
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.clazz:Ljava/lang/Class;
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.instanceOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/block/factory/Predicates;
            aload 1 /* procedure */
            invokespecial org.eclipse.collections.impl.block.procedure.IfProcedureWith.<init>:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/procedure/Procedure2;)V
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.Iterate.forEachWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
         1: .line 58
            return
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        end local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/lazy/SelectInstancesOfIterable<TT;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure2<-TT;-TP;>;
            0    2     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/procedure/Procedure2<-TT;-TP;>;TP;)V
    MethodParameters:
           Name  Flags
      procedure  
      parameter  

  public T getFirst();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
         0: .line 63
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.clazz:Ljava/lang/Class;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.adapted:Ljava/lang/Iterable;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.clazz:Ljava/lang/Class;
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.instanceOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/block/factory/Predicates;
            invokestatic org.eclipse.collections.impl.utility.Iterate.detect:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
            invokevirtual java.lang.Class.cast:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/SelectInstancesOfIterable<TT;>;
    Signature: ()TT;

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 69
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.adapted:Ljava/lang/Iterable;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.clazz:Ljava/lang/Class;
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.instanceOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/block/factory/Predicates;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.and:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/block/factory/Predicates;
            invokestatic org.eclipse.collections.impl.utility.Iterate.anySatisfy:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/SelectInstancesOfIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 75
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.adapted:Ljava/lang/Iterable;
            new org.eclipse.collections.impl.lazy.AllSatisfyPredicate
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.clazz:Ljava/lang/Class;
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.instanceOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/block/factory/Predicates;
            aload 1 /* predicate */
            invokespecial org.eclipse.collections.impl.lazy.AllSatisfyPredicate.<init>:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/predicate/Predicate;)V
            invokestatic org.eclipse.collections.impl.utility.Iterate.allSatisfy:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/SelectInstancesOfIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 81
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.adapted:Ljava/lang/Iterable;
            new org.eclipse.collections.impl.lazy.AllSatisfyPredicate
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.clazz:Ljava/lang/Class;
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.instanceOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/block/factory/Predicates;
            aload 1 /* predicate */
            invokespecial org.eclipse.collections.impl.lazy.AllSatisfyPredicate.<init>:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/predicate/Predicate;)V
            invokestatic org.eclipse.collections.impl.utility.Iterate.noneSatisfy:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/SelectInstancesOfIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public T detect(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 87
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.adapted:Ljava/lang/Iterable;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.clazz:Ljava/lang/Class;
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.instanceOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/block/factory/Predicates;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.and:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/block/factory/Predicates;
            invokestatic org.eclipse.collections.impl.utility.Iterate.detect:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/SelectInstancesOfIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)TT;
    MethodParameters:
           Name  Flags
      predicate  

  public java.util.Optional<T> detectOptional(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 93
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.adapted:Ljava/lang/Iterable;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.clazz:Ljava/lang/Class;
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.instanceOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/block/factory/Predicates;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.and:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/block/factory/Predicates;
            invokestatic org.eclipse.collections.impl.utility.Iterate.detectOptional:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/util/Optional;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/SelectInstancesOfIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Ljava/util/Optional<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public java.util.Iterator<T> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
         0: .line 99
            new org.eclipse.collections.impl.lazy.iterator.SelectInstancesOfIterator
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.adapted:Ljava/lang/Iterable;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.clazz:Ljava/lang/Class;
            invokespecial org.eclipse.collections.impl.lazy.iterator.SelectInstancesOfIterator.<init>:(Ljava/lang/Iterable;Ljava/lang/Class;)V
            areturn
        end local 0 // org.eclipse.collections.impl.lazy.SelectInstancesOfIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/SelectInstancesOfIterable<TT;>;
    Signature: ()Ljava/util/Iterator<TT;>;
}
Signature: <T:Ljava/lang/Object;>Lorg/eclipse/collections/impl/lazy/AbstractLazyIterable<TT;>;
SourceFile: "SelectInstancesOfIterable.java"