What is this syntax for in C++? Can someone point me to the technical term so I can see if I find anything in my text?
At first I thought it was a prototype but then the =
and (*fn)
threw me off...
Here is my example:
void (*fn) (int&,int&) = x;