public final class com.google.common.primitives.ImmutableDoubleArray$Builder
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.google.common.primitives.ImmutableDoubleArray$Builder
  super_class: java.lang.Object
{
  private double[] array;
    descriptor: [D
    flags: (0x0002) ACC_PRIVATE

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

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
        start local 1 // int initialCapacity
         0: .line 218
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 216
            aload 0 /* this */
            iconst_0
            putfield com.google.common.primitives.ImmutableDoubleArray$Builder.count:I
         2: .line 219
            aload 0 /* this */
            iload 1 /* initialCapacity */
            newarray 7
            putfield com.google.common.primitives.ImmutableDoubleArray$Builder.array:[D
         3: .line 220
            return
        end local 1 // int initialCapacity
        end local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
            0    4     1  initialCapacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public com.google.common.primitives.ImmutableDoubleArray$Builder add(double);
    descriptor: (D)Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
        start local 1 // double value
         0: .line 227
            aload 0 /* this */
            iconst_1
            invokevirtual com.google.common.primitives.ImmutableDoubleArray$Builder.ensureRoomFor:(I)V
         1: .line 228
            aload 0 /* this */
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.array:[D
            aload 0 /* this */
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.count:I
            dload 1 /* value */
            dastore
         2: .line 229
            aload 0 /* this */
            dup
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.count:I
            iconst_1
            iadd
            putfield com.google.common.primitives.ImmutableDoubleArray$Builder.count:I
         3: .line 230
            aload 0 /* this */
            areturn
        end local 1 // double value
        end local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
            0    4     1  value  D
    MethodParameters:
       Name  Flags
      value  

  public com.google.common.primitives.ImmutableDoubleArray$Builder addAll(double[]);
    descriptor: ([D)Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
        start local 1 // double[] values
         0: .line 238
            aload 0 /* this */
            aload 1 /* values */
            arraylength
            invokevirtual com.google.common.primitives.ImmutableDoubleArray$Builder.ensureRoomFor:(I)V
         1: .line 239
            aload 1 /* values */
            iconst_0
            aload 0 /* this */
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.array:[D
            aload 0 /* this */
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.count:I
            aload 1 /* values */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 240
            aload 0 /* this */
            dup
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.count:I
            aload 1 /* values */
            arraylength
            iadd
            putfield com.google.common.primitives.ImmutableDoubleArray$Builder.count:I
         3: .line 241
            aload 0 /* this */
            areturn
        end local 1 // double[] values
        end local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
            0    4     1  values  [D
    MethodParameters:
        Name  Flags
      values  

  public com.google.common.primitives.ImmutableDoubleArray$Builder addAll(java.lang.Iterable<java.lang.Double>);
    descriptor: (Ljava/lang/Iterable;)Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
        start local 1 // java.lang.Iterable values
         0: .line 249
            aload 1 /* values */
            instanceof java.util.Collection
            ifeq 2
         1: .line 250
            aload 0 /* this */
            aload 1 /* values */
            checkcast java.util.Collection
            invokevirtual com.google.common.primitives.ImmutableDoubleArray$Builder.addAll:(Ljava/util/Collection;)Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
            areturn
         2: .line 252
      StackMap locals:
      StackMap stack:
            aload 1 /* values */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: com.google.common.primitives.ImmutableDoubleArray$Builder java.lang.Iterable top java.util.Iterator
      StackMap stack:
         3: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Double
            astore 2 /* value */
        start local 2 // java.lang.Double value
         4: .line 253
            aload 0 /* this */
            aload 2 /* value */
            invokevirtual java.lang.Double.doubleValue:()D
            invokevirtual com.google.common.primitives.ImmutableDoubleArray$Builder.add:(D)Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
            pop
        end local 2 // java.lang.Double value
         5: .line 252
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 255
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Iterable values
        end local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
            0    7     1  values  Ljava/lang/Iterable<Ljava/lang/Double;>;
            4    5     2   value  Ljava/lang/Double;
    Signature: (Ljava/lang/Iterable<Ljava/lang/Double;>;)Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
    MethodParameters:
        Name  Flags
      values  

  public com.google.common.primitives.ImmutableDoubleArray$Builder addAll(java.util.Collection<java.lang.Double>);
    descriptor: (Ljava/util/Collection;)Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
        start local 1 // java.util.Collection values
         0: .line 263
            aload 0 /* this */
            aload 1 /* values */
            invokeinterface java.util.Collection.size:()I
            invokevirtual com.google.common.primitives.ImmutableDoubleArray$Builder.ensureRoomFor:(I)V
         1: .line 264
            aload 1 /* values */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: com.google.common.primitives.ImmutableDoubleArray$Builder java.util.Collection top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Double
            astore 2 /* value */
        start local 2 // java.lang.Double value
         3: .line 265
            aload 0 /* this */
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.array:[D
            aload 0 /* this */
            dup
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.count:I
            dup_x1
            iconst_1
            iadd
            putfield com.google.common.primitives.ImmutableDoubleArray$Builder.count:I
            aload 2 /* value */
            invokevirtual java.lang.Double.doubleValue:()D
            dastore
        end local 2 // java.lang.Double value
         4: .line 264
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 267
            aload 0 /* this */
            areturn
        end local 1 // java.util.Collection values
        end local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
            0    6     1  values  Ljava/util/Collection<Ljava/lang/Double;>;
            3    4     2   value  Ljava/lang/Double;
    Signature: (Ljava/util/Collection<Ljava/lang/Double;>;)Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
    MethodParameters:
        Name  Flags
      values  

  public com.google.common.primitives.ImmutableDoubleArray$Builder addAll(java.util.stream.DoubleStream);
    descriptor: (Ljava/util/stream/DoubleStream;)Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
        start local 1 // java.util.stream.DoubleStream stream
         0: .line 275
            aload 1 /* stream */
            invokeinterface java.util.stream.DoubleStream.spliterator:()Ljava/util/Spliterator$OfDouble;
            astore 2 /* spliterator */
        start local 2 // java.util.Spliterator$OfDouble spliterator
         1: .line 276
            aload 2 /* spliterator */
            invokeinterface java.util.Spliterator$OfDouble.getExactSizeIfKnown:()J
            lstore 3 /* size */
        start local 3 // long size
         2: .line 277
            lload 3 /* size */
            lconst_0
            lcmp
            ifle 4
         3: .line 278
            aload 0 /* this */
            lload 3 /* size */
            invokestatic com.google.common.primitives.Ints.saturatedCast:(J)I
            invokevirtual com.google.common.primitives.ImmutableDoubleArray$Builder.ensureRoomFor:(I)V
         4: .line 280
      StackMap locals: java.util.Spliterator$OfDouble long
      StackMap stack:
            aload 2 /* spliterator */
            aload 0 /* this */
            invokedynamic accept(Lcom/google/common/primitives/ImmutableDoubleArray$Builder;)Ljava/util/function/DoubleConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (D)V
                  com/google/common/primitives/ImmutableDoubleArray$Builder.add(D)Lcom/google/common/primitives/ImmutableDoubleArray$Builder; (5)
                  (D)V
            invokeinterface java.util.Spliterator$OfDouble.forEachRemaining:(Ljava/util/function/DoubleConsumer;)V
         5: .line 281
            aload 0 /* this */
            areturn
        end local 3 // long size
        end local 2 // java.util.Spliterator$OfDouble spliterator
        end local 1 // java.util.stream.DoubleStream stream
        end local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
            0    6     1       stream  Ljava/util/stream/DoubleStream;
            1    6     2  spliterator  Ljava/util/Spliterator$OfDouble;
            2    6     3         size  J
    MethodParameters:
        Name  Flags
      stream  

  public com.google.common.primitives.ImmutableDoubleArray$Builder addAll(com.google.common.primitives.ImmutableDoubleArray);
    descriptor: (Lcom/google/common/primitives/ImmutableDoubleArray;)Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
        start local 1 // com.google.common.primitives.ImmutableDoubleArray values
         0: .line 289
            aload 0 /* this */
            aload 1 /* values */
            invokevirtual com.google.common.primitives.ImmutableDoubleArray.length:()I
            invokevirtual com.google.common.primitives.ImmutableDoubleArray$Builder.ensureRoomFor:(I)V
         1: .line 290
            aload 1 /* values */
            getfield com.google.common.primitives.ImmutableDoubleArray.array:[D
            aload 1 /* values */
            getfield com.google.common.primitives.ImmutableDoubleArray.start:I
            aload 0 /* this */
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.array:[D
            aload 0 /* this */
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.count:I
            aload 1 /* values */
            invokevirtual com.google.common.primitives.ImmutableDoubleArray.length:()I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 291
            aload 0 /* this */
            dup
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.count:I
            aload 1 /* values */
            invokevirtual com.google.common.primitives.ImmutableDoubleArray.length:()I
            iadd
            putfield com.google.common.primitives.ImmutableDoubleArray$Builder.count:I
         3: .line 292
            aload 0 /* this */
            areturn
        end local 1 // com.google.common.primitives.ImmutableDoubleArray values
        end local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
            0    4     1  values  Lcom/google/common/primitives/ImmutableDoubleArray;
    MethodParameters:
        Name  Flags
      values  

  private void ensureRoomFor(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
        start local 1 // int numberToAdd
         0: .line 296
            aload 0 /* this */
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.count:I
            iload 1 /* numberToAdd */
            iadd
            istore 2 /* newCount */
        start local 2 // int newCount
         1: .line 297
            iload 2 /* newCount */
            aload 0 /* this */
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.array:[D
            arraylength
            if_icmple 5
         2: .line 298
            aload 0 /* this */
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.array:[D
            arraylength
            iload 2 /* newCount */
            invokestatic com.google.common.primitives.ImmutableDoubleArray$Builder.expandedCapacity:(II)I
            newarray 7
            astore 3 /* newArray */
        start local 3 // double[] newArray
         3: .line 299
            aload 0 /* this */
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.array:[D
            iconst_0
            aload 3 /* newArray */
            iconst_0
            aload 0 /* this */
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.count:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 300
            aload 0 /* this */
            aload 3 /* newArray */
            putfield com.google.common.primitives.ImmutableDoubleArray$Builder.array:[D
        end local 3 // double[] newArray
         5: .line 302
      StackMap locals: int
      StackMap stack:
            return
        end local 2 // int newCount
        end local 1 // int numberToAdd
        end local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
            0    6     1  numberToAdd  I
            1    6     2     newCount  I
            3    5     3     newArray  [D
    MethodParameters:
             Name  Flags
      numberToAdd  

  private static int expandedCapacity(int, int);
    descriptor: (II)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // int oldCapacity
        start local 1 // int minCapacity
         0: .line 306
            iload 1 /* minCapacity */
            ifge 2
         1: .line 307
            new java.lang.AssertionError
            dup
            ldc "cannot store more than MAX_VALUE elements"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         2: .line 310
      StackMap locals:
      StackMap stack:
            iload 0 /* oldCapacity */
            iload 0 /* oldCapacity */
            iconst_1
            ishr
            iadd
            iconst_1
            iadd
            istore 2 /* newCapacity */
        start local 2 // int newCapacity
         3: .line 311
            iload 2 /* newCapacity */
            iload 1 /* minCapacity */
            if_icmpge 5
         4: .line 312
            iload 1 /* minCapacity */
            iconst_1
            isub
            invokestatic java.lang.Integer.highestOneBit:(I)I
            iconst_1
            ishl
            istore 2 /* newCapacity */
         5: .line 314
      StackMap locals: int
      StackMap stack:
            iload 2 /* newCapacity */
            ifge 7
         6: .line 315
            ldc 2147483647
            istore 2 /* newCapacity */
         7: .line 317
      StackMap locals:
      StackMap stack:
            iload 2 /* newCapacity */
            ireturn
        end local 2 // int newCapacity
        end local 1 // int minCapacity
        end local 0 // int oldCapacity
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0  oldCapacity  I
            0    8     1  minCapacity  I
            3    8     2  newCapacity  I
    MethodParameters:
             Name  Flags
      oldCapacity  
      minCapacity  

  public com.google.common.primitives.ImmutableDoubleArray build();
    descriptor: ()Lcom/google/common/primitives/ImmutableDoubleArray;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
         0: .line 330
            aload 0 /* this */
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.count:I
            ifne 1
            getstatic com.google.common.primitives.ImmutableDoubleArray.EMPTY:Lcom/google/common/primitives/ImmutableDoubleArray;
            goto 2
      StackMap locals:
      StackMap stack:
         1: new com.google.common.primitives.ImmutableDoubleArray
            dup
            aload 0 /* this */
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.array:[D
            iconst_0
            aload 0 /* this */
            getfield com.google.common.primitives.ImmutableDoubleArray$Builder.count:I
            invokespecial com.google.common.primitives.ImmutableDoubleArray.<init>:([DII)V
      StackMap locals:
      StackMap stack: com.google.common.primitives.ImmutableDoubleArray
         2: areturn
        end local 0 // com.google.common.primitives.ImmutableDoubleArray$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/primitives/ImmutableDoubleArray$Builder;
    RuntimeVisibleAnnotations: 
      com.google.errorprone.annotations.CheckReturnValue()
}
SourceFile: "ImmutableDoubleArray.java"
NestHost: com.google.common.primitives.ImmutableDoubleArray
InnerClasses:
  public final Builder = com.google.common.primitives.ImmutableDoubleArray$Builder of com.google.common.primitives.ImmutableDoubleArray
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract OfDouble = java.util.Spliterator$OfDouble of java.util.Spliterator
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()