Is there any way to display template method in UML (I mean a c++ template method, not pattern)? I've found template classes only.
Suppose i have
class A {
public:
template <typename T>
std::vector<T> func(T& var);
};
So, the only way I can display it in uml now is +func(in var : T&) : std::vector<T>
. Is there any way to say it's template, and T is not a usual type?