This commit is contained in:
Arne Döring
2018-11-07 10:58:48 +01:00
committed by GitHub
parent fc740c54ec
commit c2c05f5e72

View File

@@ -21,7 +21,7 @@ import math
type
Complex*[T: SomeFloat] = object
re, im: T
re*, im*: T
## A complex number, consisting of a real and an imaginary part.
Complex64* = Complex[float64]
## Alias for a pair of 64-bit floats.