public class org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag extends org.eclipse.collections.impl.collection.mutable.primitive.AbstractSynchronizedDoubleCollection implements org.eclipse.collections.api.bag.primitive.MutableDoubleBag
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag
  super_class: org.eclipse.collections.impl.collection.mutable.primitive.AbstractSynchronizedDoubleCollection
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public void <init>(org.eclipse.collections.api.bag.primitive.MutableDoubleBag);
    descriptor: (Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
        start local 1 // org.eclipse.collections.api.bag.primitive.MutableDoubleBag bag
         0: .line 51
            aload 0 /* this */
            aload 1 /* bag */
            invokespecial org.eclipse.collections.impl.collection.mutable.primitive.AbstractSynchronizedDoubleCollection.<init>:(Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)V
         1: .line 52
            return
        end local 1 // org.eclipse.collections.api.bag.primitive.MutableDoubleBag bag
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            0    2     1   bag  Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
    MethodParameters:
      Name  Flags
      bag   

  public void <init>(org.eclipse.collections.api.bag.primitive.MutableDoubleBag, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
        start local 1 // org.eclipse.collections.api.bag.primitive.MutableDoubleBag bag
        start local 2 // java.lang.Object newLock
         0: .line 56
            aload 0 /* this */
            aload 1 /* bag */
            aload 2 /* newLock */
            invokespecial org.eclipse.collections.impl.collection.mutable.primitive.AbstractSynchronizedDoubleCollection.<init>:(Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;Ljava/lang/Object;)V
         1: .line 57
            return
        end local 2 // java.lang.Object newLock
        end local 1 // org.eclipse.collections.api.bag.primitive.MutableDoubleBag bag
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            0    2     1      bag  Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            0    2     2  newLock  Ljava/lang/Object;
    MethodParameters:
         Name  Flags
      bag      
      newLock  

  private org.eclipse.collections.api.bag.primitive.MutableDoubleBag getMutableDoubleBag();
    descriptor: ()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
         0: .line 61
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getDoubleCollection:()Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
            checkcast org.eclipse.collections.api.bag.primitive.MutableDoubleBag
            areturn
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;

  public org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag with(double);
    descriptor: (D)Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
        start local 1 // double element
         0: .line 67
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 69
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            dload 1 /* element */
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.add:(D)Z
            pop
         2: .line 67
            aload 3
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag double java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 3
            monitorexit
         5: athrow
         6: .line 71
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // double element
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            0    7     1  element  D
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag without(double);
    descriptor: (D)Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
        start local 1 // double element
         0: .line 77
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 79
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            dload 1 /* element */
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.remove:(D)Z
            pop
         2: .line 77
            aload 3
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag double java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 3
            monitorexit
         5: athrow
         6: .line 81
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // double element
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            0    7     1  element  D
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag withAll(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
        start local 1 // org.eclipse.collections.api.DoubleIterable elements
         0: .line 87
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 89
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            aload 1 /* elements */
            invokeinterface org.eclipse.collections.api.DoubleIterable.toArray:()[D
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.addAll:([D)Z
            pop
         2: .line 87
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag org.eclipse.collections.api.DoubleIterable java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 91
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.DoubleIterable elements
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            0    7     1  elements  Lorg/eclipse/collections/api/DoubleIterable;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag withoutAll(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
        start local 1 // org.eclipse.collections.api.DoubleIterable elements
         0: .line 97
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 99
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            aload 1 /* elements */
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.removeAll:(Lorg/eclipse/collections/api/DoubleIterable;)Z
            pop
         2: .line 97
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag org.eclipse.collections.api.DoubleIterable java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 101
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.DoubleIterable elements
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            0    7     1  elements  Lorg/eclipse/collections/api/DoubleIterable;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
          Name  Flags
      elements  

  public void addOccurrences(double, int);
    descriptor: (DI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
        start local 1 // double item
        start local 3 // int occurrences
         0: .line 107
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 109
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            dload 1 /* item */
            iload 3 /* occurrences */
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.addOccurrences:(DI)V
         2: .line 107
            aload 4
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag double int java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 4
            monitorexit
         5: athrow
         6: .line 111
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int occurrences
        end local 1 // double item
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            0    7     1         item  D
            0    7     3  occurrences  I
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
             Name  Flags
      item         
      occurrences  

  public boolean removeOccurrences(double, int);
    descriptor: (DI)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
        start local 1 // double item
        start local 3 // int occurrences
         0: .line 116
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 118
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            dload 1 /* item */
            iload 3 /* occurrences */
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.removeOccurrences:(DI)Z
            aload 4
            monitorexit
         2: ireturn
         3: .line 116
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag double int java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         4: athrow
        end local 3 // int occurrences
        end local 1 // double item
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            0    5     1         item  D
            0    5     3  occurrences  I
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    MethodParameters:
             Name  Flags
      item         
      occurrences  

  public int sizeDistinct();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
         0: .line 125
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 127
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.sizeDistinct:()I
            aload 1
            monitorexit
         2: ireturn
         3: .line 125
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public int occurrencesOf(double);
    descriptor: (D)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
        start local 1 // double item
         0: .line 134
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 136
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            dload 1 /* item */
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.occurrencesOf:(D)I
            aload 3
            monitorexit
         2: ireturn
         3: .line 134
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag double java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         4: athrow
        end local 1 // double item
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            0    5     1  item  D
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    MethodParameters:
      Name  Flags
      item  

  public void forEachWithOccurrences(org.eclipse.collections.api.block.procedure.primitive.DoubleIntProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/DoubleIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleIntProcedure procedure
         0: .line 143
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 145
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            aload 1 /* procedure */
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.forEachWithOccurrences:(Lorg/eclipse/collections/api/block/procedure/primitive/DoubleIntProcedure;)V
         2: .line 143
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag org.eclipse.collections.api.block.procedure.primitive.DoubleIntProcedure java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 147
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleIntProcedure procedure
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            0    7     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/DoubleIntProcedure;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
           Name  Flags
      procedure  

  public org.eclipse.collections.api.bag.primitive.MutableDoubleBag select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
         0: .line 152
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 154
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 152
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag org.eclipse.collections.api.block.predicate.primitive.DoublePredicate java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.bag.primitive.MutableDoubleBag selectByOccurrences(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
         0: .line 161
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 163
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.selectByOccurrences:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 161
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag org.eclipse.collections.api.block.predicate.primitive.IntPredicate java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.set.primitive.MutableDoubleSet selectUnique();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
         0: .line 170
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 172
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.selectUnique:()Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
            aload 1
            monitorexit
         2: areturn
         3: .line 170
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.primitive.DoubleIntPair> topOccurrences(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
        start local 1 // int count
         0: .line 179
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 181
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            iload 1 /* count */
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.topOccurrences:(I)Lorg/eclipse/collections/api/list/MutableList;
            aload 2
            monitorexit
         2: areturn
         3: .line 179
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag int java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            0    5     1  count  I
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (I)Lorg/eclipse/collections/api/list/MutableList<Lorg/eclipse/collections/api/tuple/primitive/DoubleIntPair;>;
    MethodParameters:
       Name  Flags
      count  

  public org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.primitive.DoubleIntPair> bottomOccurrences(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
        start local 1 // int count
         0: .line 188
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 190
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            iload 1 /* count */
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.bottomOccurrences:(I)Lorg/eclipse/collections/api/list/MutableList;
            aload 2
            monitorexit
         2: areturn
         3: .line 188
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag int java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            0    5     1  count  I
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: (I)Lorg/eclipse/collections/api/list/MutableList<Lorg/eclipse/collections/api/tuple/primitive/DoubleIntPair;>;
    MethodParameters:
       Name  Flags
      count  

  public org.eclipse.collections.api.bag.primitive.MutableDoubleBag reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
         0: .line 197
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 199
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 197
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag org.eclipse.collections.api.block.predicate.primitive.DoublePredicate java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            0    5     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    MethodParameters:
           Name  Flags
      predicate  

  public <V> org.eclipse.collections.api.bag.MutableBag<V> collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction function
         0: .line 206
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 208
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.collect:(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/bag/MutableBag;
            aload 2
            monitorexit
         2: areturn
         3: .line 206
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction function
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            0    5     1  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction<+TV;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction<+TV;>;)Lorg/eclipse/collections/api/bag/MutableBag<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
        start local 1 // java.lang.Object otherBag
         0: .line 215
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 217
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            aload 1 /* otherBag */
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.equals:(Ljava/lang/Object;)Z
            aload 2
            monitorexit
         2: ireturn
         3: .line 215
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.lang.Object otherBag
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            0    5     1  otherBag  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    MethodParameters:
          Name  Flags
      otherBag  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
         0: .line 224
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 226
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.hashCode:()I
            aload 1
            monitorexit
         2: ireturn
         3: .line 224
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public org.eclipse.collections.api.LazyDoubleIterable asLazy();
    descriptor: ()Lorg/eclipse/collections/api/LazyDoubleIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
         0: .line 233
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 235
            new org.eclipse.collections.impl.lazy.primitive.LazyDoubleIterableAdapter
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.lazy.primitive.LazyDoubleIterableAdapter.<init>:(Lorg/eclipse/collections/api/DoubleIterable;)V
            aload 1
            monitorexit
         2: areturn
         3: .line 233
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public org.eclipse.collections.api.bag.primitive.MutableDoubleBag asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
         0: .line 242
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 244
            new org.eclipse.collections.impl.bag.mutable.primitive.UnmodifiableDoubleBag
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.bag.mutable.primitive.UnmodifiableDoubleBag.<init>:(Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;)V
            aload 1
            monitorexit
         2: areturn
         3: .line 242
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public org.eclipse.collections.api.bag.primitive.MutableDoubleBag asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
         0: .line 251
            aload 0 /* this */
            areturn
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;

  public org.eclipse.collections.api.bag.primitive.ImmutableDoubleBag toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/bag/primitive/ImmutableDoubleBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
         0: .line 257
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 259
            getstatic org.eclipse.collections.impl.factory.primitive.DoubleBags.immutable:Lorg/eclipse/collections/api/factory/bag/primitive/ImmutableDoubleBagFactory;
            aload 0 /* this */
            invokeinterface org.eclipse.collections.api.factory.bag.primitive.ImmutableDoubleBagFactory.withAll:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/api/bag/primitive/ImmutableDoubleBag;
            aload 1
            monitorexit
         2: areturn
         3: .line 257
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public org.eclipse.collections.api.bag.primitive.MutableDoubleBag newEmpty();
    descriptor: ()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
         0: .line 269
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getLock:()Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 271
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.getMutableDoubleBag:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            invokeinterface org.eclipse.collections.api.bag.primitive.MutableDoubleBag.newEmpty:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            aload 1
            monitorexit
         2: areturn
         3: .line 269
      StackMap locals: org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public org.eclipse.collections.api.bag.primitive.DoubleBag selectByOccurrences(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/primitive/DoubleBag;
    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.bag.mutable.primitive.SynchronizedDoubleBag.selectByOccurrences:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.ImmutableDoubleCollection toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/ImmutableDoubleCollection;
    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.bag.mutable.primitive.SynchronizedDoubleBag.toImmutable:()Lorg/eclipse/collections/api/bag/primitive/ImmutableDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.MutableDoubleBag with(double);
    descriptor: (D)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            dload 1
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.with:(D)Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection with(double);
    descriptor: (D)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            dload 1
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.with:(D)Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.MutableDoubleBag withAll(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
    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.bag.mutable.primitive.SynchronizedDoubleBag.withAll:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection withAll(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    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.bag.mutable.primitive.SynchronizedDoubleBag.withAll:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.DoubleBag select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/bag/primitive/DoubleBag;
    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.bag.mutable.primitive.SynchronizedDoubleBag.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    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.bag.mutable.primitive.SynchronizedDoubleBag.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.DoubleIterable select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/DoubleIterable;
    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.bag.mutable.primitive.SynchronizedDoubleBag.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.MutableDoubleBag withoutAll(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
    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.bag.mutable.primitive.SynchronizedDoubleBag.withoutAll:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection withoutAll(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    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.bag.mutable.primitive.SynchronizedDoubleBag.withoutAll:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable topOccurrences(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/ListIterable;
    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.bag.mutable.primitive.SynchronizedDoubleBag.topOccurrences:(I)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/bag/Bag;
    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.DoubleToObjectFunction
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.collect:(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)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.DoubleToObjectFunction
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.collect:(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)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.DoubleToObjectFunction
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.collect:(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable bottomOccurrences(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/ListIterable;
    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.bag.mutable.primitive.SynchronizedDoubleBag.bottomOccurrences:(I)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    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.bag.mutable.primitive.SynchronizedDoubleBag.asSynchronized:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.DoubleBag tap(org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;)Lorg/eclipse/collections/api/bag/primitive/DoubleBag;
    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.bag.primitive.MutableDoubleBag.tap:(Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.DoubleBag reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/bag/primitive/DoubleBag;
    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.bag.mutable.primitive.SynchronizedDoubleBag.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    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.bag.mutable.primitive.SynchronizedDoubleBag.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.DoubleIterable reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/DoubleIterable;
    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.bag.mutable.primitive.SynchronizedDoubleBag.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    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.bag.mutable.primitive.SynchronizedDoubleBag.asUnmodifiable:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection newEmpty();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    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.bag.mutable.primitive.SynchronizedDoubleBag.newEmpty:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.MutableDoubleBag without(double);
    descriptor: (D)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            dload 1
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.without:(D)Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection without(double);
    descriptor: (D)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            dload 1
            invokevirtual org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedDoubleBag.without:(D)Lorg/eclipse/collections/impl/bag/mutable/primitive/SynchronizedDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.DoubleSet selectUnique();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/DoubleSet;
    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.bag.mutable.primitive.SynchronizedDoubleBag.selectUnique:()Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.DoubleBag selectDuplicates();
    descriptor: ()Lorg/eclipse/collections/api/bag/primitive/DoubleBag;
    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.bag.primitive.MutableDoubleBag.selectDuplicates:()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "SynchronizedDoubleBag.java"