我想知道Scala或其著名的数学库之一(例如Spire)是否具有与Go math.Nextafter函数相同的功能
math.Nextafter
package main import ( "fmt" "math" ) func main() { fmt.Printf("Now you have %g problems.", math.Nextafter(2, 3)) }
(来自http://tour.golang.org/#4)
如果没有,那么获得相同功能的最“ Scala”方法是什么?
它是Java Math库的一部分:
Math
scala> java.lang.Math.nextAfter(2.0,3) res0: Double = 2.0000000000000004