Hi,
I am working through a tutorial and have come across this line:
call{T<:Real}(::Type{Complex{T<:Real}}, re::T<:Real, im::T<:Real) at
complex.jl:4
when running:
methods(Complex)
I think it says:
when calling Complex() you can provide two inputs either a value T which must
be a subtype of type abstract type Real OR ??
So an example would be:
Complex(10) or Complex(5,1)
Is this correct?
-Thank you
