Return Value 戻り値
The given argument without any changes. 与えられた引数、全く変更なしに。
Availability 有効性
Technology
static func + (x: Self) -> Self
The given argument without any changes. 与えられた引数、全く変更なしに。
You can use the unary plus operator (+
) to provide symmetry in your code for positive numbers when also using the unary minus operator.
あなたは、単項加算演算子(+
)を使って、対称性を正の数に対してあなたにコードにおいて提供できます、同様に単項減算演算子を使う時に。
let x = -21
let y = +21
// x == -21
// y == 21