public final class org.eclipse.collections.impl.utility.internal.SetIterables
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.utility.internal.SetIterables
  super_class: java.lang.Object
{
  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.internal.SetIterables this
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 38
            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.internal.SetIterables this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/utility/internal/SetIterables;

  public static <E> org.eclipse.collections.api.set.MutableSet<E> union(org.eclipse.collections.api.set.SetIterable<? extends E>, org.eclipse.collections.api.set.SetIterable<? extends E>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.api.set.SetIterable setA
        start local 1 // org.eclipse.collections.api.set.SetIterable setB
         0: .line 45
            aload 1 /* setB */
            invokeinterface org.eclipse.collections.api.set.SetIterable.size:()I
            aload 0 /* setA */
            invokeinterface org.eclipse.collections.api.set.SetIterable.size:()I
            if_icmple 4
         1: .line 47
            aload 0 /* setA */
            astore 2 /* tmp */
        start local 2 // org.eclipse.collections.api.set.SetIterable tmp
         2: .line 48
            aload 1 /* setB */
            astore 0 /* setA */
         3: .line 49
            aload 2 /* tmp */
            astore 1 /* setB */
        end local 2 // org.eclipse.collections.api.set.SetIterable tmp
         4: .line 51
      StackMap locals:
      StackMap stack:
            aload 0 /* setA */
            invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSet:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            aload 1 /* setB */
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            areturn
        end local 1 // org.eclipse.collections.api.set.SetIterable setB
        end local 0 // org.eclipse.collections.api.set.SetIterable setA
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  setA  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
            0    5     1  setB  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
            2    4     2   tmp  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
    Signature: <E:Ljava/lang/Object;>(Lorg/eclipse/collections/api/set/SetIterable<+TE;>;Lorg/eclipse/collections/api/set/SetIterable<+TE;>;)Lorg/eclipse/collections/api/set/MutableSet<TE;>;
    MethodParameters:
      Name  Flags
      setA  
      setB  

  public static <E, R extends java.util.Set<E>> R unionInto(org.eclipse.collections.api.set.SetIterable<? extends E>, org.eclipse.collections.api.set.SetIterable<? extends E>, );
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.api.set.SetIterable setA
        start local 1 // org.eclipse.collections.api.set.SetIterable setB
        start local 2 // java.util.Set targetSet
         0: .line 59
            aload 0 /* setA */
            aload 2 /* targetSet */
            invokestatic org.eclipse.collections.impl.utility.Iterate.addAllIterable:(Ljava/lang/Iterable;Ljava/util/Collection;)Z
            pop
         1: .line 60
            aload 1 /* setB */
            aload 2 /* targetSet */
            invokestatic org.eclipse.collections.impl.utility.Iterate.addAllIterable:(Ljava/lang/Iterable;Ljava/util/Collection;)Z
            pop
         2: .line 61
            aload 2 /* targetSet */
            areturn
        end local 2 // java.util.Set targetSet
        end local 1 // org.eclipse.collections.api.set.SetIterable setB
        end local 0 // org.eclipse.collections.api.set.SetIterable setA
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       setA  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
            0    3     1       setB  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
            0    3     2  targetSet  TR;
    Signature: <E:Ljava/lang/Object;R::Ljava/util/Set<TE;>;>(Lorg/eclipse/collections/api/set/SetIterable<+TE;>;Lorg/eclipse/collections/api/set/SetIterable<+TE;>;TR;)TR;
    MethodParameters:
           Name  Flags
      setA       
      setB       
      targetSet  

  public static <E> org.eclipse.collections.api.set.MutableSet<E> intersect(org.eclipse.collections.api.set.SetIterable<? extends E>, org.eclipse.collections.api.set.SetIterable<? extends E>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.set.SetIterable setA
        start local 1 // org.eclipse.collections.api.set.SetIterable setB
         0: .line 68
            aload 0 /* setA */
            aload 1 /* setB */
            invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSet:()Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.intersectInto:(Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
            checkcast org.eclipse.collections.api.set.MutableSet
            areturn
        end local 1 // org.eclipse.collections.api.set.SetIterable setB
        end local 0 // org.eclipse.collections.api.set.SetIterable setA
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  setA  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
            0    1     1  setB  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
    Signature: <E:Ljava/lang/Object;>(Lorg/eclipse/collections/api/set/SetIterable<+TE;>;Lorg/eclipse/collections/api/set/SetIterable<+TE;>;)Lorg/eclipse/collections/api/set/MutableSet<TE;>;
    MethodParameters:
      Name  Flags
      setA  
      setB  

  public static <E, R extends java.util.Set<E>> R intersectInto(org.eclipse.collections.api.set.SetIterable<? extends E>, org.eclipse.collections.api.set.SetIterable<? extends E>, );
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.api.set.SetIterable setA
        start local 1 // org.eclipse.collections.api.set.SetIterable setB
        start local 2 // java.util.Set targetSet
         0: .line 76
            aload 1 /* setB */
            invokeinterface org.eclipse.collections.api.set.SetIterable.size:()I
            aload 0 /* setA */
            invokeinterface org.eclipse.collections.api.set.SetIterable.size:()I
            if_icmpge 4
         1: .line 78
            aload 0 /* setA */
            astore 3 /* tmp */
        start local 3 // org.eclipse.collections.api.set.SetIterable tmp
         2: .line 79
            aload 1 /* setB */
            astore 0 /* setA */
         3: .line 80
            aload 3 /* tmp */
            astore 1 /* setB */
        end local 3 // org.eclipse.collections.api.set.SetIterable tmp
         4: .line 82
      StackMap locals:
      StackMap stack:
            aload 0 /* setA */
            astore 3 /* one */
        start local 3 // org.eclipse.collections.api.set.SetIterable one
         5: .line 83
            aload 3 /* one */
            aload 1 /* setB */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic accept(Lorg/eclipse/collections/api/set/SetIterable;)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/api/RichIterable.contains(Ljava/lang/Object;)Z (9 itf)
                  (Ljava/lang/Object;)Z
                  1
            aload 2 /* targetSet */
            invokeinterface org.eclipse.collections.api.set.SetIterable.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast java.util.Set
            areturn
        end local 3 // org.eclipse.collections.api.set.SetIterable one
        end local 2 // java.util.Set targetSet
        end local 1 // org.eclipse.collections.api.set.SetIterable setB
        end local 0 // org.eclipse.collections.api.set.SetIterable setA
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       setA  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
            0    6     1       setB  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
            0    6     2  targetSet  TR;
            2    4     3        tmp  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
            5    6     3        one  Lorg/eclipse/collections/api/set/SetIterable<TE;>;
    Signature: <E:Ljava/lang/Object;R::Ljava/util/Set<TE;>;>(Lorg/eclipse/collections/api/set/SetIterable<+TE;>;Lorg/eclipse/collections/api/set/SetIterable<+TE;>;TR;)TR;
    MethodParameters:
           Name  Flags
      setA       
      setB       
      targetSet  

  public static <E> org.eclipse.collections.api.set.MutableSet<E> difference(org.eclipse.collections.api.set.SetIterable<? extends E>, org.eclipse.collections.api.set.SetIterable<? extends E>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.set.SetIterable minuendSet
        start local 1 // org.eclipse.collections.api.set.SetIterable subtrahendSet
         0: .line 90
            aload 0 /* minuendSet */
            aload 1 /* subtrahendSet */
            invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSet:()Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.differenceInto:(Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
            checkcast org.eclipse.collections.api.set.MutableSet
            areturn
        end local 1 // org.eclipse.collections.api.set.SetIterable subtrahendSet
        end local 0 // org.eclipse.collections.api.set.SetIterable minuendSet
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0     minuendSet  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
            0    1     1  subtrahendSet  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
    Signature: <E:Ljava/lang/Object;>(Lorg/eclipse/collections/api/set/SetIterable<+TE;>;Lorg/eclipse/collections/api/set/SetIterable<+TE;>;)Lorg/eclipse/collections/api/set/MutableSet<TE;>;
    MethodParameters:
               Name  Flags
      minuendSet     
      subtrahendSet  

  public static <E, R extends java.util.Set<E>> R differenceInto(org.eclipse.collections.api.set.SetIterable<? extends E>, org.eclipse.collections.api.set.SetIterable<? extends E>, );
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.api.set.SetIterable minuendSet
        start local 1 // org.eclipse.collections.api.set.SetIterable subtrahendSet
        start local 2 // java.util.Set targetSet
         0: .line 98
            aload 0 /* minuendSet */
            astore 3 /* one */
        start local 3 // org.eclipse.collections.api.set.SetIterable one
         1: .line 99
            aload 3 /* one */
            aload 1 /* subtrahendSet */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic accept(Lorg/eclipse/collections/api/set/SetIterable;)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/api/RichIterable.contains(Ljava/lang/Object;)Z (9 itf)
                  (Ljava/lang/Object;)Z
                  1
            aload 2 /* targetSet */
            invokeinterface org.eclipse.collections.api.set.SetIterable.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast java.util.Set
            areturn
        end local 3 // org.eclipse.collections.api.set.SetIterable one
        end local 2 // java.util.Set targetSet
        end local 1 // org.eclipse.collections.api.set.SetIterable subtrahendSet
        end local 0 // org.eclipse.collections.api.set.SetIterable minuendSet
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0     minuendSet  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
            0    2     1  subtrahendSet  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
            0    2     2      targetSet  TR;
            1    2     3            one  Lorg/eclipse/collections/api/set/SetIterable<TE;>;
    Signature: <E:Ljava/lang/Object;R::Ljava/util/Set<TE;>;>(Lorg/eclipse/collections/api/set/SetIterable<+TE;>;Lorg/eclipse/collections/api/set/SetIterable<+TE;>;TR;)TR;
    MethodParameters:
               Name  Flags
      minuendSet     
      subtrahendSet  
      targetSet      

  public static <E> org.eclipse.collections.api.set.MutableSet<E> symmetricDifference(org.eclipse.collections.api.set.SetIterable<? extends E>, org.eclipse.collections.api.set.SetIterable<? extends E>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.set.SetIterable setA
        start local 1 // org.eclipse.collections.api.set.SetIterable setB
         0: .line 106
            aload 0 /* setA */
            aload 1 /* setB */
            invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSet:()Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.symmetricDifferenceInto:(Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
            checkcast org.eclipse.collections.api.set.MutableSet
            areturn
        end local 1 // org.eclipse.collections.api.set.SetIterable setB
        end local 0 // org.eclipse.collections.api.set.SetIterable setA
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  setA  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
            0    1     1  setB  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
    Signature: <E:Ljava/lang/Object;>(Lorg/eclipse/collections/api/set/SetIterable<+TE;>;Lorg/eclipse/collections/api/set/SetIterable<+TE;>;)Lorg/eclipse/collections/api/set/MutableSet<TE;>;
    MethodParameters:
      Name  Flags
      setA  
      setB  

  public static <E, R extends java.util.Set<E>> R symmetricDifferenceInto(org.eclipse.collections.api.set.SetIterable<? extends E>, org.eclipse.collections.api.set.SetIterable<? extends E>, );
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.api.set.SetIterable setA
        start local 1 // org.eclipse.collections.api.set.SetIterable setB
        start local 2 // java.util.Set targetSet
         0: .line 115
            aload 0 /* setA */
            aload 1 /* setB */
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.difference:(Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/MutableSet;
         1: .line 116
            aload 1 /* setB */
            aload 0 /* setA */
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.difference:(Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/MutableSet;
         2: .line 117
            aload 2 /* targetSet */
         3: .line 114
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.unionInto:(Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
            areturn
        end local 2 // java.util.Set targetSet
        end local 1 // org.eclipse.collections.api.set.SetIterable setB
        end local 0 // org.eclipse.collections.api.set.SetIterable setA
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       setA  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
            0    4     1       setB  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
            0    4     2  targetSet  TR;
    Signature: <E:Ljava/lang/Object;R::Ljava/util/Set<TE;>;>(Lorg/eclipse/collections/api/set/SetIterable<+TE;>;Lorg/eclipse/collections/api/set/SetIterable<+TE;>;TR;)TR;
    MethodParameters:
           Name  Flags
      setA       
      setB       
      targetSet  

  public static <E> boolean isSubsetOf(org.eclipse.collections.api.set.SetIterable<? extends E>, org.eclipse.collections.api.set.SetIterable<? extends E>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.set.SetIterable candidateSubset
        start local 1 // org.eclipse.collections.api.set.SetIterable candidateSuperset
         0: .line 124
            aload 0 /* candidateSubset */
            invokeinterface org.eclipse.collections.api.set.SetIterable.size:()I
            aload 1 /* candidateSuperset */
            invokeinterface org.eclipse.collections.api.set.SetIterable.size:()I
            if_icmpgt 3
         1: .line 125
            aload 1 /* candidateSuperset */
            aload 0 /* candidateSubset */
            invokeinterface org.eclipse.collections.api.set.SetIterable.containsAllIterable:(Ljava/lang/Iterable;)Z
            ifeq 3
         2: .line 124
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
        end local 1 // org.eclipse.collections.api.set.SetIterable candidateSuperset
        end local 0 // org.eclipse.collections.api.set.SetIterable candidateSubset
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0    candidateSubset  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
            0    4     1  candidateSuperset  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
    Signature: <E:Ljava/lang/Object;>(Lorg/eclipse/collections/api/set/SetIterable<+TE;>;Lorg/eclipse/collections/api/set/SetIterable<+TE;>;)Z
    MethodParameters:
                   Name  Flags
      candidateSubset    
      candidateSuperset  

  public static <E> boolean isProperSubsetOf(org.eclipse.collections.api.set.SetIterable<? extends E>, org.eclipse.collections.api.set.SetIterable<? extends E>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.set.SetIterable candidateSubset
        start local 1 // org.eclipse.collections.api.set.SetIterable candidateSuperset
         0: .line 132
            aload 0 /* candidateSubset */
            invokeinterface org.eclipse.collections.api.set.SetIterable.size:()I
            aload 1 /* candidateSuperset */
            invokeinterface org.eclipse.collections.api.set.SetIterable.size:()I
            if_icmpge 3
         1: .line 133
            aload 1 /* candidateSuperset */
            aload 0 /* candidateSubset */
            invokeinterface org.eclipse.collections.api.set.SetIterable.containsAllIterable:(Ljava/lang/Iterable;)Z
            ifeq 3
         2: .line 132
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
        end local 1 // org.eclipse.collections.api.set.SetIterable candidateSuperset
        end local 0 // org.eclipse.collections.api.set.SetIterable candidateSubset
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0    candidateSubset  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
            0    4     1  candidateSuperset  Lorg/eclipse/collections/api/set/SetIterable<+TE;>;
    Signature: <E:Ljava/lang/Object;>(Lorg/eclipse/collections/api/set/SetIterable<+TE;>;Lorg/eclipse/collections/api/set/SetIterable<+TE;>;)Z
    MethodParameters:
                   Name  Flags
      candidateSubset    
      candidateSuperset  

  public static <T> org.eclipse.collections.api.set.MutableSet<org.eclipse.collections.api.set.MutableSet<T>> powerSet(java.util.Set<T>);
    descriptor: (Ljava/util/Set;)Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.util.Set set
         0: .line 138
            iconst_1
            anewarray org.eclipse.collections.api.set.MutableSet
            dup
            iconst_0
            invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSet:()Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            aastore
            invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSetWith:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            astore 1 /* seed */
        start local 1 // org.eclipse.collections.api.set.MutableSet seed
         1: .line 139
            aload 0 /* set */
            aload 1 /* seed */
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.powerSetWithSeed:(Ljava/util/Set;Lorg/eclipse/collections/api/set/MutableSet;)Lorg/eclipse/collections/api/set/MutableSet;
            areturn
        end local 1 // org.eclipse.collections.api.set.MutableSet seed
        end local 0 // java.util.Set set
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0   set  Ljava/util/Set<TT;>;
            1    2     1  seed  Lorg/eclipse/collections/api/set/MutableSet<Lorg/eclipse/collections/api/set/MutableSet<TT;>;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/util/Set<TT;>;)Lorg/eclipse/collections/api/set/MutableSet<Lorg/eclipse/collections/api/set/MutableSet<TT;>;>;
    MethodParameters:
      Name  Flags
      set   

  public static <T> org.eclipse.collections.api.set.MutableSet<org.eclipse.collections.api.set.MutableSet<T>> powerSet(org.eclipse.collections.impl.set.strategy.mutable.UnifiedSetWithHashingStrategy<T>);
    descriptor: (Lorg/eclipse/collections/impl/set/strategy/mutable/UnifiedSetWithHashingStrategy;)Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.set.strategy.mutable.UnifiedSetWithHashingStrategy set
         0: .line 144
            iconst_1
            anewarray org.eclipse.collections.api.set.MutableSet
            dup
            iconst_0
            aload 0 /* set */
            invokevirtual org.eclipse.collections.impl.set.strategy.mutable.UnifiedSetWithHashingStrategy.newEmpty:()Lorg/eclipse/collections/impl/set/strategy/mutable/UnifiedSetWithHashingStrategy;
            aastore
            invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSetWith:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            astore 1 /* seed */
        start local 1 // org.eclipse.collections.api.set.MutableSet seed
         1: .line 145
            aload 0 /* set */
            aload 1 /* seed */
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.powerSetWithSeed:(Ljava/util/Set;Lorg/eclipse/collections/api/set/MutableSet;)Lorg/eclipse/collections/api/set/MutableSet;
            areturn
        end local 1 // org.eclipse.collections.api.set.MutableSet seed
        end local 0 // org.eclipse.collections.impl.set.strategy.mutable.UnifiedSetWithHashingStrategy set
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0   set  Lorg/eclipse/collections/impl/set/strategy/mutable/UnifiedSetWithHashingStrategy<TT;>;
            1    2     1  seed  Lorg/eclipse/collections/api/set/MutableSet<Lorg/eclipse/collections/api/set/MutableSet<TT;>;>;
    Signature: <T:Ljava/lang/Object;>(Lorg/eclipse/collections/impl/set/strategy/mutable/UnifiedSetWithHashingStrategy<TT;>;)Lorg/eclipse/collections/api/set/MutableSet<Lorg/eclipse/collections/api/set/MutableSet<TT;>;>;
    MethodParameters:
      Name  Flags
      set   

  private static <T> org.eclipse.collections.api.set.MutableSet<org.eclipse.collections.api.set.MutableSet<T>> powerSetWithSeed(java.util.Set<T>, org.eclipse.collections.api.set.MutableSet<org.eclipse.collections.api.set.MutableSet<T>>);
    descriptor: (Ljava/util/Set;Lorg/eclipse/collections/api/set/MutableSet;)Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.util.Set set
        start local 1 // org.eclipse.collections.api.set.MutableSet seed
         0: .line 150
            aload 1 /* seed */
            aload 0 /* set */
            invokedynamic value()Lorg/eclipse/collections/api/block/function/Function2;
              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;Ljava/lang/Object;)Ljava/lang/Object;
                  org/eclipse/collections/impl/utility/internal/SetIterables.lambda$2(Lorg/eclipse/collections/api/set/MutableSet;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/MutableSet; (6)
                  (Lorg/eclipse/collections/api/set/MutableSet;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/MutableSet;
                  1
            invokestatic org.eclipse.collections.impl.utility.Iterate.injectInto:(Ljava/lang/Object;Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.set.MutableSet
            areturn
        end local 1 // org.eclipse.collections.api.set.MutableSet seed
        end local 0 // java.util.Set set
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   set  Ljava/util/Set<TT;>;
            0    1     1  seed  Lorg/eclipse/collections/api/set/MutableSet<Lorg/eclipse/collections/api/set/MutableSet<TT;>;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/util/Set<TT;>;Lorg/eclipse/collections/api/set/MutableSet<Lorg/eclipse/collections/api/set/MutableSet<TT;>;>;)Lorg/eclipse/collections/api/set/MutableSet<Lorg/eclipse/collections/api/set/MutableSet<TT;>;>;
    MethodParameters:
      Name  Flags
      set   
      seed  

  public static <T> org.eclipse.collections.api.set.ImmutableSet<org.eclipse.collections.api.set.ImmutableSet<T>> immutablePowerSet(java.util.Set<T>);
    descriptor: (Ljava/util/Set;)Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.util.Set set
         0: .line 158
            aload 0 /* set */
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.powerSet:(Ljava/util/Set;)Lorg/eclipse/collections/api/set/MutableSet;
            invokedynamic valueOf()Lorg/eclipse/collections/api/block/function/Function;
              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;)Ljava/lang/Object;
                  org/eclipse/collections/api/set/MutableSet.toImmutable()Lorg/eclipse/collections/api/set/ImmutableSet; (9 itf)
                  (Lorg/eclipse/collections/api/set/MutableSet;)Lorg/eclipse/collections/api/set/ImmutableSet;
                  1
            invokeinterface org.eclipse.collections.api.set.MutableSet.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/set/MutableSet;
            invokeinterface org.eclipse.collections.api.set.MutableSet.toImmutable:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        end local 0 // java.util.Set set
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   set  Ljava/util/Set<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/util/Set<TT;>;)Lorg/eclipse/collections/api/set/ImmutableSet<Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;>;
    MethodParameters:
      Name  Flags
      set   

  public static <A, B> org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.tuple.Pair<A, B>> cartesianProduct(org.eclipse.collections.api.set.SetIterable<A>, org.eclipse.collections.api.set.SetIterable<B>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.set.SetIterable set1
        start local 1 // org.eclipse.collections.api.set.SetIterable set2
         0: .line 163
            aload 0 /* set1 */
            aload 1 /* set2 */
            invokedynamic value()Lorg/eclipse/collections/api/block/function/Function2;
              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;Ljava/lang/Object;)Ljava/lang/Object;
                  org/eclipse/collections/impl/tuple/Tuples.pair(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Pair; (6)
                  (Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Pair;
                  1
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.cartesianProduct:(Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 1 // org.eclipse.collections.api.set.SetIterable set2
        end local 0 // org.eclipse.collections.api.set.SetIterable set1
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  set1  Lorg/eclipse/collections/api/set/SetIterable<TA;>;
            0    1     1  set2  Lorg/eclipse/collections/api/set/SetIterable<TB;>;
    Signature: <A:Ljava/lang/Object;B:Ljava/lang/Object;>(Lorg/eclipse/collections/api/set/SetIterable<TA;>;Lorg/eclipse/collections/api/set/SetIterable<TB;>;)Lorg/eclipse/collections/api/LazyIterable<Lorg/eclipse/collections/api/tuple/Pair<TA;TB;>;>;
    MethodParameters:
      Name  Flags
      set1  
      set2  

  public static <A, B, C> org.eclipse.collections.api.LazyIterable<C> cartesianProduct(org.eclipse.collections.api.set.SetIterable<A>, org.eclipse.collections.api.set.SetIterable<B>, org.eclipse.collections.api.block.function.Function2<A, B, C>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.api.set.SetIterable set1
        start local 1 // org.eclipse.collections.api.set.SetIterable set2
        start local 2 // org.eclipse.collections.api.block.function.Function2 function
         0: .line 168
            aload 0 /* set1 */
            aload 1 /* set2 */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.cartesianProduct:(Ljava/lang/Iterable;Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function2 function
        end local 1 // org.eclipse.collections.api.set.SetIterable set2
        end local 0 // org.eclipse.collections.api.set.SetIterable set1
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      set1  Lorg/eclipse/collections/api/set/SetIterable<TA;>;
            0    1     1      set2  Lorg/eclipse/collections/api/set/SetIterable<TB;>;
            0    1     2  function  Lorg/eclipse/collections/api/block/function/Function2<TA;TB;TC;>;
    Signature: <A:Ljava/lang/Object;B:Ljava/lang/Object;C:Ljava/lang/Object;>(Lorg/eclipse/collections/api/set/SetIterable<TA;>;Lorg/eclipse/collections/api/set/SetIterable<TB;>;Lorg/eclipse/collections/api/block/function/Function2<TA;TB;TC;>;)Lorg/eclipse/collections/api/LazyIterable<TC;>;
    MethodParameters:
          Name  Flags
      set1      
      set2      
      function  

  private static org.eclipse.collections.api.set.MutableSet lambda$2(org.eclipse.collections.api.set.MutableSet, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/set/MutableSet;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.set.MutableSet accumulator
        start local 1 // java.lang.Object element
         0: .line 150
            aload 0 /* accumulator */
            aload 0 /* accumulator */
            aload 1 /* element */
            invokedynamic valueOf(Ljava/lang/Object;)Lorg/eclipse/collections/api/block/function/Function;
              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;)Ljava/lang/Object;
                  org/eclipse/collections/impl/utility/internal/SetIterables.lambda$3(Ljava/lang/Object;Lorg/eclipse/collections/api/set/MutableSet;)Lorg/eclipse/collections/api/set/MutableSet; (6)
                  (Lorg/eclipse/collections/api/set/MutableSet;)Lorg/eclipse/collections/api/set/MutableSet;
                  1
            invokeinterface org.eclipse.collections.api.set.MutableSet.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/set/MutableSet;
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.union:(Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/MutableSet;
            areturn
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.collections.api.set.MutableSet accumulator
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0  accumulator  Lorg/eclipse/collections/api/set/MutableSet<Lorg/eclipse/collections/api/set/MutableSet<TT;>;>;
            0    1     1      element  TT;

  private static org.eclipse.collections.api.set.MutableSet lambda$3(java.lang.Object, org.eclipse.collections.api.set.MutableSet);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/set/MutableSet;)Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // org.eclipse.collections.api.set.MutableSet innerSet
         0: .line 150
            aload 1 /* innerSet */
            invokeinterface org.eclipse.collections.api.set.MutableSet.clone:()Lorg/eclipse/collections/api/set/MutableSet;
            aload 0
            invokeinterface org.eclipse.collections.api.set.MutableSet.with:(Ljava/lang/Object;)Lorg/eclipse/collections/api/set/MutableSet;
            areturn
        end local 1 // org.eclipse.collections.api.set.MutableSet innerSet
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     1  innerSet  Lorg/eclipse/collections/api/set/MutableSet<TT;>;

  private static java.lang.Object $deserializeLambda$(java.lang.invoke.SerializedLambda);
    descriptor: (Ljava/lang/invoke/SerializedLambda;)Ljava/lang/Object;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=6, 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
          -1647345003: 3
          -1647345002: 6
           -567445985: 1
              3433178: 5
            974865735: 4
              default: 7
          }
      StackMap locals: java.lang.String int
      StackMap stack:
         1: aload 1
            ldc "contains"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 2
            iconst_0
            istore 2
            goto 7
      StackMap locals:
      StackMap stack:
         2: aload 1
            ldc "contains"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 7
            iconst_0
            istore 2
            goto 7
      StackMap locals:
      StackMap stack:
         3: aload 1
            ldc "lambda$2"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 7
            iconst_1
            istore 2
            goto 7
      StackMap locals:
      StackMap stack:
         4: aload 1
            ldc "toImmutable"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 7
            iconst_2
            istore 2
            goto 7
      StackMap locals:
      StackMap stack:
         5: aload 1
            ldc "pair"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 7
            iconst_3
            istore 2
            goto 7
      StackMap locals:
      StackMap stack:
         6: aload 1
            ldc "lambda$3"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 7
            iconst_4
            istore 2
      StackMap locals:
      StackMap stack:
         7: iload 2
            lookupswitch { // 5
                    0: 8
                    1: 10
                    2: 11
                    3: 12
                    4: 13
              default: 14
          }
      StackMap locals:
      StackMap stack:
         8: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 9
            if_icmpne 9
            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 9
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "accept"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 9
            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 9
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/RichIterable"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 9
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;)Z"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 9
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.set.SetIterable
            invokedynamic accept(Lorg/eclipse/collections/api/set/SetIterable;)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/api/RichIterable.contains(Ljava/lang/Object;)Z (9 itf)
                  (Ljava/lang/Object;)Z
                  1
            areturn
      StackMap locals:
      StackMap stack:
         9: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 9
            if_icmpne 14
            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 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "accept"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            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 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/RichIterable"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;)Z"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.set.SetIterable
            invokedynamic accept(Lorg/eclipse/collections/api/set/SetIterable;)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/api/RichIterable.contains(Ljava/lang/Object;)Z (9 itf)
                  (Ljava/lang/Object;)Z
                  1
            areturn
      StackMap locals:
      StackMap stack:
        10: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 6
            if_icmpne 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/function/Function2"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "value"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/utility/internal/SetIterables"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(Lorg/eclipse/collections/api/set/MutableSet;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/MutableSet;"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            invokedynamic value()Lorg/eclipse/collections/api/block/function/Function2;
              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;Ljava/lang/Object;)Ljava/lang/Object;
                  org/eclipse/collections/impl/utility/internal/SetIterables.lambda$2(Lorg/eclipse/collections/api/set/MutableSet;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/MutableSet; (6)
                  (Lorg/eclipse/collections/api/set/MutableSet;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/MutableSet;
                  1
            areturn
      StackMap locals:
      StackMap stack:
        11: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 9
            if_icmpne 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/function/Function"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "valueOf"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;)Ljava/lang/Object;"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/set/MutableSet"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "()Lorg/eclipse/collections/api/set/ImmutableSet;"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            invokedynamic valueOf()Lorg/eclipse/collections/api/block/function/Function;
              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;)Ljava/lang/Object;
                  org/eclipse/collections/api/set/MutableSet.toImmutable()Lorg/eclipse/collections/api/set/ImmutableSet; (9 itf)
                  (Lorg/eclipse/collections/api/set/MutableSet;)Lorg/eclipse/collections/api/set/ImmutableSet;
                  1
            areturn
      StackMap locals:
      StackMap stack:
        12: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 6
            if_icmpne 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/function/Function2"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "value"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/tuple/Tuples"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Pair;"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            invokedynamic value()Lorg/eclipse/collections/api/block/function/Function2;
              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;Ljava/lang/Object;)Ljava/lang/Object;
                  org/eclipse/collections/impl/tuple/Tuples.pair(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Pair; (6)
                  (Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Pair;
                  1
            areturn
      StackMap locals:
      StackMap stack:
        13: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 6
            if_icmpne 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/function/Function"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "valueOf"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;)Ljava/lang/Object;"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/utility/internal/SetIterables"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;Lorg/eclipse/collections/api/set/MutableSet;)Lorg/eclipse/collections/api/set/MutableSet;"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast java.lang.Object
            invokedynamic valueOf(Ljava/lang/Object;)Lorg/eclipse/collections/api/block/function/Function;
              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;)Ljava/lang/Object;
                  org/eclipse/collections/impl/utility/internal/SetIterables.lambda$3(Ljava/lang/Object;Lorg/eclipse/collections/api/set/MutableSet;)Lorg/eclipse/collections/api/set/MutableSet; (6)
                  (Lorg/eclipse/collections/api/set/MutableSet;)Lorg/eclipse/collections/api/set/MutableSet;
                  1
            areturn
      StackMap locals:
      StackMap stack:
        14: 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
}
SourceFile: "SetIterables.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles