richfloat.scala

来自「JAVA 语言的函数式编程扩展」· SCALA 代码 · 共 57 行

SCALA
57
字号
/*                     __                                               *\**     ________ ___   / /  ___     Scala API                            ****    / __/ __// _ | / /  / _ |    (c) 2002-2007, LAMP/EPFL             ****  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **** /____/\___/_/ |_/____/_/ | |                                         ****                          |/                                          **\*                                                                      */// $Id: RichFloat.scala 14532 2008-04-07 12:23:22Z washburn $package scala.runtimeimport Predef._final class RichFloat(x: Float) extends Proxy with Ordered[Float] {  // Proxy.self  def self: Any = x  // Ordered[Float].compare  //def compare(y: Float): Int = if (x < y) -1 else if (x > y) 1 else 0  def compare(y: Float): Int = java.lang.Float.compare(x, y)  def min(y: Float) = Math.min(x, y)  def max(y: Float) = Math.max(x, y)  def abs: Float = Math.abs(x)  def round: Int = Math.round(x)  def ceil: Float = Math.ceil(x).toFloat  def floor: Float = Math.floor(x).toFloat  /** Converts an angle measured in degrees to an approximately equivalent   *  angle measured in radians.   *   *  @param  x an angle, in degrees   *  @return the measurement of the angle <code>x</code> in radians.   */  def toRadians: Float = Math.toRadians(x).toFloat  /** Converts an angle measured in radians to an approximately equivalent   *  angle measured in degrees.   *   *  @param  x angle, in radians   *  @return the measurement of the angle <code>x</code> in degrees.   */  def toDegrees: Float = Math.toDegrees(x).toFloat  // isNaN is provided by the implicit conversion to java.lang.Float  // def isNaN: Boolean = java.lang.Float.isNaN(x)  def isInfinity: Boolean = java.lang.Float.isInfinite(x)  def isPosInfinity: Boolean = isInfinity && x > 0.0f  def isNegInfinity: Boolean = isInfinity && x < 0.0f}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?