|
Scala Library
|
|
scala/runtime/RichFloat.scala]
final
class
RichFloat(x : Float)
extends Proxy with Ordered[Float]| Method Summary | |
def
|
abs : Float |
def
|
ceil : Float |
def
|
compare
(y : Float) : Int
Result of comparing
this with operand that.
returns x where
x < 0 iff this < that
x == 0 iff this == that
x > 0 iff this > that |
def
|
floor : Float |
def
|
isInfinity : Boolean |
def
|
isNegInfinity : Boolean |
def
|
isPosInfinity : Boolean |
def
|
max (y : Float) : Float |
def
|
min (y : Float) : Float |
def
|
round : Int |
def
|
self : Any |
def
|
toDegrees
: Float
Converts an angle measured in radians to an approximately equivalent
angle measured in degrees.
|
def
|
toRadians
: Float
Converts an angle measured in degrees to an approximately equivalent
angle measured in radians.
|
| Methods inherited from Ordered | |
| <, >, <=, >=, compareTo |
| Methods inherited from Proxy | |
| hashCode, equals, toString |
| Methods inherited from AnyRef | |
| getClass, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Method Details |
def
self : Any
this with operand that.
returns x where
x < 0 iff this < that
x == 0 iff this == that
x > 0 iff this > that
def
abs : Float
def
round : Int
def
ceil : Float
def
floor : Float
def
toRadians : Float
x - an angle, in degreesx in radians.
def
toDegrees : Float
x - angle, in radiansx in degrees.
def
isInfinity : Boolean
def
isPosInfinity : Boolean
def
isNegInfinity : Boolean
|
Scala Library
|
|