-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #228 from markuswntr/quaternion/sync
Sync latest package changes with `Quaternions` branch
- Loading branch information
Showing
67 changed files
with
4,417 additions
and
1,587 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
//===--- Complex+AdditiveArithmetic.swift ---------------------*- swift -*-===// | ||
// | ||
// This source file is part of the Swift Numerics open source project | ||
// | ||
// Copyright (c) 2019-2021 Apple Inc. and the Swift Numerics project authors | ||
// Licensed under Apache License v2.0 with Runtime Library Exception | ||
// | ||
// See https://swift.org/LICENSE.txt for license information | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
import RealModule | ||
|
||
extension Complex: AdditiveArithmetic { | ||
/// The additive identity, with real and imaginary parts both zero. | ||
/// | ||
/// See also: `one`, `i`, `infinity` | ||
@_transparent | ||
public static var zero: Complex { | ||
Complex(0, 0) | ||
} | ||
|
||
@_transparent | ||
public static func +(z: Complex, w: Complex) -> Complex { | ||
return Complex(z.x + w.x, z.y + w.y) | ||
} | ||
|
||
@_transparent | ||
public static func -(z: Complex, w: Complex) -> Complex { | ||
return Complex(z.x - w.x, z.y - w.y) | ||
} | ||
|
||
@_transparent | ||
public static func +=(z: inout Complex, w: Complex) { | ||
z = z + w | ||
} | ||
|
||
@_transparent | ||
public static func -=(z: inout Complex, w: Complex) { | ||
z = z - w | ||
} | ||
} |
Oops, something went wrong.