public interface it.unimi.dsi.fastutil.booleans.BooleanCollection extends java.util.Collection<java.lang.Boolean>, it.unimi.dsi.fastutil.booleans.BooleanIterable
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: it.unimi.dsi.fastutil.booleans.BooleanCollection
  super_class: java.lang.Object
{
  public abstract it.unimi.dsi.fastutil.booleans.BooleanIterator iterator();
    descriptor: ()Lit/unimi/dsi/fastutil/booleans/BooleanIterator;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean add(boolean);
    descriptor: (Z)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      key   

  public abstract boolean contains(boolean);
    descriptor: (Z)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      key   

  public abstract boolean rem(boolean);
    descriptor: (Z)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      key   

  public boolean add(java.lang.Boolean);
    descriptor: (Ljava/lang/Boolean;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // it.unimi.dsi.fastutil.booleans.BooleanCollection this
        start local 1 // java.lang.Boolean key
         0: .line 76
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual java.lang.Boolean.booleanValue:()Z
            invokeinterface it.unimi.dsi.fastutil.booleans.BooleanCollection.add:(Z)Z
            ireturn
        end local 1 // java.lang.Boolean key
        end local 0 // it.unimi.dsi.fastutil.booleans.BooleanCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lit/unimi/dsi/fastutil/booleans/BooleanCollection;
            0    1     1   key  Ljava/lang/Boolean;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      key   final

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // it.unimi.dsi.fastutil.booleans.BooleanCollection this
        start local 1 // java.lang.Object key
         0: .line 86
            aload 1 /* key */
            ifnonnull 2
         1: .line 87
            iconst_0
            ireturn
         2: .line 88
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* key */
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            invokeinterface it.unimi.dsi.fastutil.booleans.BooleanCollection.contains:(Z)Z
            ireturn
        end local 1 // java.lang.Object key
        end local 0 // it.unimi.dsi.fastutil.booleans.BooleanCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/booleans/BooleanCollection;
            0    3     1   key  Ljava/lang/Object;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      key   final

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // it.unimi.dsi.fastutil.booleans.BooleanCollection this
        start local 1 // java.lang.Object key
         0: .line 98
            aload 1 /* key */
            ifnonnull 2
         1: .line 99
            iconst_0
            ireturn
         2: .line 100
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* key */
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            invokeinterface it.unimi.dsi.fastutil.booleans.BooleanCollection.rem:(Z)Z
            ireturn
        end local 1 // java.lang.Object key
        end local 0 // it.unimi.dsi.fastutil.booleans.BooleanCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/booleans/BooleanCollection;
            0    3     1   key  Ljava/lang/Object;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      key   final

  public abstract boolean[] toBooleanArray();
    descriptor: ()[Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean[] toBooleanArray(boolean[]);
    descriptor: ([Z)[Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      a     

  public abstract boolean[] toArray(boolean[]);
    descriptor: ([Z)[Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      a     

  public abstract boolean addAll(it.unimi.dsi.fastutil.booleans.BooleanCollection);
    descriptor: (Lit/unimi/dsi/fastutil/booleans/BooleanCollection;)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      c     

  public abstract boolean containsAll(it.unimi.dsi.fastutil.booleans.BooleanCollection);
    descriptor: (Lit/unimi/dsi/fastutil/booleans/BooleanCollection;)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      c     

  public abstract boolean removeAll(it.unimi.dsi.fastutil.booleans.BooleanCollection);
    descriptor: (Lit/unimi/dsi/fastutil/booleans/BooleanCollection;)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      c     

  public abstract boolean retainAll(it.unimi.dsi.fastutil.booleans.BooleanCollection);
    descriptor: (Lit/unimi/dsi/fastutil/booleans/BooleanCollection;)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      c     

  public java.util.Iterator iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokeinterface it.unimi.dsi.fastutil.booleans.BooleanCollection.iterator:()Lit/unimi/dsi/fastutil/booleans/BooleanIterator;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public boolean add(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Boolean
            invokeinterface it.unimi.dsi.fastutil.booleans.BooleanCollection.add:(Ljava/lang/Boolean;)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Ljava/util/Collection<Ljava/lang/Boolean;>;Lit/unimi/dsi/fastutil/booleans/BooleanIterable;
SourceFile: "BooleanCollection.java"