public final class org.eclipse.collections.impl.utility.LazyIterate
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.utility.LazyIterate
  super_class: java.lang.Object
{
  private static final org.eclipse.collections.api.LazyIterable<?> EMPTY_ITERABLE;
    descriptor: Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Lorg/eclipse/collections/api/LazyIterable<*>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 47
            getstatic org.eclipse.collections.impl.factory.Lists.immutable:Lorg/eclipse/collections/api/factory/list/ImmutableListFactory;
            invokeinterface org.eclipse.collections.api.factory.list.ImmutableListFactory.empty:()Lorg/eclipse/collections/api/list/ImmutableList;
            invokeinterface org.eclipse.collections.api.list.ImmutableList.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
            putstatic org.eclipse.collections.impl.utility.LazyIterate.EMPTY_ITERABLE:Lorg/eclipse/collections/api/LazyIterable;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.utility.LazyIterate this
         0: .line 49
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 51
            new java.lang.AssertionError
            dup
            ldc "Suppress default constructor for noninstantiability"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 0 // org.eclipse.collections.impl.utility.LazyIterate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/utility/LazyIterate;

  public static <T> org.eclipse.collections.api.LazyIterable<T> adapt(java.lang.Iterable<T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.Iterable iterable
         0: .line 59
            new org.eclipse.collections.impl.lazy.LazyIterableAdapter
            dup
            aload 0 /* iterable */
            invokespecial org.eclipse.collections.impl.lazy.LazyIterableAdapter.<init>:(Ljava/lang/Iterable;)V
            areturn
        end local 0 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  iterable  Ljava/lang/Iterable<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<TT;>;)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
          Name  Flags
      iterable  

  public static <T> org.eclipse.collections.api.LazyIterable<T> select(java.lang.Iterable<T>, org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.Iterable iterable
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 67
            new org.eclipse.collections.impl.lazy.SelectIterable
            dup
            aload 0 /* iterable */
            aload 1 /* predicate */
            invokespecial org.eclipse.collections.impl.lazy.SelectIterable.<init>:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0   iterable  Ljava/lang/Iterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<TT;>;Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
           Name  Flags
      iterable   
      predicate  

  public static <T> org.eclipse.collections.api.LazyIterable<T> reject(java.lang.Iterable<T>, org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.Iterable iterable
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 75
            new org.eclipse.collections.impl.lazy.RejectIterable
            dup
            aload 0 /* iterable */
            aload 1 /* predicate */
            invokespecial org.eclipse.collections.impl.lazy.RejectIterable.<init>:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0   iterable  Ljava/lang/Iterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<TT;>;Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
           Name  Flags
      iterable   
      predicate  

  public static <T> org.eclipse.collections.api.LazyIterable<T> selectInstancesOf(java.lang.Iterable<?>, java.lang.Class<T>);
    descriptor: (Ljava/lang/Iterable;Ljava/lang/Class;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.Iterable iterable
        start local 1 // java.lang.Class clazz
         0: .line 80
            new org.eclipse.collections.impl.lazy.SelectInstancesOfIterable
            dup
            aload 0 /* iterable */
            aload 1 /* clazz */
            invokespecial org.eclipse.collections.impl.lazy.SelectInstancesOfIterable.<init>:(Ljava/lang/Iterable;Ljava/lang/Class;)V
            areturn
        end local 1 // java.lang.Class clazz
        end local 0 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  iterable  Ljava/lang/Iterable<*>;
            0    1     1     clazz  Ljava/lang/Class<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<*>;Ljava/lang/Class<TT;>;)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
          Name  Flags
      iterable  
      clazz     

  public static <T, V> org.eclipse.collections.api.LazyIterable<V> collect(java.lang.Iterable<T>, org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.Iterable iterable
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 90
            new org.eclipse.collections.impl.lazy.CollectIterable
            dup
            aload 0 /* iterable */
            aload 1 /* function */
            invokespecial org.eclipse.collections.impl.lazy.CollectIterable.<init>:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  iterable  Ljava/lang/Iterable<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <T:Ljava/lang/Object;V:Ljava/lang/Object;>(Ljava/lang/Iterable<TT;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/LazyIterable<TV;>;
    MethodParameters:
          Name  Flags
      iterable  
      function  

  public static <T, V> org.eclipse.collections.api.LazyIterable<V> flatCollect(java.lang.Iterable<T>, org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>);
    descriptor: (Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.Iterable iterable
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 100
            new org.eclipse.collections.impl.lazy.FlatCollectIterable
            dup
            aload 0 /* iterable */
            aload 1 /* function */
            invokespecial org.eclipse.collections.impl.lazy.FlatCollectIterable.<init>:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  iterable  Ljava/lang/Iterable<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
    Signature: <T:Ljava/lang/Object;V:Ljava/lang/Object;>(Ljava/lang/Iterable<TT;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;)Lorg/eclipse/collections/api/LazyIterable<TV;>;
    MethodParameters:
          Name  Flags
      iterable  
      function  

  public static <T, V> org.eclipse.collections.api.LazyIterable<V> collectIf(java.lang.Iterable<T>, org.eclipse.collections.api.block.predicate.Predicate<? super T>, org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // java.lang.Iterable iterable
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function function
         0: .line 111
            aload 0 /* iterable */
            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;
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.LazyIterable.collect:(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 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0   iterable  Ljava/lang/Iterable<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: <T:Ljava/lang/Object;V:Ljava/lang/Object;>(Ljava/lang/Iterable<TT;>;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
      iterable   
      predicate  
      function   

  public static <T> org.eclipse.collections.api.LazyIterable<T> take(java.lang.Iterable<T>, int);
    descriptor: (Ljava/lang/Iterable;I)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.Iterable iterable
        start local 1 // int count
         0: .line 119
            new org.eclipse.collections.impl.lazy.TakeIterable
            dup
            aload 0 /* iterable */
            iload 1 /* count */
            invokespecial org.eclipse.collections.impl.lazy.TakeIterable.<init>:(Ljava/lang/Iterable;I)V
            areturn
        end local 1 // int count
        end local 0 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  iterable  Ljava/lang/Iterable<TT;>;
            0    1     1     count  I
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<TT;>;I)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
          Name  Flags
      iterable  
      count     

  public static <T> org.eclipse.collections.api.LazyIterable<T> drop(java.lang.Iterable<T>, int);
    descriptor: (Ljava/lang/Iterable;I)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.Iterable iterable
        start local 1 // int count
         0: .line 127
            new org.eclipse.collections.impl.lazy.DropIterable
            dup
            aload 0 /* iterable */
            iload 1 /* count */
            invokespecial org.eclipse.collections.impl.lazy.DropIterable.<init>:(Ljava/lang/Iterable;I)V
            areturn
        end local 1 // int count
        end local 0 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  iterable  Ljava/lang/Iterable<TT;>;
            0    1     1     count  I
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<TT;>;I)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
          Name  Flags
      iterable  
      count     

  public static <T> org.eclipse.collections.api.LazyIterable<T> takeWhile(java.lang.Iterable<T>, org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.Iterable iterable
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 138
            new org.eclipse.collections.impl.lazy.TakeWhileIterable
            dup
            aload 0 /* iterable */
            aload 1 /* predicate */
            invokespecial org.eclipse.collections.impl.lazy.TakeWhileIterable.<init>:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0   iterable  Ljava/lang/Iterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<TT;>;Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
           Name  Flags
      iterable   
      predicate  

  public static <T> org.eclipse.collections.api.LazyIterable<T> dropWhile(java.lang.Iterable<T>, org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.Iterable iterable
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 149
            new org.eclipse.collections.impl.lazy.DropWhileIterable
            dup
            aload 0 /* iterable */
            aload 1 /* predicate */
            invokespecial org.eclipse.collections.impl.lazy.DropWhileIterable.<init>:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0   iterable  Ljava/lang/Iterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<TT;>;Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
           Name  Flags
      iterable   
      predicate  

  public static <T> org.eclipse.collections.api.LazyIterable<T> distinct(java.lang.Iterable<T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.Iterable iterable
         0: .line 159
            new org.eclipse.collections.impl.lazy.DistinctIterable
            dup
            aload 0 /* iterable */
            invokespecial org.eclipse.collections.impl.lazy.DistinctIterable.<init>:(Ljava/lang/Iterable;)V
            areturn
        end local 0 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  iterable  Ljava/lang/Iterable<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<TT;>;)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
          Name  Flags
      iterable  

  public static <T> org.eclipse.collections.api.LazyIterable<T> concatenate(java.lang.Iterable<T>[]);
    descriptor: ([Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.lang.Iterable[] iterables
         0: .line 167
            aload 0 /* iterables */
            invokestatic org.eclipse.collections.impl.lazy.CompositeIterable.with:([Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/lazy/CompositeIterable;
            areturn
        end local 0 // java.lang.Iterable[] iterables
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0  iterables  [Ljava/lang/Iterable;
    Signature: <T:Ljava/lang/Object;>([Ljava/lang/Iterable<TT;>;)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
           Name  Flags
      iterables  

  public static <T> org.eclipse.collections.api.LazyIterable<T> empty();
    descriptor: ()Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 172
            getstatic org.eclipse.collections.impl.utility.LazyIterate.EMPTY_ITERABLE:Lorg/eclipse/collections/api/LazyIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <T:Ljava/lang/Object;>()Lorg/eclipse/collections/api/LazyIterable<TT;>;

  public static <A, B> org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.tuple.Pair<A, B>> zip(java.lang.Iterable<A>, java.lang.Iterable<B>);
    descriptor: (Ljava/lang/Iterable;Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.Iterable as
        start local 1 // java.lang.Iterable bs
         0: .line 177
            new org.eclipse.collections.impl.lazy.ZipIterable
            dup
            aload 0 /* as */
            aload 1 /* bs */
            invokespecial org.eclipse.collections.impl.lazy.ZipIterable.<init>:(Ljava/lang/Iterable;Ljava/lang/Iterable;)V
            areturn
        end local 1 // java.lang.Iterable bs
        end local 0 // java.lang.Iterable as
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    as  Ljava/lang/Iterable<TA;>;
            0    1     1    bs  Ljava/lang/Iterable<TB;>;
    Signature: <A:Ljava/lang/Object;B:Ljava/lang/Object;>(Ljava/lang/Iterable<TA;>;Ljava/lang/Iterable<TB;>;)Lorg/eclipse/collections/api/LazyIterable<Lorg/eclipse/collections/api/tuple/Pair<TA;TB;>;>;
    MethodParameters:
      Name  Flags
      as    
      bs    

  public static <T> org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.tuple.Pair<T, java.lang.Integer>> zipWithIndex(java.lang.Iterable<T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.Iterable iterable
         0: .line 182
            new org.eclipse.collections.impl.lazy.ZipWithIndexIterable
            dup
            aload 0 /* iterable */
            invokespecial org.eclipse.collections.impl.lazy.ZipWithIndexIterable.<init>:(Ljava/lang/Iterable;)V
            areturn
        end local 0 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  iterable  Ljava/lang/Iterable<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<TT;>;)Lorg/eclipse/collections/api/LazyIterable<Lorg/eclipse/collections/api/tuple/Pair<TT;Ljava/lang/Integer;>;>;
    MethodParameters:
          Name  Flags
      iterable  

  public static <T> org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.RichIterable<T>> chunk(java.lang.Iterable<T>, int);
    descriptor: (Ljava/lang/Iterable;I)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.Iterable iterable
        start local 1 // int size
         0: .line 187
            new org.eclipse.collections.impl.lazy.ChunkIterable
            dup
            aload 0 /* iterable */
            iload 1 /* size */
            invokespecial org.eclipse.collections.impl.lazy.ChunkIterable.<init>:(Ljava/lang/Iterable;I)V
            areturn
        end local 1 // int size
        end local 0 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  iterable  Ljava/lang/Iterable<TT;>;
            0    1     1      size  I
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<TT;>;I)Lorg/eclipse/collections/api/LazyIterable<Lorg/eclipse/collections/api/RichIterable<TT;>;>;
    MethodParameters:
          Name  Flags
      iterable  
      size      

  public static <T> org.eclipse.collections.api.LazyIterable<T> tap(java.lang.Iterable<T>, org.eclipse.collections.api.block.procedure.Procedure<? super T>);
    descriptor: (Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.Iterable iterable
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 197
            new org.eclipse.collections.impl.lazy.TapIterable
            dup
            aload 0 /* iterable */
            aload 1 /* procedure */
            invokespecial org.eclipse.collections.impl.lazy.TapIterable.<init>:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0   iterable  Ljava/lang/Iterable<TT;>;
            0    1     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<TT;>;Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)Lorg/eclipse/collections/api/LazyIterable<TT;>;
    MethodParameters:
           Name  Flags
      iterable   
      procedure  
}
SourceFile: "LazyIterate.java"