Member predicate Declaration::getFullyQualifiedNameWithTypes
Gets the fully qualified name of this declaration, including types, for example
the fully qualified name with types of M
on line 3 is N.C.M(int, string)
in
namespace N {
class C {
void M(int i, string s) { }
}
}