float

class Object
trait Matchable
class Any
float.type

Type members

Types

type %[X <: Float, Y <: Float] <: Float

Remainder of the division of X by Y.

Remainder of the division of X by Y.

val mod: 5.0f % 2.0f = 1.0f
type *[X <: Float, Y <: Float] <: Float

Multiplication of two Float singleton types.

Multiplication of two Float singleton types.

val mul: 4.0f * 2.0f = 8.0f
type +[X <: Float, Y <: Float] <: Float

Addition of two Float singleton types.

Addition of two Float singleton types.

val sum: 2.0f + 2.0f = 4.0f
type -[X <: Float, Y <: Float] <: Float

Subtraction of two Float singleton types.

Subtraction of two Float singleton types.

val sub: 4.0f - 2.0f = 2.0f
type /[X <: Float, Y <: Float] <: Float

Integer division of two Float singleton types.

Integer division of two Float singleton types.

val div: 5.0f / 2.0f = 2.5f
type <[X <: Float, Y <: Float] <: Boolean

Less-than comparison of two Float singleton types.

Less-than comparison of two Float singleton types.

val lt1: 4.0f < 2.0f = false
val lt2: 2.0f < 4.0f = true
type <=[X <: Float, Y <: Float] <: Boolean

Less-or-equal comparison of two Float singleton types.

Less-or-equal comparison of two Float singleton types.

val lt1: 4.0f <= 2.0f = false
val lt2: 2.0f <= 2.0f = true
type >[X <: Float, Y <: Float] <: Boolean

Greater-than comparison of two Float singleton types.

Greater-than comparison of two Float singleton types.

val gt1: 4.0f > 2.0f = true
val gt2: 2.0f > 2.0f = false
type >=[X <: Float, Y <: Float] <: Boolean

Greater-or-equal comparison of two Float singleton types.

Greater-or-equal comparison of two Float singleton types.

val ge1: 4.0f >= 2.0f = true
val ge2: 2.0f >= 3.0f = false
type Abs[X <: Float] <: Float

Absolute value of an Float singleton type.

Absolute value of an Float singleton type.

val abs: Abs[-1.0f] = 1.0f
type Max[X <: Float, Y <: Float] <: Float

Maximum of two Float singleton types.

Maximum of two Float singleton types.

val max: Max[-1.0f, 1.0f] = 1.0f
type Min[X <: Float, Y <: Float] <: Float

Minimum of two Float singleton types.

Minimum of two Float singleton types.

val min: Min[-1.0f, 1.0f] = -1.0f
type Negate[X <: Float] <: Float

Negation of an Float singleton type.

Negation of an Float singleton type.

val neg1: Negate[-1.0f] = 1.0f
val neg2: Negate[1.0f] = -1.0f
type ToDouble[X <: Float] <: Double

Double conversion of a Float singleton type.

Double conversion of a Float singleton type.

val x: ToDouble[1.0f] = 1.0
type ToInt[X <: Float] <: Int

Int conversion of a Float singleton type.

Int conversion of a Float singleton type.

val x: ToInt[1.0f] = 1
type ToLong[X <: Float] <: Long

Long conversion of a Float singleton type.

Long conversion of a Float singleton type.

val x: ToLong[1.0f] = 1L