I'm reading template aliases here: http://en.cppreference.com/w/cpp/language/type_alias
And I'm wondering, even if it's written on the very first line of the page I linked, what's the difference between a typedef and a type alias (using mytype = T;
)
Aren't they interchangeable?