|
|
|
|
|
by weinzierl
701 days ago
|
|
I (still) find it confusing that in C++ the symbols to declare a pointer and a reference are the same as the ones for dereference and address-of. That pointers declared with * in Go are more like references (&) and that there are no true pointers (I think) does not really help. |
|
If you mean pointers arithmetic, that can be achieved with unsafe package.