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 190
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 192
            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 194
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 196
            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 197
            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 201
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.<init>:()V
         1: .line 202
            aload 0 /* this */
            aload 1 /* elements */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.addAll:([Z)Z
            pop
         2: .line 203
            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 207
            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 212
            aload 0 /* source */
            instanceof org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet
            ifeq 2
         1: .line 214
            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 217
      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 223
            aload 0 /* this */
            iload 1 /* element */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.contains:(Z)Z
            ifeq 2
         1: .line 225
            iconst_0
            ireturn
         2: .line 227
      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 228
            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 234
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            istore 2 /* initialState */
        start local 2 // int initialState
         1: .line 235
            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 237
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_3
            if_icmpne 6
         4: .line 239
            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 241
      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 235
            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 243
            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 249
            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 255
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.contains:(Z)Z
            ifne 2
         1: .line 257
            iconst_0
            ireturn
         2: .line 259
      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 260
            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 261
            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 267
            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 269
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 271
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* modified */
        start local 2 // boolean modified
         3: .line 272
            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 273
            goto 10
         5: .line 275
      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 277
            iload 2 /* modified */
            ireturn
         7: .line 279
      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 280
            aload 0 /* this */
            iload 4 /* item */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.remove:(Z)Z
            ifeq 10
         9: .line 282
            iconst_1
            istore 2 /* modified */
        end local 4 // boolean item
        10: .line 273
      StackMap locals:
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.BooleanIterator.hasNext:()Z
            ifne 5
        11: .line 285
            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 291
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.isEmpty:()Z
            ifne 1
            aload 1 /* source */
            arraylength
            ifne 2
         1: .line 293
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 295
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* modified */
        start local 2 // boolean modified
         3: .line 296
            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 298
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            ifne 7
         6: .line 300
            iload 2 /* modified */
            ireturn
         7: .line 302
      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 304
            iconst_1
            istore 2 /* modified */
        end local 3 // boolean item
         9: .line 296
      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 307
            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 313
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            ifeq 4
         1: .line 314
            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 315
      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 316
      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 318
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         5: .line 320
      StackMap locals:
      StackMap stack:
            aload 1 /* source */
            iconst_1
            invokeinterface org.eclipse.collections.api.BooleanIterable.contains:(Z)Z
            ifeq 8
         6: .line 322
            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 323
            goto 12
         8: .line 324
      StackMap locals:
      StackMap stack:
            aload 1 /* source */
            iconst_0
            invokeinterface org.eclipse.collections.api.BooleanIterable.contains:(Z)Z
            ifeq 11
         9: .line 326
            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 327
            goto 12
        11: .line 330
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
        12: .line 332
      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 338
            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 344
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
         1: .line 345
            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 350
            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 353
      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 355
      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 357
      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 359
      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 361
      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 368
            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 369
            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 377
            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 380
      StackMap locals:
      StackMap stack:
            return
         2: .line 382
      StackMap locals:
      StackMap stack:
            aload 1 /* procedure */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure.value:(Z)V
         3: .line 383
            return
         4: .line 385
      StackMap locals:
      StackMap stack:
            aload 1 /* procedure */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure.value:(Z)V
         5: .line 386
            return
         6: .line 388
      StackMap locals:
      StackMap stack:
            aload 1 /* procedure */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure.value:(Z)V
         7: .line 389
            aload 1 /* procedure */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure.value:(Z)V
         8: .line 390
            return
         9: .line 392
      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 399
            aload 1 /* injectedValue */
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 400
            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 403
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 3 /* result */
            areturn
         3: .line 405
      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 406
            aload 3 /* result */
            areturn
         5: .line 408
      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 409
            aload 3 /* result */
            areturn
         7: .line 411
      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 412
            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 413
            aload 3 /* result */
            areturn
        10: .line 415
      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 422
            iload 1 /* size */
            ifgt 2
         1: .line 424
            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 426
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.impl.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 427
            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 430
      StackMap locals: org.eclipse.collections.api.list.MutableList
      StackMap stack:
            aload 2 /* result */
            areturn
         5: .line 432
      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 433
            aload 2 /* result */
            areturn
         7: .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_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 436
            aload 2 /* result */
            areturn
         9: .line 438
      StackMap locals:
      StackMap stack:
            iload 1 /* size */
            iconst_1
            if_icmpne 13
        10: .line 440
            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 441
            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 442
            goto 14
        13: .line 445
      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 447
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            areturn
        15: .line 449
      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 456
            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 459
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 461
      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 463
      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 465
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         9: .line 466
            aload 1 /* predicate */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate.accept:(Z)Z
            ifeq 11
        10: .line 468
            iinc 2 /* count */ 1
        11: .line 470
      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 472
            iinc 2 /* count */ 1
        13: .line 474
      StackMap locals:
      StackMap stack:
            iload 2 /* count */
            ireturn
        end local 2 // int count
        14: .line 476
      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 483
            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 489
            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 495
            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 501
            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 502
            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 505
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet
      StackMap stack:
            aload 2 /* set */
            areturn
         3: .line 507
      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 509
            aload 2 /* set */
            iconst_0
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.add:(Z)Z
            pop
         5: .line 511
      StackMap locals:
      StackMap stack:
            aload 2 /* set */
            areturn
         6: .line 513
      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 515
            aload 2 /* set */
            iconst_1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.add:(Z)Z
            pop
         8: .line 517
      StackMap locals:
      StackMap stack:
            aload 2 /* set */
            areturn
         9: .line 519
      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 521
            aload 2 /* set */
            iconst_0
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.add:(Z)Z
            pop
        11: .line 523
      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 525
            aload 2 /* set */
            iconst_1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.add:(Z)Z
            pop
        13: .line 527
      StackMap locals:
      StackMap stack:
            aload 2 /* set */
            areturn
        14: .line 529
      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 536
            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 542
            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 545
      StackMap locals:
      StackMap stack:
            iload 2 /* ifNone */
            ireturn
         2: .line 547
      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 549
      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 551
      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 553
            iconst_0
            ireturn
         8: .line 555
      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 557
            iconst_1
            ireturn
        10: .line 559
      StackMap locals:
      StackMap stack:
            iload 2 /* ifNone */
            ireturn
        11: .line 561
      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 568
            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 569
            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 572
      StackMap locals: org.eclipse.collections.impl.set.mutable.UnifiedSet
      StackMap stack:
            aload 2 /* target */
            areturn
         3: .line 574
      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 576
      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 578
      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 579
            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 580
            aload 2 /* target */
            areturn
         8: .line 582
      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 589
            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 592
      StackMap locals:
      StackMap stack:
            iconst_0
            newarray 4
            areturn
         2: .line 594
      StackMap locals:
      StackMap stack:
            iconst_1
            newarray 4
            areturn
         3: .line 596
      StackMap locals:
      StackMap stack:
            iconst_1
            newarray 4
            dup
            iconst_0
            iconst_1
            bastore
            areturn
         4: .line 598
      StackMap locals:
      StackMap stack:
            iconst_2
            newarray 4
            dup
            iconst_1
            iconst_1
            bastore
            areturn
         5: .line 600
      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 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 607
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_3
            if_icmpne 2
         1: .line 609
            iconst_1
            ireturn
         2: .line 611
      StackMap locals:
      StackMap stack:
            iload 1 /* value */
            ifeq 5
         3: .line 613
            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 615
      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 621
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_3
            if_icmpne 2
         1: .line 623
            iconst_1
            ireturn
         2: .line 625
      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 627
            aload 0 /* this */
            iload 2 /* item */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.contains:(Z)Z
            ifne 6
         5: .line 629
            iconst_0
            ireturn
        end local 2 // boolean item
         6: .line 625
      StackMap locals:
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
         7: iload 3
            iload 4
            if_icmplt 3
         8: .line 632
            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 638
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_3
            if_icmpne 2
         1: .line 640
            iconst_1
            ireturn
         2: .line 642
      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 644
      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 646
            iconst_0
            ireturn
         6: .line 642
      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 649
            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 655
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_3
            if_icmpne 2
         1: .line 657
            aload 0 /* this */
            areturn
         2: .line 659
      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 660
            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 666
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            ifne 2
         1: .line 668
            aload 0 /* this */
            areturn
         2: .line 670
      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 671
            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 677
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            iconst_3
            if_icmpne 2
         1: .line 679
            aload 0 /* this */
            areturn
         2: .line 681
      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 682
            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 688
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.BooleanHashSet.state:I
            ifne 2
         1: .line 690
            aload 0 /* this */
            areturn
         2: .line 692
      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 693
            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 699
            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 705
            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 711
            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 717
            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 720
      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 722
      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 724
      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 726
      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 728
      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 735
            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 738
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 741
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
         3: .line 743
      StackMap locals:
      StackMap stack:
            iconst_2
            ireturn
         4: .line 745
      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 752
            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 758
            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 764
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 766
            iconst_1
            ireturn
         2: .line 769
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof org.eclipse.collections.api.set.primitive.BooleanSet
            ifne 4
         3: .line 771
            iconst_0
            ireturn
         4: .line 774
      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 775
            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 781
            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 784
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 786
      StackMap locals:
      StackMap stack:
            sipush 1237
            ireturn
         3: .line 788
      StackMap locals:
      StackMap stack:
            sipush 1231
            ireturn
         4: .line 790
      StackMap locals:
      StackMap stack:
            sipush 2468
            ireturn
         5: .line 792
      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 799
            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 805
            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 811
            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 817
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 4 /* stringBuilder */
        start local 4 // java.lang.Appendable stringBuilder
         1: .line 818
            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 819
            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 825
            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 826
            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 831
            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 832
            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 839
            aload 1 /* appendable */
            aload 2 /* start */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         1: .line 840
            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 843
      StackMap locals:
      StackMap stack:
            goto 12
         3: .line 845
      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 846
            goto 12
         5: .line 848
      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 849
            goto 12
         7: .line 851
      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 852
            aload 1 /* appendable */
            aload 3 /* separator */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         9: .line 853
            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 854
            goto 12
        11: .line 856
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "Invalid state"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        12: .line 858
      StackMap locals:
      StackMap stack:
            aload 1 /* appendable */
            aload 4 /* end */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        13: .line 859
            goto 16
        14: .line 860
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 5 /* e */
        start local 5 // java.io.IOException e
        15: .line 862
            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 864
      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 869
            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 875
            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 881
            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 887
            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 893
            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 894
            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 897
      StackMap locals:
      StackMap stack:
            return
         3: .line 899
      StackMap locals:
      StackMap stack:
            aload 1 /* out */
            iconst_0
            invokeinterface java.io.ObjectOutput.writeBoolean:(Z)V
         4: .line 900
            return
         5: .line 902
      StackMap locals:
      StackMap stack:
            aload 1 /* out */
            iconst_1
            invokeinterface java.io.ObjectOutput.writeBoolean:(Z)V
         6: .line 903
            return
         7: .line 905
      StackMap locals:
      StackMap stack:
            aload 1 /* out */
            iconst_0
            invokeinterface java.io.ObjectOutput.writeBoolean:(Z)V
         8: .line 906
            aload 1 /* out */
            iconst_1
            invokeinterface java.io.ObjectOutput.writeBoolean:(Z)V
         9: .line 907
            return
        10: .line 909
      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 916
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 917
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 919
      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 917
            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 921
            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