As a brief background, since this question is about a specific type of memory management: I know "*" is a pointer when used as a postfix (i.e. after a type name) and can also be used as a dereferencing operator if it is used as a prefix, but I am confused about what the "&" equivalent is of that.
In other words, "&" is the address of operator as a prefix... but what does it mean as a postfix?
My question is how you would describe a postfix "&" (address of) operator. For instance, how would you describe something like:
vector<Shape∗>& v
in plain English?