summaryrefslogtreecommitdiff
path: root/src/library/scala/runtime/RichDouble.scala
blob: 5a9451cee6e351bf0016fee7a24441d59fc8d57f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2002-2010, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id$


package scala.runtime

import scala.collection.immutable.{Range, NumericRange}

final class RichDouble(x: Double) extends Proxy with Ordered[Double] {
  // Proxy.self
  def self: Any = x

  def compare(y: Double): Int = java.lang.Double.compare(x, y)

  def min(y: Double): Double = math.min(x, y)
  def max(y: Double): Double = math.max(x, y)
  def abs: Double = math.abs(x)

  def round: Long = math.round(x)
  def ceil: Double = math.ceil(x)
  def floor: Double = math.floor(x)

  /** See <code>BigDecimal.until</code>. */
  def until(end: Double): Range.Partial[Double, NumericRange[Double]] =
    new Range.Partial(until(end, _))

  /** See <code>BigDecimal.until</code>. */
  def until(end: Double, step: Double): NumericRange[Double] =
    Range.Double(x, end, step)

  /** See <code>BigDecimal.to</code>. */
  def to(end: Double): Range.Partial[Double, NumericRange[Double]] =
    new Range.Partial(to(end, _))

  /** See <code>BigDecimal.to</code>. */
  def to(end: Double, step: Double): NumericRange[Double] =
    Range.Double.inclusive(x, end, step)

  /** 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: Double = math.toRadians(x)

  /** 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: Double = math.toDegrees(x)

  // isNaN is provided by the implicit conversion to java.lang.Double
  // def isNaN: Boolean = java.lang.Double.isNaN(x)
  def isInfinity: Boolean = java.lang.Double.isInfinite(x)
  def isPosInfinity: Boolean = isInfinity && x > 0.0
  def isNegInfinity: Boolean = isInfinity && x < 0.0

}