public final class com.google.common.primitives.Doubles
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.google.common.primitives.Doubles
  super_class: java.lang.Object
{
  public static final int BYTES;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 8

  static final java.util.regex.Pattern FLOATING_POINT_PATTERN;
    descriptor: Ljava/util/regex/Pattern;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 656
            invokestatic com.google.common.primitives.Doubles.fpPattern:()Ljava/util/regex/Pattern;
            putstatic com.google.common.primitives.Doubles.FLOATING_POINT_PATTERN:Ljava/util/regex/Pattern;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.primitives.Doubles this
         0: .line 53
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.google.common.primitives.Doubles this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/primitives/Doubles;

  public static int hashCode(double);
    descriptor: (D)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // double value
         0: .line 74
            dload 0 /* value */
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            invokevirtual java.lang.Double.hashCode:()I
            ireturn
        end local 0 // double value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  value  D
    MethodParameters:
       Name  Flags
      value  

  public static int compare(double, double);
    descriptor: (DD)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // double a
        start local 2 // double b
         0: .line 95
            dload 0 /* a */
            dload 2 /* b */
            invokestatic java.lang.Double.compare:(DD)I
            ireturn
        end local 2 // double b
        end local 0 // double a
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     a  D
            0    1     2     b  D
    MethodParameters:
      Name  Flags
      a     
      b     

  public static boolean isFinite(double);
    descriptor: (D)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // double value
         0: .line 107
            ldc -Infinity
            dload 0 /* value */
            dcmpg
            ifge 1
            dload 0 /* value */
            ldc Infinity
            dcmpg
            ifge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // double value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0  value  D
    MethodParameters:
       Name  Flags
      value  

  public static boolean contains(double[], double);
    descriptor: ([DD)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // double[] array
        start local 1 // double target
         0: .line 119
            aload 0 /* array */
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 5
      StackMap locals: double[] double top top int int double[]
      StackMap stack:
         1: aload 7
            iload 5
            daload
            dstore 3 /* value */
        start local 3 // double value
         2: .line 120
            dload 3 /* value */
            dload 1 /* target */
            dcmpl
            ifne 4
         3: .line 121
            iconst_1
            ireturn
        end local 3 // double value
         4: .line 119
      StackMap locals:
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
         5: iload 5
            iload 6
            if_icmplt 1
         6: .line 124
            iconst_0
            ireturn
        end local 1 // double target
        end local 0 // double[] array
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0   array  [D
            0    7     1  target  D
            2    4     3   value  D
    MethodParameters:
        Name  Flags
      array   
      target  

  public static int indexOf(double[], double);
    descriptor: ([DD)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // double[] array
        start local 1 // double target
         0: .line 137
            aload 0 /* array */
            dload 1 /* target */
            iconst_0
            aload 0 /* array */
            arraylength
            invokestatic com.google.common.primitives.Doubles.indexOf:([DDII)I
            ireturn
        end local 1 // double target
        end local 0 // double[] array
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0   array  [D
            0    1     1  target  D
    MethodParameters:
        Name  Flags
      array   
      target  

  private static int indexOf(double[], double, int, int);
    descriptor: ([DDII)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // double[] array
        start local 1 // double target
        start local 3 // int start
        start local 4 // int end
         0: .line 142
            iload 3 /* start */
            istore 5 /* i */
        start local 5 // int i
         1: goto 5
         2: .line 143
      StackMap locals: int
      StackMap stack:
            aload 0 /* array */
            iload 5 /* i */
            daload
            dload 1 /* target */
            dcmpl
            ifne 4
         3: .line 144
            iload 5 /* i */
            ireturn
         4: .line 142
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 5 /* i */
            iload 4 /* end */
            if_icmplt 2
        end local 5 // int i
         6: .line 147
            iconst_m1
            ireturn
        end local 4 // int end
        end local 3 // int start
        end local 1 // double target
        end local 0 // double[] array
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0   array  [D
            0    7     1  target  D
            0    7     3   start  I
            0    7     4     end  I
            1    6     5       i  I
    MethodParameters:
        Name  Flags
      array   
      target  
      start   
      end     

  public static int indexOf(double[], double[]);
    descriptor: ([D[D)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // double[] array
        start local 1 // double[] target
         0: .line 163
            aload 0 /* array */
            ldc "array"
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 164
            aload 1 /* target */
            ldc "target"
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 165
            aload 1 /* target */
            arraylength
            ifne 4
         3: .line 166
            iconst_0
            ireturn
         4: .line 170
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         5: goto 14
         6: .line 171
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 3 /* j */
        start local 3 // int j
         7: goto 11
         8: .line 172
      StackMap locals: int
      StackMap stack:
            aload 0 /* array */
            iload 2 /* i */
            iload 3 /* j */
            iadd
            daload
            aload 1 /* target */
            iload 3 /* j */
            daload
            dcmpl
            ifeq 10
         9: .line 173
            goto 13
        10: .line 171
      StackMap locals:
      StackMap stack:
            iinc 3 /* j */ 1
      StackMap locals:
      StackMap stack:
        11: iload 3 /* j */
            aload 1 /* target */
            arraylength
            if_icmplt 8
        end local 3 // int j
        12: .line 176
            iload 2 /* i */
            ireturn
        13: .line 170
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 2 /* i */
            aload 0 /* array */
            arraylength
            aload 1 /* target */
            arraylength
            isub
            iconst_1
            iadd
            if_icmplt 6
        end local 2 // int i
        15: .line 178
            iconst_m1
            ireturn
        end local 1 // double[] target
        end local 0 // double[] array
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0   array  [D
            0   16     1  target  [D
            5   15     2       i  I
            7   12     3       j  I
    MethodParameters:
        Name  Flags
      array   
      target  

  public static int lastIndexOf(double[], double);
    descriptor: ([DD)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // double[] array
        start local 1 // double target
         0: .line 191
            aload 0 /* array */
            dload 1 /* target */
            iconst_0
            aload 0 /* array */
            arraylength
            invokestatic com.google.common.primitives.Doubles.lastIndexOf:([DDII)I
            ireturn
        end local 1 // double target
        end local 0 // double[] array
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0   array  [D
            0    1     1  target  D
    MethodParameters:
        Name  Flags
      array   
      target  

  private static int lastIndexOf(double[], double, int, int);
    descriptor: ([DDII)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // double[] array
        start local 1 // double target
        start local 3 // int start
        start local 4 // int end
         0: .line 196
            iload 4 /* end */
            iconst_1
            isub
            istore 5 /* i */
        start local 5 // int i
         1: goto 5
         2: .line 197
      StackMap locals: int
      StackMap stack:
            aload 0 /* array */
            iload 5 /* i */
            daload
            dload 1 /* target */
            dcmpl
            ifne 4
         3: .line 198
            iload 5 /* i */
            ireturn
         4: .line 196
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ -1
      StackMap locals:
      StackMap stack:
         5: iload 5 /* i */
            iload 3 /* start */
            if_icmpge 2
        end local 5 // int i
         6: .line 201
            iconst_m1
            ireturn
        end local 4 // int end
        end local 3 // int start
        end local 1 // double target
        end local 0 // double[] array
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0   array  [D
            0    7     1  target  D
            0    7     3   start  I
            0    7     4     end  I
            1    6     5       i  I
    MethodParameters:
        Name  Flags
      array   
      target  
      start   
      end     

  public static double min(double[]);
    descriptor: ([D)D
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // double[] array
         0: .line 214
            aload 0 /* array */
            arraylength
            ifle 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: invokestatic com.google.common.base.Preconditions.checkArgument:(Z)V
         3: .line 215
            aload 0 /* array */
            iconst_0
            daload
            dstore 1 /* min */
        start local 1 // double min
         4: .line 216
            iconst_1
            istore 3 /* i */
        start local 3 // int i
         5: goto 8
         6: .line 217
      StackMap locals: double int
      StackMap stack:
            dload 1 /* min */
            aload 0 /* array */
            iload 3 /* i */
            daload
            invokestatic java.lang.Math.min:(DD)D
            dstore 1 /* min */
         7: .line 216
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 3 /* i */
            aload 0 /* array */
            arraylength
            if_icmplt 6
        end local 3 // int i
         9: .line 219
            dload 1 /* min */
            dreturn
        end local 1 // double min
        end local 0 // double[] array
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0  array  [D
            4   10     1    min  D
            5    9     3      i  I
    MethodParameters:
       Name  Flags
      array  

  public static double max(double[]);
    descriptor: ([D)D
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // double[] array
         0: .line 232
            aload 0 /* array */
            arraylength
            ifle 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: invokestatic com.google.common.base.Preconditions.checkArgument:(Z)V
         3: .line 233
            aload 0 /* array */
            iconst_0
            daload
            dstore 1 /* max */
        start local 1 // double max
         4: .line 234
            iconst_1
            istore 3 /* i */
        start local 3 // int i
         5: goto 8
         6: .line 235
      StackMap locals: double int
      StackMap stack:
            dload 1 /* max */
            aload 0 /* array */
            iload 3 /* i */
            daload
            invokestatic java.lang.Math.max:(DD)D
            dstore 1 /* max */
         7: .line 234
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 3 /* i */
            aload 0 /* array */
            arraylength
            if_icmplt 6
        end local 3 // int i
         9: .line 237
            dload 1 /* max */
            dreturn
        end local 1 // double max
        end local 0 // double[] array
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0  array  [D
            4   10     1    max  D
            5    9     3      i  I
    MethodParameters:
       Name  Flags
      array  

  public static double constrainToRange(double, double, double);
    descriptor: (DDD)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // double value
        start local 2 // double min
        start local 4 // double max
         0: .line 255
            dload 2 /* min */
            dload 4 /* max */
            dcmpg
            ifgt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "min (%s) must be less than or equal to max (%s)"
            dload 2 /* min */
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            dload 4 /* max */
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            invokestatic com.google.common.base.Preconditions.checkArgument:(ZLjava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 256
            dload 0 /* value */
            dload 2 /* min */
            invokestatic java.lang.Math.max:(DD)D
            dload 4 /* max */
            invokestatic java.lang.Math.min:(DD)D
            dreturn
        end local 4 // double max
        end local 2 // double min
        end local 0 // double value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0  value  D
            0    4     2    min  D
            0    4     4    max  D
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
    MethodParameters:
       Name  Flags
      value  
      min    
      max    

  public static double[] concat(double[][]);
    descriptor: ([[D)[D
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=5, locals=8, args_size=1
        start local 0 // double[][] arrays
         0: .line 268
            iconst_0
            istore 1 /* length */
        start local 1 // int length
         1: .line 269
            aload 0 /* arrays */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: double[][] int top int int double[][]
      StackMap stack:
         2: aload 5
            iload 3
            aaload
            astore 2 /* array */
        start local 2 // double[] array
         3: .line 270
            iload 1 /* length */
            aload 2 /* array */
            arraylength
            iadd
            istore 1 /* length */
        end local 2 // double[] array
         4: .line 269
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 2
         6: .line 272
            iload 1 /* length */
            newarray 7
            astore 2 /* result */
        start local 2 // double[] result
         7: .line 273
            iconst_0
            istore 3 /* pos */
        start local 3 // int pos
         8: .line 274
            aload 0 /* arrays */
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 13
      StackMap locals: double[][] int double[] int top int int double[][]
      StackMap stack:
         9: aload 7
            iload 5
            aaload
            astore 4 /* array */
        start local 4 // double[] array
        10: .line 275
            aload 4 /* array */
            iconst_0
            aload 2 /* result */
            iload 3 /* pos */
            aload 4 /* array */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        11: .line 276
            iload 3 /* pos */
            aload 4 /* array */
            arraylength
            iadd
            istore 3 /* pos */
        end local 4 // double[] array
        12: .line 274
            iinc 5 1
      StackMap locals:
      StackMap stack:
        13: iload 5
            iload 6
            if_icmplt 9
        14: .line 278
            aload 2 /* result */
            areturn
        end local 3 // int pos
        end local 2 // double[] result
        end local 1 // int length
        end local 0 // double[][] arrays
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   15     0  arrays  [[D
            1   15     1  length  I
            3    4     2   array  [D
            7   15     2  result  [D
            8   15     3     pos  I
           10   12     4   array  [D
    MethodParameters:
        Name  Flags
      arrays  

  public static com.google.common.base.Converter<java.lang.String, java.lang.Double> stringConverter();
    descriptor: ()Lcom/google/common/base/Converter;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 315
            getstatic com.google.common.primitives.Doubles$DoubleConverter.INSTANCE:Lcom/google/common/primitives/Doubles$DoubleConverter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: ()Lcom/google/common/base/Converter<Ljava/lang/String;Ljava/lang/Double;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()

  public static double[] ensureCapacity(double[], int, int);
    descriptor: ([DII)[D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // double[] array
        start local 1 // int minLength
        start local 2 // int padding
         0: .line 332
            iload 1 /* minLength */
            iflt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "Invalid minLength: %s"
            iload 1 /* minLength */
            invokestatic com.google.common.base.Preconditions.checkArgument:(ZLjava/lang/String;I)V
         3: .line 333
            iload 2 /* padding */
            iflt 4
            iconst_1
            goto 5
      StackMap locals:
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: ldc "Invalid padding: %s"
            iload 2 /* padding */
            invokestatic com.google.common.base.Preconditions.checkArgument:(ZLjava/lang/String;I)V
         6: .line 334
            aload 0 /* array */
            arraylength
            iload 1 /* minLength */
            if_icmpge 7
            aload 0 /* array */
            iload 1 /* minLength */
            iload 2 /* padding */
            iadd
            invokestatic java.util.Arrays.copyOf:([DI)[D
            goto 8
      StackMap locals:
      StackMap stack:
         7: aload 0 /* array */
      StackMap locals:
      StackMap stack: double[]
         8: areturn
        end local 2 // int padding
        end local 1 // int minLength
        end local 0 // double[] array
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0      array  [D
            0    9     1  minLength  I
            0    9     2    padding  I
    MethodParameters:
           Name  Flags
      array      
      minLength  
      padding    

  public static java.lang.String join(java.lang.String, double[]);
    descriptor: (Ljava/lang/String;[D)Ljava/lang/String;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // java.lang.String separator
        start local 1 // double[] array
         0: .line 350
            aload 0 /* separator */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 351
            aload 1 /* array */
            arraylength
            ifne 3
         2: .line 352
            ldc ""
            areturn
         3: .line 356
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            aload 1 /* array */
            arraylength
            bipush 12
            imul
            invokespecial java.lang.StringBuilder.<init>:(I)V
            astore 2 /* builder */
        start local 2 // java.lang.StringBuilder builder
         4: .line 357
            aload 2 /* builder */
            aload 1 /* array */
            iconst_0
            daload
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
         5: .line 358
            iconst_1
            istore 3 /* i */
        start local 3 // int i
         6: goto 9
         7: .line 359
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            aload 2 /* builder */
            aload 0 /* separator */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* array */
            iload 3 /* i */
            daload
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
         8: .line 358
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            aload 1 /* array */
            arraylength
            if_icmplt 7
        end local 3 // int i
        10: .line 361
            aload 2 /* builder */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 2 // java.lang.StringBuilder builder
        end local 1 // double[] array
        end local 0 // java.lang.String separator
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0  separator  Ljava/lang/String;
            0   11     1      array  [D
            4   11     2    builder  Ljava/lang/StringBuilder;
            6   10     3          i  I
    MethodParameters:
           Name  Flags
      separator  
      array      

  public static java.util.Comparator<double[]> lexicographicalComparator();
    descriptor: ()Ljava/util/Comparator;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 378
            getstatic com.google.common.primitives.Doubles$LexicographicalComparator.INSTANCE:Lcom/google/common/primitives/Doubles$LexicographicalComparator;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: ()Ljava/util/Comparator<[D>;

  public static void sortDescending(double[]);
    descriptor: ([D)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // double[] array
         0: .line 411
            aload 0 /* array */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 412
            aload 0 /* array */
            iconst_0
            aload 0 /* array */
            arraylength
            invokestatic com.google.common.primitives.Doubles.sortDescending:([DII)V
         2: .line 413
            return
        end local 0 // double[] array
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0  array  [D
    MethodParameters:
       Name  Flags
      array  

  public static void sortDescending(double[], int, int);
    descriptor: ([DII)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // double[] array
        start local 1 // int fromIndex
        start local 2 // int toIndex
         0: .line 425
            aload 0 /* array */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 426
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            aload 0 /* array */
            arraylength
            invokestatic com.google.common.base.Preconditions.checkPositionIndexes:(III)V
         2: .line 427
            aload 0 /* array */
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            invokestatic java.util.Arrays.sort:([DII)V
         3: .line 428
            aload 0 /* array */
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            invokestatic com.google.common.primitives.Doubles.reverse:([DII)V
         4: .line 429
            return
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // double[] array
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0      array  [D
            0    5     1  fromIndex  I
            0    5     2    toIndex  I
    MethodParameters:
           Name  Flags
      array      
      fromIndex  
      toIndex    

  public static void reverse(double[]);
    descriptor: ([D)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // double[] array
         0: .line 438
            aload 0 /* array */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 439
            aload 0 /* array */
            iconst_0
            aload 0 /* array */
            arraylength
            invokestatic com.google.common.primitives.Doubles.reverse:([DII)V
         2: .line 440
            return
        end local 0 // double[] array
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0  array  [D
    MethodParameters:
       Name  Flags
      array  

  public static void reverse(double[], int, int);
    descriptor: ([DII)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // double[] array
        start local 1 // int fromIndex
        start local 2 // int toIndex
         0: .line 453
            aload 0 /* array */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 454
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            aload 0 /* array */
            arraylength
            invokestatic com.google.common.base.Preconditions.checkPositionIndexes:(III)V
         2: .line 455
            iload 1 /* fromIndex */
            istore 3 /* i */
        start local 3 // int i
         3: iload 2 /* toIndex */
            iconst_1
            isub
            istore 4 /* j */
        start local 4 // int j
         4: goto 9
         5: .line 456
      StackMap locals: int int
      StackMap stack:
            aload 0 /* array */
            iload 3 /* i */
            daload
            dstore 5 /* tmp */
        start local 5 // double tmp
         6: .line 457
            aload 0 /* array */
            iload 3 /* i */
            aload 0 /* array */
            iload 4 /* j */
            daload
            dastore
         7: .line 458
            aload 0 /* array */
            iload 4 /* j */
            dload 5 /* tmp */
            dastore
        end local 5 // double tmp
         8: .line 455
            iinc 3 /* i */ 1
            iinc 4 /* j */ -1
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            iload 4 /* j */
            if_icmplt 5
        end local 4 // int j
        end local 3 // int i
        10: .line 460
            return
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // double[] array
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0      array  [D
            0   11     1  fromIndex  I
            0   11     2    toIndex  I
            3   10     3          i  I
            4   10     4          j  I
            6    8     5        tmp  D
    MethodParameters:
           Name  Flags
      array      
      fromIndex  
      toIndex    

  public static double[] toArray(java.util.Collection<? extends java.lang.Number>);
    descriptor: (Ljava/util/Collection;)[D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // java.util.Collection collection
         0: .line 476
            aload 0 /* collection */
            instanceof com.google.common.primitives.Doubles$DoubleArrayAsList
            ifeq 2
         1: .line 477
            aload 0 /* collection */
            checkcast com.google.common.primitives.Doubles$DoubleArrayAsList
            invokevirtual com.google.common.primitives.Doubles$DoubleArrayAsList.toDoubleArray:()[D
            areturn
         2: .line 480
      StackMap locals:
      StackMap stack:
            aload 0 /* collection */
            invokeinterface java.util.Collection.toArray:()[Ljava/lang/Object;
            astore 1 /* boxedArray */
        start local 1 // java.lang.Object[] boxedArray
         3: .line 481
            aload 1 /* boxedArray */
            arraylength
            istore 2 /* len */
        start local 2 // int len
         4: .line 482
            iload 2 /* len */
            newarray 7
            astore 3 /* array */
        start local 3 // double[] array
         5: .line 483
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 9
         7: .line 485
      StackMap locals: java.util.Collection java.lang.Object[] int double[] int
      StackMap stack:
            aload 3 /* array */
            iload 4 /* i */
            aload 1 /* boxedArray */
            iload 4 /* i */
            aaload
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Number
            invokevirtual java.lang.Number.doubleValue:()D
            dastore
         8: .line 483
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 4 /* i */
            iload 2 /* len */
            if_icmplt 7
        end local 4 // int i
        10: .line 487
            aload 3 /* array */
            areturn
        end local 3 // double[] array
        end local 2 // int len
        end local 1 // java.lang.Object[] boxedArray
        end local 0 // java.util.Collection collection
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0  collection  Ljava/util/Collection<+Ljava/lang/Number;>;
            3   11     1  boxedArray  [Ljava/lang/Object;
            4   11     2         len  I
            5   11     3       array  [D
            6   10     4           i  I
    Signature: (Ljava/util/Collection<+Ljava/lang/Number;>;)[D
    MethodParameters:
            Name  Flags
      collection  

  public static java.util.List<java.lang.Double> asList(double[]);
    descriptor: ([D)Ljava/util/List;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // double[] backingArray
         0: .line 509
            aload 0 /* backingArray */
            arraylength
            ifne 2
         1: .line 510
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            areturn
         2: .line 512
      StackMap locals:
      StackMap stack:
            new com.google.common.primitives.Doubles$DoubleArrayAsList
            dup
            aload 0 /* backingArray */
            invokespecial com.google.common.primitives.Doubles$DoubleArrayAsList.<init>:([D)V
            areturn
        end local 0 // double[] backingArray
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0  backingArray  [D
    Signature: ([D)Ljava/util/List<Ljava/lang/Double;>;
    MethodParameters:
              Name  Flags
      backingArray  

  private static java.util.regex.Pattern fpPattern();
    descriptor: ()Ljava/util/regex/Pattern;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=0
         0: .line 660
            ldc "(?:\\d++(?:\\.\\d*+)?|\\.\\d++)"
            astore 0 /* decimal */
        start local 0 // java.lang.String decimal
         1: .line 661
            new java.lang.StringBuilder
            dup
            aload 0 /* decimal */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "(?:[eE][+-]?\\d++)?[fFdD]?"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 1 /* completeDec */
        start local 1 // java.lang.String completeDec
         2: .line 662
            ldc "(?:\\p{XDigit}++(?:\\.\\p{XDigit}*+)?|\\.\\p{XDigit}++)"
            astore 2 /* hex */
        start local 2 // java.lang.String hex
         3: .line 663
            new java.lang.StringBuilder
            dup
            ldc "0[xX]"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* hex */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "[pP][+-]?\\d++[fFdD]?"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 3 /* completeHex */
        start local 3 // java.lang.String completeHex
         4: .line 664
            new java.lang.StringBuilder
            dup
            ldc "[+-]?(?:NaN|Infinity|"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* completeDec */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "|"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 3 /* completeHex */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 4 /* fpPattern */
        start local 4 // java.lang.String fpPattern
         5: .line 665
            aload 4 /* fpPattern */
            invokestatic java.util.regex.Pattern.compile:(Ljava/lang/String;)Ljava/util/regex/Pattern;
            areturn
        end local 4 // java.lang.String fpPattern
        end local 3 // java.lang.String completeHex
        end local 2 // java.lang.String hex
        end local 1 // java.lang.String completeDec
        end local 0 // java.lang.String decimal
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            1    6     0      decimal  Ljava/lang/String;
            2    6     1  completeDec  Ljava/lang/String;
            3    6     2          hex  Ljava/lang/String;
            4    6     3  completeHex  Ljava/lang/String;
            5    6     4    fpPattern  Ljava/lang/String;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()

  public static java.lang.Double tryParse(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Double;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.String string
         0: .line 687
            getstatic com.google.common.primitives.Doubles.FLOATING_POINT_PATTERN:Ljava/util/regex/Pattern;
            aload 0 /* string */
            invokevirtual java.util.regex.Pattern.matcher:(Ljava/lang/CharSequence;)Ljava/util/regex/Matcher;
            invokevirtual java.util.regex.Matcher.matches:()Z
            ifeq 4
         1: .line 691
            aload 0 /* string */
            invokestatic java.lang.Double.parseDouble:(Ljava/lang/String;)D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
         2: areturn
         3: .line 692
      StackMap locals:
      StackMap stack: java.lang.NumberFormatException
            pop
         4: .line 697
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // java.lang.String string
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0  string  Ljava/lang/String;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.NumberFormatException
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
      com.google.common.annotations.GwtIncompatible()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
        Name  Flags
      string  
}
SourceFile: "Doubles.java"
NestMembers:
  com.google.common.primitives.Doubles$DoubleArrayAsList  com.google.common.primitives.Doubles$DoubleConverter  com.google.common.primitives.Doubles$LexicographicalComparator
InnerClasses:
  private DoubleArrayAsList = com.google.common.primitives.Doubles$DoubleArrayAsList of com.google.common.primitives.Doubles
  private final DoubleConverter = com.google.common.primitives.Doubles$DoubleConverter of com.google.common.primitives.Doubles
  private final LexicographicalComparator = com.google.common.primitives.Doubles$LexicographicalComparator of com.google.common.primitives.Doubles
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtCompatible(emulated = true)