Operator

+(_:_:)

Adds two values and produces their sum, rounded to a representable value.

Declaration

static func + (lhs: Double, rhs: Double) -> Double

Parameters

lhs

The first value to add.

rhs

The second value to add.

Discussion

The addition operator (+) calculates the sum of its two arguments. For example:

let x = 1.5
let y = x + 2.25
// y == 3.75

The + operator implements the addition operation defined by the IEEE 754 specification.

Relationships

See Also

Arithmetic

static func - (Double, Double) -> Double

Subtracts one value from another and produces their difference, rounded to a representable value.

static func * (Double, Double) -> Double

Multiplies two values and produces their product, rounding to a representable value.

static func / (Double, Double) -> Double

Returns the quotient of dividing the first value by the second, rounded to a representable value.