Graph(Node<T>* const& initialNode_t);
initialNode_t is a reference to a const ptr of type Node<T>.
https://c-faq.com/decl/spiral.anderson.html
and
https://cdecl.plus/ will help, but this can’t handle template types (I think)
Graph(Node<T>* const& initialNode_t);
initialNode_t is a reference to a const ptr of type Node<T>.
https://c-faq.com/decl/spiral.anderson.html
and
https://cdecl.plus/ will help, but this can’t handle template types (I think)