public class org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet implements org.eclipse.collections.api.set.primitive.MutableBooleanSet, java.io.Externalizable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet
  super_class: java.lang.Object
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private int state;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 193
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 195
            return
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public void <init>(org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet);
    descriptor: (Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet set
         0: .line 197
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 199
            aload 0 /* this */
            aload 1 /* set */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            putfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
         2: .line 200
            return
        end local 1 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet set
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    3     1   set  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
    MethodParameters:
      Name  Flags
      set   

  public void <init>(boolean[]);
    descriptor: ([Z)V
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // boolean[] elements
         0: .line 204
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.<init>:()V
         1: .line 205
            aload 0 /* this */
            aload 1 /* elements */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.addAll:([Z)Z
            pop
         2: .line 206
            return
        end local 1 // boolean[] elements
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    3     1  elements  [Z
    MethodParameters:
          Name  Flags
      elements  

  public static org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet newSetWith(boolean[]);
    descriptor: ([Z)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // boolean[] source
         0: .line 210
            new org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet
            dup
            aload 0 /* source */
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.<init>:([Z)V
            areturn
        end local 0 // boolean[] source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  source  [Z
    MethodParameters:
        Name  Flags
      source  

  public static org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet newSet(org.eclipse.collections.api.BooleanIterable);
    descriptor: (Lorg/eclipse/collections/api/BooleanIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.api.BooleanIterable source
         0: .line 215
            aload 0 /* source */
            instanceof org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet
            ifeq 2
         1: .line 217
            new org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet
            dup
            aload 0 /* source */
            checkcast org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.<init>:(Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;)V
            areturn
         2: .line 220
      StackMap locals:
      StackMap stack:
            aload 0 /* source */
            invokeinterface org.eclipse.collections.api.BooleanIterable.toArray:()[Z
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.newSetWith:([Z)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
        end local 0 // org.eclipse.collections.api.BooleanIterable source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0  source  Lorg/eclipse/collections/api/BooleanIterable;
    MethodParameters:
        Name  Flags
      source  

  public boolean add(boolean);
    descriptor: (Z)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // boolean element
         0: .line 226
            aload 0 /* this */
            iload 1 /* element */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.contains:(Z)Z
            ifeq 2
         1: .line 228
            iconst_0
            ireturn
         2: .line 230
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iload 1 /* element */
            ifeq 3
            iconst_2
            goto 4
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet int
      StackMap stack: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet int
         3: iconst_1
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet int
      StackMap stack: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet int int
         4: ior
            putfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
         5: .line 231
            iconst_1
            ireturn
        end local 1 // boolean element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    6     1  element  Z
    MethodParameters:
         Name  Flags
      element  

  public boolean addAll(boolean[]);
    descriptor: ([Z)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=7, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // boolean[] source
         0: .line 237
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            istore 2 /* initialState */
        start local 2 // int initialState
         1: .line 238
            aload 1 /* source */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 8
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet boolean[] int top int int boolean[]
      StackMap stack:
         2: aload 6
            iload 4
            baload
            istore 3 /* item */
        start local 3 // boolean item
         3: .line 240
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_3
            if_icmpne 6
         4: .line 242
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iload 2 /* initialState */
            if_icmpeq 5
            iconst_1
            ireturn
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet boolean[] int int int int boolean[]
      StackMap stack:
         5: iconst_0
            ireturn
         6: .line 244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* item */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.add:(Z)Z
            pop
        end local 3 // boolean item
         7: .line 238
            iinc 4 1
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet boolean[] int top int int boolean[]
      StackMap stack:
         8: iload 4
            iload 5
            if_icmplt 2
         9: .line 246
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iload 2 /* initialState */
            if_icmpeq 10
            iconst_1
            ireturn
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet boolean[] int
      StackMap stack:
        10: iconst_0
            ireturn
        end local 2 // int initialState
        end local 1 // boolean[] source
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   11     0          this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0   11     1        source  [Z
            1   11     2  initialState  I
            3    7     3          item  Z
    MethodParameters:
        Name  Flags
      source  

  public boolean addAll(org.eclipse.collections.api.BooleanIterable);
    descriptor: (Lorg/eclipse/collections/api/BooleanIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // org.eclipse.collections.api.BooleanIterable source
         0: .line 252
            aload 0 /* this */
            aload 1 /* source */
            invokeinterface org.eclipse.collections.api.BooleanIterable.toArray:()[Z
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.addAll:([Z)Z
            ireturn
        end local 1 // org.eclipse.collections.api.BooleanIterable source
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    1     1  source  Lorg/eclipse/collections/api/BooleanIterable;
    MethodParameters:
        Name  Flags
      source  

  public boolean remove(boolean);
    descriptor: (Z)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // boolean value
         0: .line 258
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.contains:(Z)Z
            ifne 2
         1: .line 260
            iconst_0
            ireturn
         2: .line 262
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            istore 2 /* initialState */
        start local 2 // int initialState
         3: .line 263
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iload 1 /* value */
            ifeq 4
            bipush -3
            goto 5
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet int int
      StackMap stack: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet int
         4: bipush -2
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet int int
      StackMap stack: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet int int
         5: iand
            putfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
         6: .line 264
            iload 2 /* initialState */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            if_icmpeq 7
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         7: iconst_0
            ireturn
        end local 2 // int initialState
        end local 1 // boolean value
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    8     0          this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    8     1         value  Z
            3    8     2  initialState  I
    MethodParameters:
       Name  Flags
      value  

  public boolean removeAll(org.eclipse.collections.api.BooleanIterable);
    descriptor: (Lorg/eclipse/collections/api/BooleanIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // org.eclipse.collections.api.BooleanIterable source
         0: .line 270
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.isEmpty:()Z
            ifne 1
            aload 1 /* source */
            invokeinterface org.eclipse.collections.api.BooleanIterable.isEmpty:()Z
            ifeq 2
         1: .line 272
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 274
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* modified */
        start local 2 // boolean modified
         3: .line 275
            aload 1 /* source */
            invokeinterface org.eclipse.collections.api.BooleanIterable.booleanIterator:()Lorg/eclipse/collections/api/iterator/BooleanIterator;
            astore 3 /* iterator */
        start local 3 // org.eclipse.collections.api.iterator.BooleanIterator iterator
         4: .line 276
            goto 10
         5: .line 278
      StackMap locals: int org.eclipse.collections.api.iterator.BooleanIterator
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            ifne 7
         6: .line 280
            iload 2 /* modified */
            ireturn
         7: .line 282
      StackMap locals:
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.BooleanIterator.next:()Z
            istore 4 /* item */
        start local 4 // boolean item
         8: .line 283
            aload 0 /* this */
            iload 4 /* item */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.remove:(Z)Z
            ifeq 10
         9: .line 285
            iconst_1
            istore 2 /* modified */
        end local 4 // boolean item
        10: .line 276
      StackMap locals:
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.BooleanIterator.hasNext:()Z
            ifne 5
        11: .line 288
            iload 2 /* modified */
            ireturn
        end local 3 // org.eclipse.collections.api.iterator.BooleanIterator iterator
        end local 2 // boolean modified
        end local 1 // org.eclipse.collections.api.BooleanIterable source
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0   12     1    source  Lorg/eclipse/collections/api/BooleanIterable;
            3   12     2  modified  Z
            4   12     3  iterator  Lorg/eclipse/collections/api/iterator/BooleanIterator;
            8   10     4      item  Z
    MethodParameters:
        Name  Flags
      source  

  public boolean removeAll(boolean[]);
    descriptor: ([Z)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=7, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // boolean[] source
         0: .line 294
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.isEmpty:()Z
            ifne 1
            aload 1 /* source */
            arraylength
            ifne 2
         1: .line 296
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 298
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* modified */
        start local 2 // boolean modified
         3: .line 299
            aload 1 /* source */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 10
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet boolean[] int top int int boolean[]
      StackMap stack:
         4: aload 6
            iload 4
            baload
            istore 3 /* item */
        start local 3 // boolean item
         5: .line 301
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            ifne 7
         6: .line 303
            iload 2 /* modified */
            ireturn
         7: .line 305
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet boolean[] int int int int boolean[]
      StackMap stack:
            aload 0 /* this */
            iload 3 /* item */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.remove:(Z)Z
            ifeq 9
         8: .line 307
            iconst_1
            istore 2 /* modified */
        end local 3 // boolean item
         9: .line 299
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet boolean[] int top int int boolean[]
      StackMap stack:
            iinc 4 1
      StackMap locals:
      StackMap stack:
        10: iload 4
            iload 5
            if_icmplt 4
        11: .line 310
            iload 2 /* modified */
            ireturn
        end local 2 // boolean modified
        end local 1 // boolean[] source
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0   12     1    source  [Z
            3   12     2  modified  Z
            5    9     3      item  Z
    MethodParameters:
        Name  Flags
      source  

  public boolean retainAll(org.eclipse.collections.api.BooleanIterable);
    descriptor: (Lorg/eclipse/collections/api/BooleanIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // org.eclipse.collections.api.BooleanIterable source
         0: .line 316
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            ifeq 4
         1: .line 317
            aload 1 /* source */
            iconst_1
            invokeinterface org.eclipse.collections.api.BooleanIterable.contains:(Z)Z
            ifeq 2
            aload 1 /* source */
            iconst_0
            invokeinterface org.eclipse.collections.api.BooleanIterable.contains:(Z)Z
            ifne 4
         2: .line 318
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_2
            if_icmpne 3
            aload 1 /* source */
            iconst_1
            invokeinterface org.eclipse.collections.api.BooleanIterable.contains:(Z)Z
            ifne 4
         3: .line 319
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_1
            if_icmpne 5
            aload 1 /* source */
            iconst_0
            invokeinterface org.eclipse.collections.api.BooleanIterable.contains:(Z)Z
            ifeq 5
         4: .line 321
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         5: .line 323
      StackMap locals:
      StackMap stack:
            aload 1 /* source */
            iconst_1
            invokeinterface org.eclipse.collections.api.BooleanIterable.contains:(Z)Z
            ifeq 8
         6: .line 325
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_1
            isub
            putfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
         7: .line 326
            goto 12
         8: .line 327
      StackMap locals:
      StackMap stack:
            aload 1 /* source */
            iconst_0
            invokeinterface org.eclipse.collections.api.BooleanIterable.contains:(Z)Z
            ifeq 11
         9: .line 329
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_2
            isub
            putfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
        10: .line 330
            goto 12
        11: .line 333
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
        12: .line 335
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // org.eclipse.collections.api.BooleanIterable source
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0   13     1  source  Lorg/eclipse/collections/api/BooleanIterable;
    MethodParameters:
        Name  Flags
      source  

  public boolean retainAll(boolean[]);
    descriptor: ([Z)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // boolean[] source
         0: .line 341
            aload 0 /* this */
            aload 1 /* source */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.newSetWith:([Z)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.retainAll:(Lorg/eclipse/collections/api/BooleanIterable;)Z
            ireturn
        end local 1 // boolean[] source
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    1     1  source  [Z
    MethodParameters:
        Name  Flags
      source  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 347
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
         1: .line 348
            return
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public org.eclipse.collections.api.iterator.MutableBooleanIterator booleanIterator();
    descriptor: ()Lorg/eclipse/collections/api/iterator/MutableBooleanIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 353
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            tableswitch { // 0 - 3
                    0: 1
                    1: 2
                    2: 3
                    3: 4
              default: 5
          }
         1: .line 356
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet$EmptyBooleanIterator
            dup
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet$EmptyBooleanIterator.<init>:()V
            areturn
         2: .line 358
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet$FalseBooleanIterator
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet$FalseBooleanIterator.<init>:(Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;)V
            areturn
         3: .line 360
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet$TrueBooleanIterator
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet$TrueBooleanIterator.<init>:(Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;)V
            areturn
         4: .line 362
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet$FalseTrueBooleanIterator
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet$FalseTrueBooleanIterator.<init>:(Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;)V
            areturn
         5: .line 364
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "Invalid state"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public void forEach(org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/BooleanProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure procedure
         0: .line 371
            aload 0 /* this */
            aload 1 /* procedure */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.each:(Lorg/eclipse/collections/api/block/procedure/primitive/BooleanProcedure;)V
         1: .line 372
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure procedure
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/BooleanProcedure;
    MethodParameters:
           Name  Flags
      procedure  

  public void each(org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/BooleanProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure procedure
         0: .line 380
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            tableswitch { // 0 - 3
                    0: 1
                    1: 2
                    2: 4
                    3: 6
              default: 9
          }
         1: .line 383
      StackMap locals:
      StackMap stack:
            return
         2: .line 385
      StackMap locals:
      StackMap stack:
            aload 1 /* procedure */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure.value:(Z)V
         3: .line 386
            return
         4: .line 388
      StackMap locals:
      StackMap stack:
            aload 1 /* procedure */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure.value:(Z)V
         5: .line 389
            return
         6: .line 391
      StackMap locals:
      StackMap stack:
            aload 1 /* procedure */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure.value:(Z)V
         7: .line 392
            aload 1 /* procedure */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure.value:(Z)V
         8: .line 393
            return
         9: .line 395
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "Invalid state"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure procedure
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0   10     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/BooleanProcedure;
    MethodParameters:
           Name  Flags
      procedure  

  public <T> T injectInto(T, org.eclipse.collections.api.block.function.primitive.ObjectBooleanToObjectFunction<? super T, ? extends T>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectBooleanToObjectFunction;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.ObjectBooleanToObjectFunction function
         0: .line 402
            aload 1 /* injectedValue */
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 403
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            tableswitch { // 0 - 3
                    0: 2
                    1: 3
                    2: 5
                    3: 7
              default: 10
          }
         2: .line 406
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 3 /* result */
            areturn
         3: .line 408
      StackMap locals:
      StackMap stack:
            aload 2 /* function */
            aload 3 /* result */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectBooleanToObjectFunction.valueOf:(Ljava/lang/Object;Z)Ljava/lang/Object;
            astore 3 /* result */
         4: .line 409
            aload 3 /* result */
            areturn
         5: .line 411
      StackMap locals:
      StackMap stack:
            aload 2 /* function */
            aload 3 /* result */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectBooleanToObjectFunction.valueOf:(Ljava/lang/Object;Z)Ljava/lang/Object;
            astore 3 /* result */
         6: .line 412
            aload 3 /* result */
            areturn
         7: .line 414
      StackMap locals:
      StackMap stack:
            aload 2 /* function */
            aload 3 /* result */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectBooleanToObjectFunction.valueOf:(Ljava/lang/Object;Z)Ljava/lang/Object;
            astore 3 /* result */
         8: .line 415
            aload 2 /* function */
            aload 3 /* result */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectBooleanToObjectFunction.valueOf:(Ljava/lang/Object;Z)Ljava/lang/Object;
            astore 3 /* result */
         9: .line 416
            aload 3 /* result */
            areturn
        10: .line 418
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "Invalid state"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 3 // java.lang.Object result
        end local 2 // org.eclipse.collections.api.block.function.primitive.ObjectBooleanToObjectFunction function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   11     0           this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0   11     1  injectedValue  TT;
            0   11     2       function  Lorg/eclipse/collections/api/block/function/primitive/ObjectBooleanToObjectFunction<-TT;+TT;>;
            1   11     3         result  TT;
    Signature: <T:Ljava/lang/Object;>(TT;Lorg/eclipse/collections/api/block/function/primitive/ObjectBooleanToObjectFunction<-TT;+TT;>;)TT;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.BooleanIterable> chunk(int);
    descriptor: (I)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // int size
         0: .line 425
            iload 1 /* size */
            ifgt 2
         1: .line 427
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Size for groups must be positive but was: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* size */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 429
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.api.factory.Lists.mutable:Lorg/eclipse/collections/api/factory/list/MutableListFactory;
            invokeinterface org.eclipse.collections.api.factory.list.MutableListFactory.empty:()Lorg/eclipse/collections/api/list/MutableList;
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.list.MutableList result
         3: .line 430
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            tableswitch { // 0 - 3
                    0: 4
                    1: 5
                    2: 7
                    3: 9
              default: 15
          }
         4: .line 433
      StackMap locals: org.eclipse.collections.api.list.MutableList
      StackMap stack:
            aload 2 /* result */
            areturn
         5: .line 435
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            getstatic org.eclipse.collections.impl.factory.primitive.BooleanSets.mutable:Lorg/eclipse/collections/api/factory/set/primitive/MutableBooleanSetFactory;
            iconst_1
            newarray 4
            dup
            iconst_0
            iconst_0
            bastore
            invokeinterface org.eclipse.collections.api.factory.set.primitive.MutableBooleanSetFactory.with:([Z)Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
            invokeinterface org.eclipse.collections.api.list.MutableList.add:(Ljava/lang/Object;)Z
            pop
         6: .line 436
            aload 2 /* result */
            areturn
         7: .line 438
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            getstatic org.eclipse.collections.impl.factory.primitive.BooleanSets.mutable:Lorg/eclipse/collections/api/factory/set/primitive/MutableBooleanSetFactory;
            iconst_1
            newarray 4
            dup
            iconst_0
            iconst_1
            bastore
            invokeinterface org.eclipse.collections.api.factory.set.primitive.MutableBooleanSetFactory.with:([Z)Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
            invokeinterface org.eclipse.collections.api.list.MutableList.add:(Ljava/lang/Object;)Z
            pop
         8: .line 439
            aload 2 /* result */
            areturn
         9: .line 441
      StackMap locals:
      StackMap stack:
            iload 1 /* size */
            iconst_1
            if_icmpne 13
        10: .line 443
            aload 2 /* result */
            getstatic org.eclipse.collections.impl.factory.primitive.BooleanSets.mutable:Lorg/eclipse/collections/api/factory/set/primitive/MutableBooleanSetFactory;
            iconst_1
            newarray 4
            dup
            iconst_0
            iconst_0
            bastore
            invokeinterface org.eclipse.collections.api.factory.set.primitive.MutableBooleanSetFactory.with:([Z)Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
            invokeinterface org.eclipse.collections.api.list.MutableList.add:(Ljava/lang/Object;)Z
            pop
        11: .line 444
            aload 2 /* result */
            getstatic org.eclipse.collections.impl.factory.primitive.BooleanSets.mutable:Lorg/eclipse/collections/api/factory/set/primitive/MutableBooleanSetFactory;
            iconst_1
            newarray 4
            dup
            iconst_0
            iconst_1
            bastore
            invokeinterface org.eclipse.collections.api.factory.set.primitive.MutableBooleanSetFactory.with:([Z)Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
            invokeinterface org.eclipse.collections.api.list.MutableList.add:(Ljava/lang/Object;)Z
            pop
        12: .line 445
            goto 14
        13: .line 448
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            getstatic org.eclipse.collections.impl.factory.primitive.BooleanSets.mutable:Lorg/eclipse/collections/api/factory/set/primitive/MutableBooleanSetFactory;
            iconst_2
            newarray 4
            dup
            iconst_0
            iconst_0
            bastore
            dup
            iconst_1
            iconst_1
            bastore
            invokeinterface org.eclipse.collections.api.factory.set.primitive.MutableBooleanSetFactory.with:([Z)Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
            invokeinterface org.eclipse.collections.api.list.MutableList.add:(Ljava/lang/Object;)Z
            pop
        14: .line 450
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            areturn
        15: .line 452
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "Invalid state"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 2 // org.eclipse.collections.api.list.MutableList result
        end local 1 // int size
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0    this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0   16     1    size  I
            3   16     2  result  Lorg/eclipse/collections/api/list/MutableList<Lorg/eclipse/collections/api/BooleanIterable;>;
    Signature: (I)Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/BooleanIterable;>;
    MethodParameters:
      Name  Flags
      size  

  public int count(org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate predicate
         0: .line 459
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            tableswitch { // 0 - 3
                    0: 1
                    1: 2
                    2: 5
                    3: 8
              default: 14
          }
         1: .line 462
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 464
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate.accept:(Z)Z
            ifeq 3
            iconst_1
            goto 4
      StackMap locals:
      StackMap stack:
         3: iconst_0
      StackMap locals:
      StackMap stack: int
         4: ireturn
         5: .line 466
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate.accept:(Z)Z
            ifeq 6
            iconst_1
            goto 7
      StackMap locals:
      StackMap stack:
         6: iconst_0
      StackMap locals:
      StackMap stack: int
         7: ireturn
         8: .line 468
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         9: .line 469
            aload 1 /* predicate */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate.accept:(Z)Z
            ifeq 11
        10: .line 471
            iinc 2 /* count */ 1
        11: .line 473
      StackMap locals: int
      StackMap stack:
            aload 1 /* predicate */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate.accept:(Z)Z
            ifeq 13
        12: .line 475
            iinc 2 /* count */ 1
        13: .line 477
      StackMap locals:
      StackMap stack:
            iload 2 /* count */
            ireturn
        end local 2 // int count
        14: .line 479
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "Invalid state"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   15     0       this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0   15     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;
            9   14     2      count  I
    MethodParameters:
           Name  Flags
      predicate  

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate predicate
         0: .line 486
            aload 0 /* this */
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.count:(Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)I
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    2     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate predicate
         0: .line 492
            aload 0 /* this */
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.count:(Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)I
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.size:()I
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    2     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate predicate
         0: .line 498
            aload 0 /* this */
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.count:(Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    2     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet select(org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate predicate
         0: .line 504
            new org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet
            dup
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.<init>:()V
            astore 2 /* set */
        start local 2 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet set
         1: .line 505
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            tableswitch { // 0 - 3
                    0: 2
                    1: 3
                    2: 6
                    3: 9
              default: 14
          }
         2: .line 508
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet
      StackMap stack:
            aload 2 /* set */
            areturn
         3: .line 510
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate.accept:(Z)Z
            ifeq 5
         4: .line 512
            aload 2 /* set */
            iconst_0
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.add:(Z)Z
            pop
         5: .line 514
      StackMap locals:
      StackMap stack:
            aload 2 /* set */
            areturn
         6: .line 516
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate.accept:(Z)Z
            ifeq 8
         7: .line 518
            aload 2 /* set */
            iconst_1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.add:(Z)Z
            pop
         8: .line 520
      StackMap locals:
      StackMap stack:
            aload 2 /* set */
            areturn
         9: .line 522
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate.accept:(Z)Z
            ifeq 11
        10: .line 524
            aload 2 /* set */
            iconst_0
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.add:(Z)Z
            pop
        11: .line 526
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate.accept:(Z)Z
            ifeq 13
        12: .line 528
            aload 2 /* set */
            iconst_1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.add:(Z)Z
            pop
        13: .line 530
      StackMap locals:
      StackMap stack:
            aload 2 /* set */
            areturn
        14: .line 532
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "Invalid state"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 2 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet set
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   15     0       this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0   15     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;
            1   15     2        set  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet reject(org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate predicate
         0: .line 539
            aload 0 /* this */
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.block.factory.primitive.BooleanPredicates.not:(Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public boolean detectIfNone(org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate, boolean);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;Z)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate predicate
        start local 2 // boolean ifNone
         0: .line 545
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            tableswitch { // 0 - 3
                    0: 1
                    1: 2
                    2: 4
                    3: 6
              default: 11
          }
         1: .line 548
      StackMap locals:
      StackMap stack:
            iload 2 /* ifNone */
            ireturn
         2: .line 550
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate.accept:(Z)Z
            ifne 3
            iload 2 /* ifNone */
            ifeq 3
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
         4: .line 552
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate.accept:(Z)Z
            ifne 5
            iload 2 /* ifNone */
            ifne 5
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_1
            ireturn
         6: .line 554
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate.accept:(Z)Z
            ifeq 8
         7: .line 556
            iconst_0
            ireturn
         8: .line 558
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate.accept:(Z)Z
            ifeq 10
         9: .line 560
            iconst_1
            ireturn
        10: .line 562
      StackMap locals:
      StackMap stack:
            iload 2 /* ifNone */
            ireturn
        11: .line 564
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "Invalid state"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 2 // boolean ifNone
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;
            0   12     2     ifNone  Z
    MethodParameters:
           Name  Flags
      predicate  
      ifNone     

  public <V> org.eclipse.collections.api.set.MutableSet<V> collect(org.eclipse.collections.api.block.function.primitive.BooleanToObjectFunction<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanToObjectFunction;)Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // org.eclipse.collections.api.block.function.primitive.BooleanToObjectFunction function
         0: .line 571
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.size:()I
            invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSet:(I)Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            astore 2 /* target */
        start local 2 // org.eclipse.collections.impl.set.mutable.UnifiedSet target
         1: .line 572
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            tableswitch { // 0 - 3
                    0: 2
                    1: 3
                    2: 4
                    3: 5
              default: 8
          }
         2: .line 575
      StackMap locals: org.eclipse.collections.impl.set.mutable.UnifiedSet
      StackMap stack:
            aload 2 /* target */
            areturn
         3: .line 577
      StackMap locals:
      StackMap stack:
            aload 2 /* target */
            aload 1 /* function */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.function.primitive.BooleanToObjectFunction.valueOf:(Z)Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.with:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            areturn
         4: .line 579
      StackMap locals:
      StackMap stack:
            aload 2 /* target */
            aload 1 /* function */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.function.primitive.BooleanToObjectFunction.valueOf:(Z)Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.with:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            areturn
         5: .line 581
      StackMap locals:
      StackMap stack:
            aload 2 /* target */
            aload 1 /* function */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.function.primitive.BooleanToObjectFunction.valueOf:(Z)Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.add:(Ljava/lang/Object;)Z
            pop
         6: .line 582
            aload 2 /* target */
            aload 1 /* function */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.function.primitive.BooleanToObjectFunction.valueOf:(Z)Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.add:(Ljava/lang/Object;)Z
            pop
         7: .line 583
            aload 2 /* target */
            areturn
         8: .line 585
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "Invalid state"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 2 // org.eclipse.collections.impl.set.mutable.UnifiedSet target
        end local 1 // org.eclipse.collections.api.block.function.primitive.BooleanToObjectFunction function
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    9     1  function  Lorg/eclipse/collections/api/block/function/primitive/BooleanToObjectFunction<+TV;>;
            1    9     2    target  Lorg/eclipse/collections/impl/set/mutable/UnifiedSet<TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/primitive/BooleanToObjectFunction<+TV;>;)Lorg/eclipse/collections/api/set/MutableSet<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public boolean[] toArray();
    descriptor: ()[Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 592
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            tableswitch { // 0 - 3
                    0: 1
                    1: 2
                    2: 3
                    3: 4
              default: 5
          }
         1: .line 595
      StackMap locals:
      StackMap stack:
            iconst_0
            newarray 4
            areturn
         2: .line 597
      StackMap locals:
      StackMap stack:
            iconst_1
            newarray 4
            areturn
         3: .line 599
      StackMap locals:
      StackMap stack:
            iconst_1
            newarray 4
            dup
            iconst_0
            iconst_1
            bastore
            areturn
         4: .line 601
      StackMap locals:
      StackMap stack:
            iconst_2
            newarray 4
            dup
            iconst_1
            iconst_1
            bastore
            areturn
         5: .line 603
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "Invalid state"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public boolean[] toArray(boolean[]);
    descriptor: ([Z)[Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // boolean[] target
         0: .line 610
            iconst_0
            istore 2 /* requiredSize */
        start local 2 // int requiredSize
         1: .line 611
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_1
            if_icmpeq 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_2
            if_icmpne 4
         2: .line 613
      StackMap locals: int
      StackMap stack:
            iconst_1
            istore 2 /* requiredSize */
         3: .line 614
            goto 6
         4: .line 615
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_3
            if_icmpne 6
         5: .line 617
            iconst_2
            istore 2 /* requiredSize */
         6: .line 620
      StackMap locals:
      StackMap stack:
            aload 1 /* target */
            arraylength
            iload 2 /* requiredSize */
            if_icmpge 8
         7: .line 622
            iload 2 /* requiredSize */
            newarray 4
            astore 1 /* target */
         8: .line 625
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            tableswitch { // 0 - 3
                    0: 9
                    1: 10
                    2: 12
                    3: 14
              default: 17
          }
         9: .line 628
      StackMap locals:
      StackMap stack:
            aload 1 /* target */
            areturn
        10: .line 630
      StackMap locals:
      StackMap stack:
            aload 1 /* target */
            iconst_0
            iconst_0
            bastore
        11: .line 631
            aload 1 /* target */
            areturn
        12: .line 633
      StackMap locals:
      StackMap stack:
            aload 1 /* target */
            iconst_0
            iconst_1
            bastore
        13: .line 634
            aload 1 /* target */
            areturn
        14: .line 636
      StackMap locals:
      StackMap stack:
            aload 1 /* target */
            iconst_0
            iconst_0
            bastore
        15: .line 637
            aload 1 /* target */
            iconst_1
            iconst_1
            bastore
        16: .line 638
            aload 1 /* target */
            areturn
        17: .line 640
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "Invalid state"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 2 // int requiredSize
        end local 1 // boolean[] target
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   18     0          this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0   18     1        target  [Z
            1   18     2  requiredSize  I
    MethodParameters:
        Name  Flags
      target  

  public boolean contains(boolean);
    descriptor: (Z)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // boolean value
         0: .line 647
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_3
            if_icmpne 2
         1: .line 649
            iconst_1
            ireturn
         2: .line 651
      StackMap locals:
      StackMap stack:
            iload 1 /* value */
            ifeq 5
         3: .line 653
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_2
            if_icmpne 4
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         4: iconst_0
            ireturn
         5: .line 655
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_1
            if_icmpne 6
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         6: iconst_0
            ireturn
        end local 1 // boolean value
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    7     1  value  Z
    MethodParameters:
       Name  Flags
      value  

  public boolean containsAll(boolean[]);
    descriptor: ([Z)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // boolean[] source
         0: .line 661
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_3
            if_icmpne 2
         1: .line 663
            iconst_1
            ireturn
         2: .line 665
      StackMap locals:
      StackMap stack:
            aload 1 /* source */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 7
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet boolean[] top int int boolean[]
      StackMap stack:
         3: aload 5
            iload 3
            baload
            istore 2 /* item */
        start local 2 // boolean item
         4: .line 667
            aload 0 /* this */
            iload 2 /* item */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.contains:(Z)Z
            ifne 6
         5: .line 669
            iconst_0
            ireturn
        end local 2 // boolean item
         6: .line 665
      StackMap locals:
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
         7: iload 3
            iload 4
            if_icmplt 3
         8: .line 672
            iconst_1
            ireturn
        end local 1 // boolean[] source
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    9     1  source  [Z
            4    6     2    item  Z
    MethodParameters:
        Name  Flags
      source  

  public boolean containsAll(org.eclipse.collections.api.BooleanIterable);
    descriptor: (Lorg/eclipse/collections/api/BooleanIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // org.eclipse.collections.api.BooleanIterable source
         0: .line 678
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_3
            if_icmpne 2
         1: .line 680
            iconst_1
            ireturn
         2: .line 682
      StackMap locals:
      StackMap stack:
            aload 1 /* source */
            invokeinterface org.eclipse.collections.api.BooleanIterable.booleanIterator:()Lorg/eclipse/collections/api/iterator/BooleanIterator;
            astore 2 /* iterator */
        start local 2 // org.eclipse.collections.api.iterator.BooleanIterator iterator
         3: goto 6
         4: .line 684
      StackMap locals: org.eclipse.collections.api.iterator.BooleanIterator
      StackMap stack:
            aload 0 /* this */
            aload 2 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.BooleanIterator.next:()Z
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.contains:(Z)Z
            ifne 6
         5: .line 686
            iconst_0
            ireturn
         6: .line 682
      StackMap locals:
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.BooleanIterator.hasNext:()Z
            ifne 4
        end local 2 // org.eclipse.collections.api.iterator.BooleanIterator iterator
         7: .line 689
            iconst_1
            ireturn
        end local 1 // org.eclipse.collections.api.BooleanIterable source
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    8     1    source  Lorg/eclipse/collections/api/BooleanIterable;
            3    7     2  iterator  Lorg/eclipse/collections/api/iterator/BooleanIterator;
    MethodParameters:
        Name  Flags
      source  

  public org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet with(boolean);
    descriptor: (Z)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // boolean element
         0: .line 695
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_3
            if_icmpne 2
         1: .line 697
            aload 0 /* this */
            areturn
         2: .line 699
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* element */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.add:(Z)Z
            pop
         3: .line 700
            aload 0 /* this */
            areturn
        end local 1 // boolean element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    4     1  element  Z
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet without(boolean);
    descriptor: (Z)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // boolean element
         0: .line 706
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            ifne 2
         1: .line 708
            aload 0 /* this */
            areturn
         2: .line 710
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* element */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.remove:(Z)Z
            pop
         3: .line 711
            aload 0 /* this */
            areturn
        end local 1 // boolean element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    4     1  element  Z
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet withAll(org.eclipse.collections.api.BooleanIterable);
    descriptor: (Lorg/eclipse/collections/api/BooleanIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // org.eclipse.collections.api.BooleanIterable elements
         0: .line 717
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_3
            if_icmpne 2
         1: .line 719
            aload 0 /* this */
            areturn
         2: .line 721
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* elements */
            invokeinterface org.eclipse.collections.api.BooleanIterable.toArray:()[Z
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.addAll:([Z)Z
            pop
         3: .line 722
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.BooleanIterable elements
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    4     1  elements  Lorg/eclipse/collections/api/BooleanIterable;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet withoutAll(org.eclipse.collections.api.BooleanIterable);
    descriptor: (Lorg/eclipse/collections/api/BooleanIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // org.eclipse.collections.api.BooleanIterable elements
         0: .line 728
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            ifne 2
         1: .line 730
            aload 0 /* this */
            areturn
         2: .line 732
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* elements */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.removeAll:(Lorg/eclipse/collections/api/BooleanIterable;)Z
            pop
         3: .line 733
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.BooleanIterable elements
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    4     1  elements  Lorg/eclipse/collections/api/BooleanIterable;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.api.set.primitive.MutableBooleanSet asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 739
            new org.eclipse.collections.impl.set.mutable.primitive.UnmodifiableBooleanSet
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.UnmodifiableBooleanSet.<init>:(Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;)V
            areturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public org.eclipse.collections.api.set.primitive.MutableBooleanSet asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 745
            new org.eclipse.collections.impl.set.mutable.primitive.SynchronizedBooleanSet
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.SynchronizedBooleanSet.<init>:(Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;)V
            areturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public org.eclipse.collections.api.set.primitive.BooleanSet freeze();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/BooleanSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 751
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.toImmutable:()Lorg/eclipse/collections/api/set/primitive/ImmutableBooleanSet;
            areturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public org.eclipse.collections.api.set.primitive.ImmutableBooleanSet toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/ImmutableBooleanSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 757
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            tableswitch { // 0 - 3
                    0: 1
                    1: 2
                    2: 3
                    3: 4
              default: 5
          }
         1: .line 760
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.impl.factory.primitive.BooleanSets.immutable:Lorg/eclipse/collections/api/factory/set/primitive/ImmutableBooleanSetFactory;
            invokeinterface org.eclipse.collections.api.factory.set.primitive.ImmutableBooleanSetFactory.with:()Lorg/eclipse/collections/api/set/primitive/ImmutableBooleanSet;
            areturn
         2: .line 762
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.impl.factory.primitive.BooleanSets.immutable:Lorg/eclipse/collections/api/factory/set/primitive/ImmutableBooleanSetFactory;
            iconst_0
            invokeinterface org.eclipse.collections.api.factory.set.primitive.ImmutableBooleanSetFactory.with:(Z)Lorg/eclipse/collections/api/set/primitive/ImmutableBooleanSet;
            areturn
         3: .line 764
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.impl.factory.primitive.BooleanSets.immutable:Lorg/eclipse/collections/api/factory/set/primitive/ImmutableBooleanSetFactory;
            iconst_1
            invokeinterface org.eclipse.collections.api.factory.set.primitive.ImmutableBooleanSetFactory.with:(Z)Lorg/eclipse/collections/api/set/primitive/ImmutableBooleanSet;
            areturn
         4: .line 766
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.impl.factory.primitive.BooleanSets.immutable:Lorg/eclipse/collections/api/factory/set/primitive/ImmutableBooleanSetFactory;
            iconst_2
            newarray 4
            dup
            iconst_0
            iconst_0
            bastore
            dup
            iconst_1
            iconst_1
            bastore
            invokeinterface org.eclipse.collections.api.factory.set.primitive.ImmutableBooleanSetFactory.with:([Z)Lorg/eclipse/collections/api/set/primitive/ImmutableBooleanSet;
            areturn
         5: .line 768
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "Invalid state"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 775
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            tableswitch { // 0 - 3
                    0: 1
                    1: 2
                    2: 2
                    3: 3
              default: 4
          }
         1: .line 778
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 781
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
         3: .line 783
      StackMap locals:
      StackMap stack:
            iconst_2
            ireturn
         4: .line 785
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "Invalid state"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 792
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public boolean notEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 798
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // java.lang.Object obj
         0: .line 804
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 806
            iconst_1
            ireturn
         2: .line 809
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof org.eclipse.collections.api.set.primitive.BooleanSet
            ifne 4
         3: .line 811
            iconst_0
            ireturn
         4: .line 814
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast org.eclipse.collections.api.set.primitive.BooleanSet
            astore 2 /* other */
        start local 2 // org.eclipse.collections.api.set.primitive.BooleanSet other
         5: .line 815
            aload 0 /* this */
            iconst_0
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.contains:(Z)Z
            aload 2 /* other */
            iconst_0
            invokeinterface org.eclipse.collections.api.set.primitive.BooleanSet.contains:(Z)Z
            if_icmpne 6
            aload 0 /* this */
            iconst_1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.contains:(Z)Z
            aload 2 /* other */
            iconst_1
            invokeinterface org.eclipse.collections.api.set.primitive.BooleanSet.contains:(Z)Z
            if_icmpne 6
            iconst_1
            ireturn
      StackMap locals: org.eclipse.collections.api.set.primitive.BooleanSet
      StackMap stack:
         6: iconst_0
            ireturn
        end local 2 // org.eclipse.collections.api.set.primitive.BooleanSet other
        end local 1 // java.lang.Object obj
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    7     1    obj  Ljava/lang/Object;
            5    7     2  other  Lorg/eclipse/collections/api/set/primitive/BooleanSet;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 821
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            tableswitch { // 0 - 3
                    0: 1
                    1: 2
                    2: 3
                    3: 4
              default: 5
          }
         1: .line 824
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 826
      StackMap locals:
      StackMap stack:
            sipush 1237
            ireturn
         3: .line 828
      StackMap locals:
      StackMap stack:
            sipush 1231
            ireturn
         4: .line 830
      StackMap locals:
      StackMap stack:
            sipush 2468
            ireturn
         5: .line 832
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "Invalid state"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 839
            aload 0 /* this */
            ldc "["
            ldc ", "
            ldc "]"
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.makeString:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public java.lang.String makeString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 845
            aload 0 /* this */
            ldc ", "
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.makeString:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public java.lang.String makeString(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // java.lang.String separator
         0: .line 851
            aload 0 /* this */
            ldc ""
            aload 1 /* separator */
            ldc ""
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.makeString:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String separator
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    1     1  separator  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      separator  

  public java.lang.String makeString(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // java.lang.String start
        start local 2 // java.lang.String separator
        start local 3 // java.lang.String end
         0: .line 857
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 4 /* stringBuilder */
        start local 4 // java.lang.Appendable stringBuilder
         1: .line 858
            aload 0 /* this */
            aload 4 /* stringBuilder */
            aload 1 /* start */
            aload 2 /* separator */
            aload 3 /* end */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.appendString:(Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         2: .line 859
            aload 4 /* stringBuilder */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            areturn
        end local 4 // java.lang.Appendable stringBuilder
        end local 3 // java.lang.String end
        end local 2 // java.lang.String separator
        end local 1 // java.lang.String start
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    3     1          start  Ljava/lang/String;
            0    3     2      separator  Ljava/lang/String;
            0    3     3            end  Ljava/lang/String;
            1    3     4  stringBuilder  Ljava/lang/Appendable;
    MethodParameters:
           Name  Flags
      start      
      separator  
      end        

  public void appendString(java.lang.Appendable);
    descriptor: (Ljava/lang/Appendable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // java.lang.Appendable appendable
         0: .line 865
            aload 0 /* this */
            aload 1 /* appendable */
            ldc ", "
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.appendString:(Ljava/lang/Appendable;Ljava/lang/String;)V
         1: .line 866
            return
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    2     1  appendable  Ljava/lang/Appendable;
    MethodParameters:
            Name  Flags
      appendable  

  public void appendString(java.lang.Appendable, java.lang.String);
    descriptor: (Ljava/lang/Appendable;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // java.lang.Appendable appendable
        start local 2 // java.lang.String separator
         0: .line 871
            aload 0 /* this */
            aload 1 /* appendable */
            ldc ""
            aload 2 /* separator */
            ldc ""
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.appendString:(Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         1: .line 872
            return
        end local 2 // java.lang.String separator
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    2     1  appendable  Ljava/lang/Appendable;
            0    2     2   separator  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      appendable  
      separator   

  public void appendString(java.lang.Appendable, java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=5
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // java.lang.Appendable appendable
        start local 2 // java.lang.String start
        start local 3 // java.lang.String separator
        start local 4 // java.lang.String end
         0: .line 879
            aload 1 /* appendable */
            aload 2 /* start */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         1: .line 880
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            tableswitch { // 0 - 3
                    0: 2
                    1: 3
                    2: 5
                    3: 7
              default: 11
          }
         2: .line 883
      StackMap locals:
      StackMap stack:
            goto 12
         3: .line 885
      StackMap locals:
      StackMap stack:
            aload 1 /* appendable */
            iconst_0
            invokestatic java.lang.String.valueOf:(Z)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         4: .line 886
            goto 12
         5: .line 888
      StackMap locals:
      StackMap stack:
            aload 1 /* appendable */
            iconst_1
            invokestatic java.lang.String.valueOf:(Z)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         6: .line 889
            goto 12
         7: .line 891
      StackMap locals:
      StackMap stack:
            aload 1 /* appendable */
            iconst_0
            invokestatic java.lang.String.valueOf:(Z)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         8: .line 892
            aload 1 /* appendable */
            aload 3 /* separator */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         9: .line 893
            aload 1 /* appendable */
            iconst_1
            invokestatic java.lang.String.valueOf:(Z)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        10: .line 894
            goto 12
        11: .line 896
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "Invalid state"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        12: .line 898
      StackMap locals:
      StackMap stack:
            aload 1 /* appendable */
            aload 4 /* end */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        13: .line 899
            goto 16
        14: .line 900
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 5 /* e */
        start local 5 // java.io.IOException e
        15: .line 902
            new java.lang.RuntimeException
            dup
            aload 5 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.io.IOException e
        16: .line 904
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.lang.String end
        end local 3 // java.lang.String separator
        end local 2 // java.lang.String start
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   17     0        this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0   17     1  appendable  Ljava/lang/Appendable;
            0   17     2       start  Ljava/lang/String;
            0   17     3   separator  Ljava/lang/String;
            0   17     4         end  Ljava/lang/String;
           15   16     5           e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0    13      14  Class java.io.IOException
    MethodParameters:
            Name  Flags
      appendable  
      start       
      separator   
      end         

  public org.eclipse.collections.api.list.primitive.MutableBooleanList toList();
    descriptor: ()Lorg/eclipse/collections/api/list/primitive/MutableBooleanList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 909
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.list.mutable.primitive.BooleanArrayList.newList:(Lorg/eclipse/collections/api/BooleanIterable;)Lorg/eclipse/collections/impl/list/mutable/primitive/BooleanArrayList;
            areturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public org.eclipse.collections.api.set.primitive.MutableBooleanSet toSet();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 915
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.newSet:(Lorg/eclipse/collections/api/BooleanIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public org.eclipse.collections.api.bag.primitive.MutableBooleanBag toBag();
    descriptor: ()Lorg/eclipse/collections/api/bag/primitive/MutableBooleanBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 921
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.bag.mutable.primitive.BooleanHashBag.newBag:(Lorg/eclipse/collections/api/BooleanIterable;)Lorg/eclipse/collections/impl/bag/mutable/primitive/BooleanHashBag;
            areturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public org.eclipse.collections.api.LazyBooleanIterable asLazy();
    descriptor: ()Lorg/eclipse/collections/api/LazyBooleanIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
         0: .line 927
            new org.eclipse.collections.impl.lazy.primitive.LazyBooleanIterableAdapter
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.lazy.primitive.LazyBooleanIterableAdapter.<init>:(Lorg/eclipse/collections/api/BooleanIterable;)V
            areturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;

  public void writeExternal(java.io.ObjectOutput);
    descriptor: (Ljava/io/ObjectOutput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // java.io.ObjectOutput out
         0: .line 933
            aload 1 /* out */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.size:()I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         1: .line 934
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            tableswitch { // 0 - 3
                    0: 2
                    1: 3
                    2: 5
                    3: 7
              default: 10
          }
         2: .line 937
      StackMap locals:
      StackMap stack:
            return
         3: .line 939
      StackMap locals:
      StackMap stack:
            aload 1 /* out */
            iconst_0
            invokeinterface java.io.ObjectOutput.writeBoolean:(Z)V
         4: .line 940
            return
         5: .line 942
      StackMap locals:
      StackMap stack:
            aload 1 /* out */
            iconst_1
            invokeinterface java.io.ObjectOutput.writeBoolean:(Z)V
         6: .line 943
            return
         7: .line 945
      StackMap locals:
      StackMap stack:
            aload 1 /* out */
            iconst_0
            invokeinterface java.io.ObjectOutput.writeBoolean:(Z)V
         8: .line 946
            aload 1 /* out */
            iconst_1
            invokeinterface java.io.ObjectOutput.writeBoolean:(Z)V
         9: .line 947
            return
        10: .line 949
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "Invalid state"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 1 // java.io.ObjectOutput out
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0   11     1   out  Ljava/io/ObjectOutput;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  public void readExternal(java.io.ObjectInput);
    descriptor: (Ljava/io/ObjectInput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
        start local 1 // java.io.ObjectInput in
         0: .line 956
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 957
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 959
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readBoolean:()Z
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.add:(Z)Z
            pop
         4: .line 957
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            iload 2 /* size */
            if_icmplt 3
        end local 3 // int i
         6: .line 961
            return
        end local 2 // int size
        end local 1 // java.io.ObjectInput in
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            0    7     1    in  Ljava/io/ObjectInput;
            1    7     2  size  I
            2    6     3     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  public org.eclipse.collections.api.collection.primitive.ImmutableBooleanCollection toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/ImmutableBooleanCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.toImmutable:()Lorg/eclipse/collections/api/set/primitive/ImmutableBooleanSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableBooleanCollection with(boolean);
    descriptor: (Z)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.with:(Z)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.MutableBooleanSet with(boolean);
    descriptor: (Z)Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.with:(Z)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableBooleanCollection withAll(org.eclipse.collections.api.BooleanIterable);
    descriptor: (Lorg/eclipse/collections/api/BooleanIterable;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.withAll:(Lorg/eclipse/collections/api/BooleanIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.MutableBooleanSet withAll(org.eclipse.collections.api.BooleanIterable);
    descriptor: (Lorg/eclipse/collections/api/BooleanIterable;)Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.withAll:(Lorg/eclipse/collections/api/BooleanIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.BooleanIterable select(org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/api/BooleanIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableBooleanCollection select(org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.BooleanSet select(org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/api/set/primitive/BooleanSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.MutableBooleanSet select(org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableBooleanCollection withoutAll(org.eclipse.collections.api.BooleanIterable);
    descriptor: (Lorg/eclipse/collections/api/BooleanIterable;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.withoutAll:(Lorg/eclipse/collections/api/BooleanIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.MutableBooleanSet withoutAll(org.eclipse.collections.api.BooleanIterable);
    descriptor: (Lorg/eclipse/collections/api/BooleanIterable;)Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.withoutAll:(Lorg/eclipse/collections/api/BooleanIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable collect(org.eclipse.collections.api.block.function.primitive.BooleanToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanToObjectFunction;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.BooleanToObjectFunction
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.collect:(Lorg/eclipse/collections/api/block/function/primitive/BooleanToObjectFunction;)Lorg/eclipse/collections/api/set/MutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection collect(org.eclipse.collections.api.block.function.primitive.BooleanToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanToObjectFunction;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.BooleanToObjectFunction
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.collect:(Lorg/eclipse/collections/api/block/function/primitive/BooleanToObjectFunction;)Lorg/eclipse/collections/api/set/MutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.SetIterable collect(org.eclipse.collections.api.block.function.primitive.BooleanToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanToObjectFunction;)Lorg/eclipse/collections/api/set/SetIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.BooleanToObjectFunction
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.collect:(Lorg/eclipse/collections/api/block/function/primitive/BooleanToObjectFunction;)Lorg/eclipse/collections/api/set/MutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableBooleanCollection asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.asSynchronized:()Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.BooleanSet tap(org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/BooleanProcedure;)Lorg/eclipse/collections/api/set/primitive/BooleanSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokeinterface org.eclipse.collections.api.set.primitive.MutableBooleanSet.tap:(Lorg/eclipse/collections/api/block/procedure/primitive/BooleanProcedure;)Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableBooleanCollection tap(org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/BooleanProcedure;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokeinterface org.eclipse.collections.api.set.primitive.MutableBooleanSet.tap:(Lorg/eclipse/collections/api/block/procedure/primitive/BooleanProcedure;)Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.BooleanIterable tap(org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/BooleanProcedure;)Lorg/eclipse/collections/api/BooleanIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokeinterface org.eclipse.collections.api.set.primitive.MutableBooleanSet.tap:(Lorg/eclipse/collections/api/block/procedure/primitive/BooleanProcedure;)Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.BooleanIterable reject(org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/api/BooleanIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableBooleanCollection reject(org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.BooleanSet reject(org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/api/set/primitive/BooleanSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.MutableBooleanSet reject(org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/BooleanPredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableBooleanCollection asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.asUnmodifiable:()Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableBooleanCollection newEmpty();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokeinterface org.eclipse.collections.api.set.primitive.MutableBooleanSet.newEmpty:()Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableBooleanCollection without(boolean);
    descriptor: (Z)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.without:(Z)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.MutableBooleanSet without(boolean);
    descriptor: (Z)Lorg/eclipse/collections/api/set/primitive/MutableBooleanSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.without:(Z)Lorg/eclipse/collections/impl/set/mutable/primitive/BooleanHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.iterator.BooleanIterator booleanIterator();
    descriptor: ()Lorg/eclipse/collections/api/iterator/BooleanIterator;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.booleanIterator:()Lorg/eclipse/collections/api/iterator/MutableBooleanIterator;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "BooleanHashSet.java"
NestMembers:
  org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet$EmptyBooleanIterator  org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet$FalseBooleanIterator  org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet$FalseTrueBooleanIterator  org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet$TrueBooleanIterator
InnerClasses:
  private EmptyBooleanIterator = org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet$EmptyBooleanIterator of org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet
  private FalseBooleanIterator = org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet$FalseBooleanIterator of org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet
  private FalseTrueBooleanIterator = org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet$FalseTrueBooleanIterator of org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet
  private TrueBooleanIterator = org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet$TrueBooleanIterator of org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet