class com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder extends com.google.common.math.ToDoubleRounder<java.math.BigInteger>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder
  super_class: com.google.common.math.ToDoubleRounder
{
  static final com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder INSTANCE;
    descriptor: Lcom/google/common/math/BigIntegerMath$BigIntegerToDoubleRounder;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 339
            new com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder
            dup
            invokespecial com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder.<init>:()V
            putstatic com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder.INSTANCE:Lcom/google/common/math/BigIntegerMath$BigIntegerToDoubleRounder;
            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.math.BigIntegerMath$BigIntegerToDoubleRounder this
         0: .line 341
            aload 0 /* this */
            invokespecial com.google.common.math.ToDoubleRounder.<init>:()V
            return
        end local 0 // com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/math/BigIntegerMath$BigIntegerToDoubleRounder;

  double roundToDoubleArbitrarily(java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;)D
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder this
        start local 1 // java.math.BigInteger bigInteger
         0: .line 345
            aload 1 /* bigInteger */
            invokestatic com.google.common.math.DoubleUtils.bigToDouble:(Ljava/math/BigInteger;)D
            dreturn
        end local 1 // java.math.BigInteger bigInteger
        end local 0 // com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lcom/google/common/math/BigIntegerMath$BigIntegerToDoubleRounder;
            0    1     1  bigInteger  Ljava/math/BigInteger;
    MethodParameters:
            Name  Flags
      bigInteger  

  int sign(java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;)I
    flags: (0x0000) 
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder this
        start local 1 // java.math.BigInteger bigInteger
         0: .line 350
            aload 1 /* bigInteger */
            invokevirtual java.math.BigInteger.signum:()I
            ireturn
        end local 1 // java.math.BigInteger bigInteger
        end local 0 // com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lcom/google/common/math/BigIntegerMath$BigIntegerToDoubleRounder;
            0    1     1  bigInteger  Ljava/math/BigInteger;
    MethodParameters:
            Name  Flags
      bigInteger  

  java.math.BigInteger toX(double, java.math.RoundingMode);
    descriptor: (DLjava/math/RoundingMode;)Ljava/math/BigInteger;
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder this
        start local 1 // double d
        start local 3 // java.math.RoundingMode mode
         0: .line 355
            dload 1 /* d */
            aload 3 /* mode */
            invokestatic com.google.common.math.DoubleMath.roundToBigInteger:(DLjava/math/RoundingMode;)Ljava/math/BigInteger;
            areturn
        end local 3 // java.math.RoundingMode mode
        end local 1 // double d
        end local 0 // com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/math/BigIntegerMath$BigIntegerToDoubleRounder;
            0    1     1     d  D
            0    1     3  mode  Ljava/math/RoundingMode;
    MethodParameters:
      Name  Flags
      d     
      mode  

  java.math.BigInteger minus(java.math.BigInteger, java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;Ljava/math/BigInteger;)Ljava/math/BigInteger;
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder this
        start local 1 // java.math.BigInteger a
        start local 2 // java.math.BigInteger b
         0: .line 360
            aload 1 /* a */
            aload 2 /* b */
            invokevirtual java.math.BigInteger.subtract:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            areturn
        end local 2 // java.math.BigInteger b
        end local 1 // java.math.BigInteger a
        end local 0 // com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/math/BigIntegerMath$BigIntegerToDoubleRounder;
            0    1     1     a  Ljava/math/BigInteger;
            0    1     2     b  Ljava/math/BigInteger;
    MethodParameters:
      Name  Flags
      a     
      b     

  java.lang.Number toX(double, java.math.RoundingMode);
    descriptor: (DLjava/math/RoundingMode;)Ljava/lang/Number;
    flags: (0x1040) ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=3
         0: .line 1
            aload 0
            dload 1
            aload 3
            invokevirtual com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder.toX:(DLjava/math/RoundingMode;)Ljava/math/BigInteger;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  int sign(java.lang.Number);
    descriptor: (Ljava/lang/Number;)I
    flags: (0x1040) ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.math.BigInteger
            invokevirtual com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder.sign:(Ljava/math/BigInteger;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  double roundToDoubleArbitrarily(java.lang.Number);
    descriptor: (Ljava/lang/Number;)D
    flags: (0x1040) ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.math.BigInteger
            invokevirtual com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder.roundToDoubleArbitrarily:(Ljava/math/BigInteger;)D
            dreturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  java.lang.Number minus(java.lang.Number, java.lang.Number);
    descriptor: (Ljava/lang/Number;Ljava/lang/Number;)Ljava/lang/Number;
    flags: (0x1040) ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast java.math.BigInteger
            aload 2
            checkcast java.math.BigInteger
            invokevirtual com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder.minus:(Ljava/math/BigInteger;Ljava/math/BigInteger;)Ljava/math/BigInteger;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lcom/google/common/math/ToDoubleRounder<Ljava/math/BigInteger;>;
SourceFile: "BigIntegerMath.java"
NestHost: com.google.common.math.BigIntegerMath
InnerClasses:
  private BigIntegerToDoubleRounder = com.google.common.math.BigIntegerMath$BigIntegerToDoubleRounder of com.google.common.math.BigIntegerMath
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()