abstract final class Float extends AnyVal
Float
, a 32-bit IEEE-754 floating point number (equivalent to Java's float
primitive type) is a
subtype of scala.AnyVal. Instances of Float
are not
represented by an object in the underlying runtime system.
There is an implicit conversion from scala.Float => scala.runtime.RichFloat which provides useful non-primitive operations.
- Source
- Float.scala
- Alphabetic
- By Inheritance
- Float
- AnyVal
- Any
- by float2Float
- by floatWrapper
- by float2double
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
!=(x: Double): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Float): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Long): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Int): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Char): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Short): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Byte): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
%(x: Double): Double
Returns the remainder of the division of this value by
x
. -
abstract
def
%(x: Float): Float
Returns the remainder of the division of this value by
x
. -
abstract
def
%(x: Long): Float
Returns the remainder of the division of this value by
x
. -
abstract
def
%(x: Int): Float
Returns the remainder of the division of this value by
x
. -
abstract
def
%(x: Char): Float
Returns the remainder of the division of this value by
x
. -
abstract
def
%(x: Short): Float
Returns the remainder of the division of this value by
x
. -
abstract
def
%(x: Byte): Float
Returns the remainder of the division of this value by
x
. -
abstract
def
*(x: Double): Double
Returns the product of this value and
x
. -
abstract
def
*(x: Float): Float
Returns the product of this value and
x
. -
abstract
def
*(x: Long): Float
Returns the product of this value and
x
. -
abstract
def
*(x: Int): Float
Returns the product of this value and
x
. -
abstract
def
*(x: Char): Float
Returns the product of this value and
x
. -
abstract
def
*(x: Short): Float
Returns the product of this value and
x
. -
abstract
def
*(x: Byte): Float
Returns the product of this value and
x
. -
abstract
def
+(x: Double): Double
Returns the sum of this value and
x
. -
abstract
def
+(x: Float): Float
Returns the sum of this value and
x
. -
abstract
def
+(x: Long): Float
Returns the sum of this value and
x
. -
abstract
def
+(x: Int): Float
Returns the sum of this value and
x
. -
abstract
def
+(x: Char): Float
Returns the sum of this value and
x
. -
abstract
def
+(x: Short): Float
Returns the sum of this value and
x
. -
abstract
def
+(x: Byte): Float
Returns the sum of this value and
x
. - abstract def +(x: String): String
-
abstract
def
-(x: Double): Double
Returns the difference of this value and
x
. -
abstract
def
-(x: Float): Float
Returns the difference of this value and
x
. -
abstract
def
-(x: Long): Float
Returns the difference of this value and
x
. -
abstract
def
-(x: Int): Float
Returns the difference of this value and
x
. -
abstract
def
-(x: Char): Float
Returns the difference of this value and
x
. -
abstract
def
-(x: Short): Float
Returns the difference of this value and
x
. -
abstract
def
-(x: Byte): Float
Returns the difference of this value and
x
. -
abstract
def
/(x: Double): Double
Returns the quotient of this value and
x
. -
abstract
def
/(x: Float): Float
Returns the quotient of this value and
x
. -
abstract
def
/(x: Long): Float
Returns the quotient of this value and
x
. -
abstract
def
/(x: Int): Float
Returns the quotient of this value and
x
. -
abstract
def
/(x: Char): Float
Returns the quotient of this value and
x
. -
abstract
def
/(x: Short): Float
Returns the quotient of this value and
x
. -
abstract
def
/(x: Byte): Float
Returns the quotient of this value and
x
. -
abstract
def
<(x: Double): Boolean
Returns
true
if this value is less than x,false
otherwise. -
abstract
def
<(x: Float): Boolean
Returns
true
if this value is less than x,false
otherwise. -
abstract
def
<(x: Long): Boolean
Returns
true
if this value is less than x,false
otherwise. -
abstract
def
<(x: Int): Boolean
Returns
true
if this value is less than x,false
otherwise. -
abstract
def
<(x: Char): Boolean
Returns
true
if this value is less than x,false
otherwise. -
abstract
def
<(x: Short): Boolean
Returns
true
if this value is less than x,false
otherwise. -
abstract
def
<(x: Byte): Boolean
Returns
true
if this value is less than x,false
otherwise. -
abstract
def
<=(x: Double): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise. -
abstract
def
<=(x: Float): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise. -
abstract
def
<=(x: Long): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise. -
abstract
def
<=(x: Int): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise. -
abstract
def
<=(x: Char): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise. -
abstract
def
<=(x: Short): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise. -
abstract
def
<=(x: Byte): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise. -
abstract
def
==(x: Double): Boolean
Returns
true
if this value is equal to x,false
otherwise. -
abstract
def
==(x: Float): Boolean
Returns
true
if this value is equal to x,false
otherwise. -
abstract
def
==(x: Long): Boolean
Returns
true
if this value is equal to x,false
otherwise. -
abstract
def
==(x: Int): Boolean
Returns
true
if this value is equal to x,false
otherwise. -
abstract
def
==(x: Char): Boolean
Returns
true
if this value is equal to x,false
otherwise. -
abstract
def
==(x: Short): Boolean
Returns
true
if this value is equal to x,false
otherwise. -
abstract
def
==(x: Byte): Boolean
Returns
true
if this value is equal to x,false
otherwise. -
abstract
def
>(x: Double): Boolean
Returns
true
if this value is greater than x,false
otherwise. -
abstract
def
>(x: Float): Boolean
Returns
true
if this value is greater than x,false
otherwise. -
abstract
def
>(x: Long): Boolean
Returns
true
if this value is greater than x,false
otherwise. -
abstract
def
>(x: Int): Boolean
Returns
true
if this value is greater than x,false
otherwise. -
abstract
def
>(x: Char): Boolean
Returns
true
if this value is greater than x,false
otherwise. -
abstract
def
>(x: Short): Boolean
Returns
true
if this value is greater than x,false
otherwise. -
abstract
def
>(x: Byte): Boolean
Returns
true
if this value is greater than x,false
otherwise. -
abstract
def
>=(x: Double): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise. -
abstract
def
>=(x: Float): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise. -
abstract
def
>=(x: Long): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise. -
abstract
def
>=(x: Int): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise. -
abstract
def
>=(x: Char): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise. -
abstract
def
>=(x: Short): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise. -
abstract
def
>=(x: Byte): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise. - abstract def toByte: Byte
- abstract def toChar: Char
- abstract def toDouble: Double
- abstract def toFloat: Float
- abstract def toInt: Int
- abstract def toLong: Long
- abstract def toShort: Short
-
abstract
def
unary_+: Float
Returns this value, unmodified.
-
abstract
def
unary_-: Float
Returns the negation of this value.
Concrete Value Members
-
def
abs: Float
Returns the absolute value of
this
.Returns the absolute value of
this
.- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichFloat → ScalaNumberProxy
- def ceil: Float
-
def
compare(y: Float): Int
Result of comparing
this
with operandthat
.Result of comparing
this
with operandthat
.Implement this method to determine how instances of A will be sorted.
Returns
x
where:x < 0
whenthis < that
x == 0
whenthis == that
x > 0
whenthis > that
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Definition Classes
- OrderedProxy → Ordered
-
def
compareTo(arg0: java.lang.Float): Int
- Implicit
- This member is added by an implicit conversion from Float to java.lang.Float performed by method float2Float in scala.Predef.
- Definition Classes
- Float → Comparable
-
def
compareTo(that: Float): Int
Result of comparing
this
with operandthat
. - def floor: Float
-
def
getClass(): Class[Float]
Returns the runtime class representation of the object.
-
def
isInfinite(): Boolean
- Implicit
- This member is added by an implicit conversion from Float to java.lang.Float performed by method float2Float in scala.Predef.
- Definition Classes
- Float
- def isInfinity: Boolean
-
def
isNaN(): Boolean
- Implicit
- This member is added by an implicit conversion from Float to java.lang.Float performed by method float2Float in scala.Predef.
- Definition Classes
- Float
- def isNaN: Boolean
- def isNegInfinity: Boolean
- def isPosInfinity: Boolean
-
def
isValidByte: Boolean
Returns
true
iff this has a zero fractional part, and is within the range of scala.Byte MinValue and MaxValue; otherwise returnsfalse
.Returns
true
iff this has a zero fractional part, and is within the range of scala.Byte MinValue and MaxValue; otherwise returnsfalse
.- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichFloat → ScalaNumericAnyConversions
-
def
isValidChar: Boolean
Returns
true
iff this has a zero fractional part, and is within the range of scala.Char MinValue and MaxValue; otherwise returnsfalse
.Returns
true
iff this has a zero fractional part, and is within the range of scala.Char MinValue and MaxValue; otherwise returnsfalse
.- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichFloat → ScalaNumericAnyConversions
-
def
isValidInt: Boolean
Returns
true
iff this has a zero fractional part, and is within the range of scala.Int MinValue and MaxValue; otherwise returnsfalse
.Returns
true
iff this has a zero fractional part, and is within the range of scala.Int MinValue and MaxValue; otherwise returnsfalse
.- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichFloat → ScalaNumericAnyConversions
-
def
isValidShort: Boolean
Returns
true
iff this has a zero fractional part, and is within the range of scala.Short MinValue and MaxValue; otherwise returnsfalse
.Returns
true
iff this has a zero fractional part, and is within the range of scala.Short MinValue and MaxValue; otherwise returnsfalse
.- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichFloat → ScalaNumericAnyConversions
-
def
isWhole(): Boolean
- returns
true
if this number has no decimal component,false
otherwise.
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichFloat → FractionalProxy → ScalaNumericAnyConversions
-
def
max(that: Float): Float
Returns
this
ifthis > that
orthat
otherwise.Returns
this
ifthis > that
orthat
otherwise.- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichFloat → ScalaNumberProxy
-
def
min(that: Float): Float
Returns
this
ifthis < that
orthat
otherwise.Returns
this
ifthis < that
orthat
otherwise.- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichFloat → ScalaNumberProxy
- def round: Int
- val self: Float
-
def
signum: Int
Returns the signum of
this
.Returns the signum of
this
.- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichFloat → ScalaNumberProxy
-
def
toDegrees: Float
Converts an angle measured in radians to an approximately equivalent angle measured in degrees.
Converts an angle measured in radians to an approximately equivalent angle measured in degrees.
- returns
the measurement of the angle
x
in degrees.
-
def
toRadians: Float
Converts an angle measured in degrees to an approximately equivalent angle measured in radians.
Converts an angle measured in degrees to an approximately equivalent angle measured in radians.
- returns
the measurement of the angle
x
in radians.
-
def
underlying(): AnyRef
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Definition Classes
- ScalaNumberProxy → ScalaNumericAnyConversions
Shadowed Implicit Value Members
-
def
!=(x: Double): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).!=(x)
- Definition Classes
- Double
-
def
!=(x: Float): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).!=(x)
- Definition Classes
- Double
-
def
!=(x: Long): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).!=(x)
- Definition Classes
- Double
-
def
!=(x: Int): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).!=(x)
- Definition Classes
- Double
-
def
!=(x: Char): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).!=(x)
- Definition Classes
- Double
-
def
!=(x: Short): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).!=(x)
- Definition Classes
- Double
-
def
!=(x: Byte): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).!=(x)
- Definition Classes
- Double
-
def
%(x: Double): Double
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).%(x)
- Definition Classes
- Double
-
def
%(x: Float): Double
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).%(x)
- Definition Classes
- Double
-
def
%(x: Long): Double
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).%(x)
- Definition Classes
- Double
-
def
%(x: Int): Double
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).%(x)
- Definition Classes
- Double
-
def
%(x: Char): Double
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).%(x)
- Definition Classes
- Double
-
def
%(x: Short): Double
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).%(x)
- Definition Classes
- Double
-
def
%(x: Byte): Double
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).%(x)
- Definition Classes
- Double
-
def
*(x: Double): Double
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).*(x)
- Definition Classes
- Double
-
def
*(x: Float): Double
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).*(x)
- Definition Classes
- Double
-
def
*(x: Long): Double
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).*(x)
- Definition Classes
- Double
-
def
*(x: Int): Double
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).*(x)
- Definition Classes
- Double
-
def
*(x: Char): Double
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).*(x)
- Definition Classes
- Double
-
def
*(x: Short): Double
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).*(x)
- Definition Classes
- Double
-
def
*(x: Byte): Double
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).*(x)
- Definition Classes
- Double
-
def
+(x: Double): Double
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).+(x)
- Definition Classes
- Double
-
def
+(x: Float): Double
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).+(x)
- Definition Classes
- Double
-
def
+(x: Long): Double
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).+(x)
- Definition Classes
- Double
-
def
+(x: Int): Double
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).+(x)
- Definition Classes
- Double
-
def
+(x: Char): Double
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).+(x)
- Definition Classes
- Double
-
def
+(x: Short): Double
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).+(x)
- Definition Classes
- Double
-
def
+(x: Byte): Double
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).+(x)
- Definition Classes
- Double
-
def
+(x: String): String
- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).+(x)
- Definition Classes
- Double
-
def
-(x: Double): Double
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).-(x)
- Definition Classes
- Double
-
def
-(x: Float): Double
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).-(x)
- Definition Classes
- Double
-
def
-(x: Long): Double
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).-(x)
- Definition Classes
- Double
-
def
-(x: Int): Double
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).-(x)
- Definition Classes
- Double
-
def
-(x: Char): Double
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).-(x)
- Definition Classes
- Double
-
def
-(x: Short): Double
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).-(x)
- Definition Classes
- Double
-
def
-(x: Byte): Double
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).-(x)
- Definition Classes
- Double
-
def
/(x: Double): Double
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double)./(x)
- Definition Classes
- Double
-
def
/(x: Float): Double
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double)./(x)
- Definition Classes
- Double
-
def
/(x: Long): Double
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double)./(x)
- Definition Classes
- Double
-
def
/(x: Int): Double
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double)./(x)
- Definition Classes
- Double
-
def
/(x: Char): Double
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double)./(x)
- Definition Classes
- Double
-
def
/(x: Short): Double
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double)./(x)
- Definition Classes
- Double
-
def
/(x: Byte): Double
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double)./(x)
- Definition Classes
- Double
-
def
<(that: Float): Boolean
Returns true if
this
is less thanthat
Returns true if
this
is less thanthat
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: RichFloat).<(that)
- Definition Classes
- Ordered
-
def
<(x: Double): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).<(x)
- Definition Classes
- Double
-
def
<(x: Float): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).<(x)
- Definition Classes
- Double
-
def
<(x: Long): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).<(x)
- Definition Classes
- Double
-
def
<(x: Int): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).<(x)
- Definition Classes
- Double
-
def
<(x: Char): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).<(x)
- Definition Classes
- Double
-
def
<(x: Short): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).<(x)
- Definition Classes
- Double
-
def
<(x: Byte): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).<(x)
- Definition Classes
- Double
-
def
<=(that: Float): Boolean
Returns true if
this
is less than or equal tothat
.Returns true if
this
is less than or equal tothat
.- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: RichFloat).<=(that)
- Definition Classes
- Ordered
-
def
<=(x: Double): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).<=(x)
- Definition Classes
- Double
-
def
<=(x: Float): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).<=(x)
- Definition Classes
- Double
-
def
<=(x: Long): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).<=(x)
- Definition Classes
- Double
-
def
<=(x: Int): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).<=(x)
- Definition Classes
- Double
-
def
<=(x: Char): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).<=(x)
- Definition Classes
- Double
-
def
<=(x: Short): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).<=(x)
- Definition Classes
- Double
-
def
<=(x: Byte): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).<=(x)
- Definition Classes
- Double
-
def
==(x: Double): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).==(x)
- Definition Classes
- Double
-
def
==(x: Float): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).==(x)
- Definition Classes
- Double
-
def
==(x: Long): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).==(x)
- Definition Classes
- Double
-
def
==(x: Int): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).==(x)
- Definition Classes
- Double
-
def
==(x: Char): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).==(x)
- Definition Classes
- Double
-
def
==(x: Short): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).==(x)
- Definition Classes
- Double
-
def
==(x: Byte): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).==(x)
- Definition Classes
- Double
-
def
>(that: Float): Boolean
Returns true if
this
is greater thanthat
.Returns true if
this
is greater thanthat
.- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: RichFloat).>(that)
- Definition Classes
- Ordered
-
def
>(x: Double): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).>(x)
- Definition Classes
- Double
-
def
>(x: Float): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).>(x)
- Definition Classes
- Double
-
def
>(x: Long): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).>(x)
- Definition Classes
- Double
-
def
>(x: Int): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).>(x)
- Definition Classes
- Double
-
def
>(x: Char): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).>(x)
- Definition Classes
- Double
-
def
>(x: Short): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).>(x)
- Definition Classes
- Double
-
def
>(x: Byte): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).>(x)
- Definition Classes
- Double
-
def
>=(that: Float): Boolean
Returns true if
this
is greater than or equal tothat
.Returns true if
this
is greater than or equal tothat
.- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: RichFloat).>=(that)
- Definition Classes
- Ordered
-
def
>=(x: Double): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).>=(x)
- Definition Classes
- Double
-
def
>=(x: Float): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).>=(x)
- Definition Classes
- Double
-
def
>=(x: Long): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).>=(x)
- Definition Classes
- Double
-
def
>=(x: Int): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).>=(x)
- Definition Classes
- Double
-
def
>=(x: Char): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).>=(x)
- Definition Classes
- Double
-
def
>=(x: Short): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).>=(x)
- Definition Classes
- Double
-
def
>=(x: Byte): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).>=(x)
- Definition Classes
- Double
-
def
byteValue(): Byte
- Implicit
- This member is added by an implicit conversion from Float to java.lang.Float performed by method float2Float in scala.Predef.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(float: java.lang.Float).byteValue()
- Definition Classes
- Float → Number
-
def
byteValue(): Byte
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(float: RichFloat).byteValue()
- Definition Classes
- RichFloat → ScalaNumberProxy → ScalaNumericAnyConversions
-
def
doubleValue(): Double
- Implicit
- This member is added by an implicit conversion from Float to java.lang.Float performed by method float2Float in scala.Predef.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(float: java.lang.Float).doubleValue()
- Definition Classes
- Float → Number
-
def
doubleValue(): Double
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(float: RichFloat).doubleValue()
- Definition Classes
- RichFloat → ScalaNumberProxy → ScalaNumericAnyConversions
-
def
equals(arg0: Any): Boolean
The equality method for reference types.
The equality method for reference types. Default implementation delegates to
eq
.See also
equals
in scala.Any.- returns
true
if the receiver object is equivalent to the argument;false
otherwise.
- Implicit
- This member is added by an implicit conversion from Float to java.lang.Float performed by method float2Float in scala.Predef.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: java.lang.Float).equals(arg0)
- Definition Classes
- Float → AnyRef → Any
-
def
floatValue(): Float
- Implicit
- This member is added by an implicit conversion from Float to java.lang.Float performed by method float2Float in scala.Predef.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(float: java.lang.Float).floatValue()
- Definition Classes
- Float → Number
-
def
floatValue(): Float
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(float: RichFloat).floatValue()
- Definition Classes
- RichFloat → ScalaNumberProxy → ScalaNumericAnyConversions
-
def
hashCode(): Int
The hashCode method for reference types.
The hashCode method for reference types. See hashCode in scala.Any.
- returns
the hash code value for this object.
- Implicit
- This member is added by an implicit conversion from Float to java.lang.Float performed by method float2Float in scala.Predef.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: java.lang.Float).hashCode()
- Definition Classes
- Float → AnyRef → Any
-
def
intValue(): Int
- Implicit
- This member is added by an implicit conversion from Float to java.lang.Float performed by method float2Float in scala.Predef.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(float: java.lang.Float).intValue()
- Definition Classes
- Float → Number
-
def
intValue(): Int
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(float: RichFloat).intValue()
- Definition Classes
- RichFloat → ScalaNumberProxy → ScalaNumericAnyConversions
-
def
longValue(): Long
- Implicit
- This member is added by an implicit conversion from Float to java.lang.Float performed by method float2Float in scala.Predef.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(float: java.lang.Float).longValue()
- Definition Classes
- Float → Number
-
def
longValue(): Long
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(float: RichFloat).longValue()
- Definition Classes
- RichFloat → ScalaNumberProxy → ScalaNumericAnyConversions
-
def
shortValue(): Short
- Implicit
- This member is added by an implicit conversion from Float to java.lang.Float performed by method float2Float in scala.Predef.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(float: java.lang.Float).shortValue()
- Definition Classes
- Float → Number
-
def
shortValue(): Short
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(float: RichFloat).shortValue()
- Definition Classes
- RichFloat → ScalaNumberProxy → ScalaNumericAnyConversions
-
def
toByte: Byte
Returns the value of this as a scala.Byte.
Returns the value of this as a scala.Byte. This may involve rounding or truncation.
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: RichFloat).toByte
- Definition Classes
- ScalaNumericAnyConversions
-
def
toByte: Byte
- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).toByte
- Definition Classes
- Double
-
def
toChar: Char
Returns the value of this as a scala.Char.
Returns the value of this as a scala.Char. This may involve rounding or truncation.
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: RichFloat).toChar
- Definition Classes
- ScalaNumericAnyConversions
-
def
toChar: Char
- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).toChar
- Definition Classes
- Double
-
def
toDouble: Double
Returns the value of this as a scala.Double.
Returns the value of this as a scala.Double. This may involve rounding or truncation.
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: RichFloat).toDouble
- Definition Classes
- ScalaNumericAnyConversions
-
def
toDouble: Double
- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).toDouble
- Definition Classes
- Double
-
def
toFloat: Float
Returns the value of this as a scala.Float.
Returns the value of this as a scala.Float. This may involve rounding or truncation.
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: RichFloat).toFloat
- Definition Classes
- ScalaNumericAnyConversions
-
def
toFloat: Float
- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).toFloat
- Definition Classes
- Double
-
def
toInt: Int
Returns the value of this as an scala.Int.
Returns the value of this as an scala.Int. This may involve rounding or truncation.
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: RichFloat).toInt
- Definition Classes
- ScalaNumericAnyConversions
-
def
toInt: Int
- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).toInt
- Definition Classes
- Double
-
def
toLong: Long
Returns the value of this as a scala.Long.
Returns the value of this as a scala.Long. This may involve rounding or truncation.
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: RichFloat).toLong
- Definition Classes
- ScalaNumericAnyConversions
-
def
toLong: Long
- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).toLong
- Definition Classes
- Double
-
def
toShort: Short
Returns the value of this as a scala.Short.
Returns the value of this as a scala.Short. This may involve rounding or truncation.
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: RichFloat).toShort
- Definition Classes
- ScalaNumericAnyConversions
-
def
toShort: Short
- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).toShort
- Definition Classes
- Double
-
def
toString(): String
Creates a String representation of this object.
Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.
- returns
a String representation of the object.
- Implicit
- This member is added by an implicit conversion from Float to java.lang.Float performed by method float2Float in scala.Predef.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: java.lang.Float).toString()
- Definition Classes
- Float → AnyRef → Any
-
def
toString(): String
Returns a string representation of the object.
Returns a string representation of the object.
The default representation is platform dependent.
- returns
a string representation of the object.
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: RichFloat).toString()
- Definition Classes
- Proxy → Any
-
def
unary_+: Double
Returns this value, unmodified.
Returns this value, unmodified.
- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).unary_+
- Definition Classes
- Double
-
def
unary_-: Double
Returns the negation of this value.
Returns the negation of this value.
- Implicit
- This member is added by an implicit conversion from Float to Double performed by method float2double in scala.Float.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(float: Double).unary_-
- Definition Classes
- Double
Deprecated Value Members
-
def
to(end: Float, step: Float): Inclusive[Float]
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Definition Classes
- FractionalProxy → RangedProxy
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.6) use BigDecimal range instead
-
def
to(end: Float): Partial[Float, NumericRange[Float]]
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Definition Classes
- FractionalProxy → RangedProxy
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.6) use BigDecimal range instead
-
def
until(end: Float, step: Float): Exclusive[Float]
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Definition Classes
- FractionalProxy → RangedProxy
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.6) use BigDecimal range instead
-
def
until(end: Float): Partial[Float, NumericRange[Float]]
- Implicit
- This member is added by an implicit conversion from Float to RichFloat performed by method floatWrapper in scala.LowPriorityImplicits.
- Definition Classes
- FractionalProxy → RangedProxy
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.6) use BigDecimal range instead
This is the documentation for the Scala standard library.
Package structure
The scala package contains core types like
Int
,Float
,Array
orOption
which are accessible in all Scala compilation units without explicit qualification or imports.Notable packages include:
scala.collection
and its sub-packages contain Scala's collections frameworkscala.collection.immutable
- Immutable, sequential data-structures such asVector
,List
,Range
,HashMap
orHashSet
scala.collection.mutable
- Mutable, sequential data-structures such asArrayBuffer
,StringBuilder
,HashMap
orHashSet
scala.collection.concurrent
- Mutable, concurrent data-structures such asTrieMap
scala.collection.parallel.immutable
- Immutable, parallel data-structures such asParVector
,ParRange
,ParHashMap
orParHashSet
scala.collection.parallel.mutable
- Mutable, parallel data-structures such asParArray
,ParHashMap
,ParTrieMap
orParHashSet
scala.concurrent
- Primitives for concurrent programming such asFutures
andPromises
scala.io
- Input and output operationsscala.math
- Basic math functions and additional numeric types likeBigInt
andBigDecimal
scala.sys
- Interaction with other processes and the operating systemscala.util.matching
- Regular expressionsOther packages exist. See the complete list on the right.
Additional parts of the standard library are shipped as separate libraries. These include:
scala.reflect
- Scala's reflection API (scala-reflect.jar)scala.xml
- XML parsing, manipulation, and serialization (scala-xml.jar)scala.swing
- A convenient wrapper around Java's GUI framework called Swing (scala-swing.jar)scala.util.parsing
- Parser combinators (scala-parser-combinators.jar)Automatic imports
Identifiers in the scala package and the
scala.Predef
object are always in scope by default.Some of these identifiers are type aliases provided as shortcuts to commonly used classes. For example,
List
is an alias forscala.collection.immutable.List
.Other aliases refer to classes provided by the underlying platform. For example, on the JVM,
String
is an alias forjava.lang.String
.