Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
template<class T0> operator A<T0> ...
Without the template argument, its a conversion to A<T1>, i.e. a no-op.
A<T1>