Skip to content

Instantly share code, notes, and snippets.

@mattt
Last active August 3, 2017 21:01
struct Complex<T: FloatLiteralConvertible> {
var real: T
var imaginary: T
}
func +(lhs: Complex<Double>, rhs: Complex<Double>) -> Complex<Double> {
return Complex<Double>(real: lhs.real + rhs.real, imaginary: lhs.imaginary + rhs.imaginary)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment