update testdata for the newly appeared Double.mod(Char) method
This commit is contained in:
+1
@@ -215,6 +215,7 @@ private val binaryOperations: HashMap<BinaryOperationKey<*, *>, Pair<Function2<A
|
||||
binaryOperation(DOUBLE, LONG, "minus", { a, b -> a.minus(b) }, emptyBinaryFun),
|
||||
binaryOperation(DOUBLE, SHORT, "minus", { a, b -> a.minus(b) }, emptyBinaryFun),
|
||||
binaryOperation(DOUBLE, BYTE, "mod", { a, b -> a.mod(b) }, emptyBinaryFun),
|
||||
binaryOperation(DOUBLE, CHAR, "mod", { a, b -> a.mod(b) }, emptyBinaryFun),
|
||||
binaryOperation(DOUBLE, DOUBLE, "mod", { a, b -> a.mod(b) }, emptyBinaryFun),
|
||||
binaryOperation(DOUBLE, FLOAT, "mod", { a, b -> a.mod(b) }, emptyBinaryFun),
|
||||
binaryOperation(DOUBLE, INT, "mod", { a, b -> a.mod(b) }, emptyBinaryFun),
|
||||
|
||||
@@ -345,6 +345,7 @@ public final class Double : kotlin.Number, kotlin.Comparable<kotlin.Double> {
|
||||
public final fun minus(/*0*/ other: kotlin.Long): kotlin.Double
|
||||
public final fun minus(/*0*/ other: kotlin.Short): kotlin.Double
|
||||
public final fun mod(/*0*/ other: kotlin.Byte): kotlin.Double
|
||||
public final fun mod(/*0*/ other: kotlin.Char): kotlin.Double
|
||||
public final fun mod(/*0*/ other: kotlin.Double): kotlin.Double
|
||||
public final fun mod(/*0*/ other: kotlin.Float): kotlin.Double
|
||||
public final fun mod(/*0*/ other: kotlin.Int): kotlin.Double
|
||||
|
||||
Reference in New Issue
Block a user