数字库Spire有Natural
class,在编写自己的数据库之前值得一看。
要试用试用版,请在其中添加build.sbt
行libraryDependencies += "org.spire-math" %% "spire" % "0.10.1"
并运行sbt
。在sbt
shell中运行console
,然后import spire.math._
。
现在你可以尝试一下:
scala> Natural(3) / Natural(2)
res0: spire.math.Natural = 1
等等。