I was looking at some code block in C++
and come across these two statements -
using xx = double;
using yy = std::complex< val >
Can you please help me to understand above 2 statement and why there are required to be defined in this way?
I was looking at some code block in C++
and come across these two statements -
using xx = double;
using yy = std::complex< val >
Can you please help me to understand above 2 statement and why there are required to be defined in this way?