What is a Scala C # decimal analogue? Should I use java.math.BigDecimal or is there a native standard type for this in Scala?
decimal
There is scala.math.BigDecimal that is already imported into Predef . This is just a java.math.BigDecimal shell that uses operator names for methods (e.g. + instead of add ).
scala.math.BigDecimal
Predef
java.math.BigDecimal
+
add