public class org.eclipse.collections.impl.lazy.primitive.CollectShortIterable<T> extends org.eclipse.collections.impl.lazy.primitive.AbstractLazyShortIterable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.lazy.primitive.CollectShortIterable
  super_class: org.eclipse.collections.impl.lazy.primitive.AbstractLazyShortIterable
{
  private final org.eclipse.collections.api.LazyIterable<T> iterable;
    descriptor: Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/eclipse/collections/api/LazyIterable<TT;>;

  private final org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> function;
    descriptor: Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;

  private final org.eclipse.collections.impl.lazy.primitive.CollectShortIterable$ShortFunctionToProcedure<T> shortFunctionToProcedure;
    descriptor: Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable$ShortFunctionToProcedure;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable$ShortFunctionToProcedure<TT;>;

  public void <init>(org.eclipse.collections.api.LazyIterable<T>, org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/LazyIterable;Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
        start local 1 // org.eclipse.collections.api.LazyIterable adapted
        start local 2 // org.eclipse.collections.api.block.function.primitive.ShortFunction function
         0: .line 40
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.lazy.primitive.AbstractLazyShortIterable.<init>:()V
         1: .line 42
            aload 0 /* this */
            aload 1 /* adapted */
            putfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.iterable:Lorg/eclipse/collections/api/LazyIterable;
         2: .line 43
            aload 0 /* this */
            aload 2 /* function */
            putfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.function:Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;
         3: .line 44
            aload 0 /* this */
            new org.eclipse.collections.impl.lazy.primitive.CollectShortIterable$ShortFunctionToProcedure
            dup
            aload 2 /* function */
            invokespecial org.eclipse.collections.impl.lazy.primitive.CollectShortIterable$ShortFunctionToProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)V
            putfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.shortFunctionToProcedure:Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable$ShortFunctionToProcedure;
         4: .line 45
            return
        end local 2 // org.eclipse.collections.api.block.function.primitive.ShortFunction function
        end local 1 // org.eclipse.collections.api.LazyIterable adapted
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;
            0    5     1   adapted  Lorg/eclipse/collections/api/LazyIterable<TT;>;
            0    5     2  function  Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/LazyIterable<TT;>;Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;)V
    MethodParameters:
          Name  Flags
      adapted   
      function  

  public org.eclipse.collections.api.iterator.ShortIterator shortIterator();
    descriptor: ()Lorg/eclipse/collections/api/iterator/ShortIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
         0: .line 50
            new org.eclipse.collections.impl.lazy.primitive.CollectShortIterable$1
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.lazy.primitive.CollectShortIterable$1.<init>:(Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable;)V
            areturn
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;

  public void forEach(org.eclipse.collections.api.block.procedure.primitive.ShortProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ShortProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ShortProcedure procedure
         0: .line 71
            aload 0 /* this */
            aload 1 /* procedure */
            invokevirtual org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.each:(Lorg/eclipse/collections/api/block/procedure/primitive/ShortProcedure;)V
         1: .line 72
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ShortProcedure procedure
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/ShortProcedure;
    MethodParameters:
           Name  Flags
      procedure  

  public void each(org.eclipse.collections.api.block.procedure.primitive.ShortProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ShortProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ShortProcedure procedure
         0: .line 80
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.iterable:Lorg/eclipse/collections/api/LazyIterable;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.shortFunctionToProcedure:Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable$ShortFunctionToProcedure;
            aload 1 /* procedure */
            invokeinterface org.eclipse.collections.api.LazyIterable.forEachWith:(Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
         1: .line 81
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ShortProcedure procedure
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/ShortProcedure;
    MethodParameters:
           Name  Flags
      procedure  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
         0: .line 86
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.iterable:Lorg/eclipse/collections/api/LazyIterable;
            invokeinterface org.eclipse.collections.api.LazyIterable.size:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
         0: .line 92
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.iterable:Lorg/eclipse/collections/api/LazyIterable;
            invokeinterface org.eclipse.collections.api.LazyIterable.isEmpty:()Z
            ireturn
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;

  public boolean notEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
         0: .line 98
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.iterable:Lorg/eclipse/collections/api/LazyIterable;
            invokeinterface org.eclipse.collections.api.LazyIterable.notEmpty:()Z
            ireturn
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;

  public int count(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
         0: .line 104
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.iterable:Lorg/eclipse/collections/api/LazyIterable;
            aload 0 /* this */
            aload 1 /* predicate */
            invokedynamic accept(Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable;Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/block/predicate/Predicate;
              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;)Z
                  org/eclipse/collections/impl/lazy/primitive/CollectShortIterable.lambda$0(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Ljava/lang/Object;)Z (7)
                  (Ljava/lang/Object;)Z
                  1
            invokeinterface org.eclipse.collections.api.LazyIterable.count:(Lorg/eclipse/collections/api/block/predicate/Predicate;)I
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;
    MethodParameters:
           Name  Flags
      predicate  final

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
         0: .line 110
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.iterable:Lorg/eclipse/collections/api/LazyIterable;
            aload 0 /* this */
            aload 1 /* predicate */
            invokedynamic accept(Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable;Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/block/predicate/Predicate;
              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;)Z
                  org/eclipse/collections/impl/lazy/primitive/CollectShortIterable.lambda$1(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Ljava/lang/Object;)Z (7)
                  (Ljava/lang/Object;)Z
                  1
            invokeinterface org.eclipse.collections.api.LazyIterable.anySatisfy:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;
    MethodParameters:
           Name  Flags
      predicate  final

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
         0: .line 116
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.iterable:Lorg/eclipse/collections/api/LazyIterable;
            aload 0 /* this */
            aload 1 /* predicate */
            invokedynamic accept(Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable;Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/block/predicate/Predicate;
              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;)Z
                  org/eclipse/collections/impl/lazy/primitive/CollectShortIterable.lambda$2(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Ljava/lang/Object;)Z (7)
                  (Ljava/lang/Object;)Z
                  1
            invokeinterface org.eclipse.collections.api.LazyIterable.allSatisfy:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;
    MethodParameters:
           Name  Flags
      predicate  final

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
         0: .line 122
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.iterable:Lorg/eclipse/collections/api/LazyIterable;
            aload 0 /* this */
            aload 1 /* predicate */
            invokedynamic accept(Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable;Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/block/predicate/Predicate;
              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;)Z
                  org/eclipse/collections/impl/lazy/primitive/CollectShortIterable.lambda$3(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Ljava/lang/Object;)Z (7)
                  (Ljava/lang/Object;)Z
                  1
            invokeinterface org.eclipse.collections.api.LazyIterable.allSatisfy:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;
    MethodParameters:
           Name  Flags
      predicate  final

  public short[] toArray();
    descriptor: ()[S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
         0: .line 128
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.size:()I
            newarray 9
            astore 1 /* array */
        start local 1 // short[] array
         1: .line 129
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.iterable:Lorg/eclipse/collections/api/LazyIterable;
            aload 0 /* this */
            aload 1 /* array */
            invokedynamic value(Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable;[S)Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;
              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;I)V
                  org/eclipse/collections/impl/lazy/primitive/CollectShortIterable.lambda$4([SLjava/lang/Object;I)V (7)
                  (Ljava/lang/Object;I)V
                  1
            invokeinterface org.eclipse.collections.api.LazyIterable.forEachWithIndex:(Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
         2: .line 130
            aload 1 /* array */
            areturn
        end local 1 // short[] array
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;
            1    3     1  array  [S

  public short[] toSortedArray();
    descriptor: ()[S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
         0: .line 136
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.toArray:()[S
            astore 1 /* array */
        start local 1 // short[] array
         1: .line 137
            aload 1 /* array */
            invokestatic java.util.Arrays.sort:([S)V
         2: .line 138
            aload 1 /* array */
            areturn
        end local 1 // short[] array
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;
            1    3     1  array  [S

  public org.eclipse.collections.api.list.primitive.MutableShortList toList();
    descriptor: ()Lorg/eclipse/collections/api/list/primitive/MutableShortList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
         0: .line 144
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.list.mutable.primitive.ShortArrayList.newList:(Lorg/eclipse/collections/api/ShortIterable;)Lorg/eclipse/collections/impl/list/mutable/primitive/ShortArrayList;
            areturn
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;

  public org.eclipse.collections.api.set.primitive.MutableShortSet toSet();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/MutableShortSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
         0: .line 150
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.newSet:(Lorg/eclipse/collections/api/ShortIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet;
            areturn
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;

  public org.eclipse.collections.api.bag.primitive.MutableShortBag toBag();
    descriptor: ()Lorg/eclipse/collections/api/bag/primitive/MutableShortBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
         0: .line 156
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.bag.mutable.primitive.ShortHashBag.newBag:(Lorg/eclipse/collections/api/ShortIterable;)Lorg/eclipse/collections/impl/bag/mutable/primitive/ShortHashBag;
            areturn
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;

  public boolean containsAll(short[]);
    descriptor: ([S)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
        start local 1 // short[] source
         0: .line 162
            aload 1 /* source */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: org.eclipse.collections.impl.lazy.primitive.CollectShortIterable short[] top int int short[]
      StackMap stack:
         1: aload 5
            iload 3
            saload
            istore 2 /* value */
        start local 2 // short value
         2: .line 164
            aload 0 /* this */
            iload 2 /* value */
            invokevirtual org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.contains:(S)Z
            ifne 4
         3: .line 166
            iconst_0
            ireturn
        end local 2 // short value
         4: .line 162
      StackMap locals:
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 1
         6: .line 169
            iconst_1
            ireturn
        end local 1 // short[] source
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;
            0    7     1  source  [S
            2    4     2   value  S
    MethodParameters:
        Name  Flags
      source  

  public boolean containsAll(org.eclipse.collections.api.ShortIterable);
    descriptor: (Lorg/eclipse/collections/api/ShortIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
        start local 1 // org.eclipse.collections.api.ShortIterable source
         0: .line 175
            aload 1 /* source */
            invokeinterface org.eclipse.collections.api.ShortIterable.shortIterator:()Lorg/eclipse/collections/api/iterator/ShortIterator;
            astore 2 /* iterator */
        start local 2 // org.eclipse.collections.api.iterator.ShortIterator iterator
         1: goto 4
         2: .line 177
      StackMap locals: org.eclipse.collections.api.iterator.ShortIterator
      StackMap stack:
            aload 0 /* this */
            aload 2 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.ShortIterator.next:()S
            invokevirtual org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.contains:(S)Z
            ifne 4
         3: .line 179
            iconst_0
            ireturn
         4: .line 175
      StackMap locals:
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.ShortIterator.hasNext:()Z
            ifne 2
        end local 2 // org.eclipse.collections.api.iterator.ShortIterator iterator
         5: .line 182
            iconst_1
            ireturn
        end local 1 // org.eclipse.collections.api.ShortIterable source
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;
            0    6     1    source  Lorg/eclipse/collections/api/ShortIterable;
            1    5     2  iterator  Lorg/eclipse/collections/api/iterator/ShortIterator;
    MethodParameters:
        Name  Flags
      source  

  private boolean lambda$0(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Ljava/lang/Object;)Z
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
        start local 2 // java.lang.Object each
         0: .line 104
            aload 1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.function:Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;
            aload 2 /* each */
            invokeinterface org.eclipse.collections.api.block.function.primitive.ShortFunction.shortValueOf:(Ljava/lang/Object;)S
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.ShortPredicate.accept:(S)Z
            ireturn
        end local 2 // java.lang.Object each
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;
            0    1     2  each  TT;

  private boolean lambda$1(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Ljava/lang/Object;)Z
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
        start local 2 // java.lang.Object each
         0: .line 110
            aload 1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.function:Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;
            aload 2 /* each */
            invokeinterface org.eclipse.collections.api.block.function.primitive.ShortFunction.shortValueOf:(Ljava/lang/Object;)S
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.ShortPredicate.accept:(S)Z
            ireturn
        end local 2 // java.lang.Object each
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;
            0    1     2  each  TT;

  private boolean lambda$2(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Ljava/lang/Object;)Z
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
        start local 2 // java.lang.Object each
         0: .line 116
            aload 1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.function:Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;
            aload 2 /* each */
            invokeinterface org.eclipse.collections.api.block.function.primitive.ShortFunction.shortValueOf:(Ljava/lang/Object;)S
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.ShortPredicate.accept:(S)Z
            ireturn
        end local 2 // java.lang.Object each
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;
            0    1     2  each  TT;

  private boolean lambda$3(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Ljava/lang/Object;)Z
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
        start local 2 // java.lang.Object each
         0: .line 122
            aload 1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.function:Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;
            aload 2 /* each */
            invokeinterface org.eclipse.collections.api.block.function.primitive.ShortFunction.shortValueOf:(Ljava/lang/Object;)S
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.ShortPredicate.accept:(S)Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 2 // java.lang.Object each
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;
            0    3     2  each  TT;

  private void lambda$4(short[], java.lang.Object, int);
    descriptor: ([SLjava/lang/Object;I)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
        start local 2 // java.lang.Object each
        start local 3 // int index
         0: .line 129
            aload 1
            iload 3 /* index */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.lazy.primitive.CollectShortIterable.function:Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;
            aload 2 /* each */
            invokeinterface org.eclipse.collections.api.block.function.primitive.ShortFunction.shortValueOf:(Ljava/lang/Object;)S
            dup_x2
            sastore
            return
        end local 3 // int index
        end local 2 // java.lang.Object each
        end local 0 // org.eclipse.collections.impl.lazy.primitive.CollectShortIterable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable<TT;>;
            0    1     2   each  TT;
            0    1     3  index  I

  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=13, 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 { // 5
          -1647345005: 1
          -1647345004: 2
          -1647345003: 3
          -1647345002: 4
          -1647345001: 5
              default: 6
          }
      StackMap locals: java.lang.String int
      StackMap stack:
         1: aload 1
            ldc "lambda$0"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 6
            iconst_0
            istore 2
            goto 6
      StackMap locals:
      StackMap stack:
         2: aload 1
            ldc "lambda$1"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 6
            iconst_1
            istore 2
            goto 6
      StackMap locals:
      StackMap stack:
         3: aload 1
            ldc "lambda$2"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 6
            iconst_2
            istore 2
            goto 6
      StackMap locals:
      StackMap stack:
         4: aload 1
            ldc "lambda$3"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 6
            iconst_3
            istore 2
            goto 6
      StackMap locals:
      StackMap stack:
         5: aload 1
            ldc "lambda$4"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 6
            iconst_4
            istore 2
      StackMap locals:
      StackMap stack:
         6: iload 2
            lookupswitch { // 5
                    0: 7
                    1: 8
                    2: 9
                    3: 10
                    4: 11
              default: 12
          }
      StackMap locals:
      StackMap stack:
         7: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 7
            if_icmpne 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/predicate/Predicate"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "accept"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;)Z"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/lazy/primitive/CollectShortIterable"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Ljava/lang/Object;)Z"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.impl.lazy.primitive.CollectShortIterable
            aload 0
            iconst_1
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.block.predicate.primitive.ShortPredicate
            invokedynamic accept(Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable;Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/block/predicate/Predicate;
              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;)Z
                  org/eclipse/collections/impl/lazy/primitive/CollectShortIterable.lambda$0(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Ljava/lang/Object;)Z (7)
                  (Ljava/lang/Object;)Z
                  1
            areturn
      StackMap locals:
      StackMap stack:
         8: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 7
            if_icmpne 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/predicate/Predicate"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "accept"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;)Z"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/lazy/primitive/CollectShortIterable"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Ljava/lang/Object;)Z"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.impl.lazy.primitive.CollectShortIterable
            aload 0
            iconst_1
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.block.predicate.primitive.ShortPredicate
            invokedynamic accept(Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable;Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/block/predicate/Predicate;
              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;)Z
                  org/eclipse/collections/impl/lazy/primitive/CollectShortIterable.lambda$1(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Ljava/lang/Object;)Z (7)
                  (Ljava/lang/Object;)Z
                  1
            areturn
      StackMap locals:
      StackMap stack:
         9: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 7
            if_icmpne 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/predicate/Predicate"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "accept"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;)Z"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/lazy/primitive/CollectShortIterable"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Ljava/lang/Object;)Z"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.impl.lazy.primitive.CollectShortIterable
            aload 0
            iconst_1
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.block.predicate.primitive.ShortPredicate
            invokedynamic accept(Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable;Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/block/predicate/Predicate;
              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;)Z
                  org/eclipse/collections/impl/lazy/primitive/CollectShortIterable.lambda$2(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Ljava/lang/Object;)Z (7)
                  (Ljava/lang/Object;)Z
                  1
            areturn
      StackMap locals:
      StackMap stack:
        10: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 7
            if_icmpne 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/predicate/Predicate"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "accept"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;)Z"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/lazy/primitive/CollectShortIterable"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Ljava/lang/Object;)Z"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.impl.lazy.primitive.CollectShortIterable
            aload 0
            iconst_1
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.block.predicate.primitive.ShortPredicate
            invokedynamic accept(Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable;Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/block/predicate/Predicate;
              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;)Z
                  org/eclipse/collections/impl/lazy/primitive/CollectShortIterable.lambda$3(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Ljava/lang/Object;)Z (7)
                  (Ljava/lang/Object;)Z
                  1
            areturn
      StackMap locals:
      StackMap stack:
        11: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 7
            if_icmpne 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "value"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;I)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/lazy/primitive/CollectShortIterable"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "([SLjava/lang/Object;I)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.impl.lazy.primitive.CollectShortIterable
            aload 0
            iconst_1
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast short[]
            invokedynamic value(Lorg/eclipse/collections/impl/lazy/primitive/CollectShortIterable;[S)Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;
              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;I)V
                  org/eclipse/collections/impl/lazy/primitive/CollectShortIterable.lambda$4([SLjava/lang/Object;I)V (7)
                  (Ljava/lang/Object;I)V
                  1
            areturn
      StackMap locals:
      StackMap stack:
        12: 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/lazy/primitive/AbstractLazyShortIterable;
SourceFile: "CollectShortIterable.java"
NestMembers:
  org.eclipse.collections.impl.lazy.primitive.CollectShortIterable$1  org.eclipse.collections.impl.lazy.primitive.CollectShortIterable$ShortFunctionToProcedure
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  org.eclipse.collections.impl.lazy.primitive.CollectShortIterable$1
  private final ShortFunctionToProcedure = org.eclipse.collections.impl.lazy.primitive.CollectShortIterable$ShortFunctionToProcedure of org.eclipse.collections.impl.lazy.primitive.CollectShortIterable