Hi, I was looking at the tutorial of the function template std::make_pair. I don't recognize what the symbol && following the arguements type means. Does it mean reference? What is the difference between using & and && here?
Thank you, Zhuge! The webpage you suggested is very helpful! I understand what double ampersand means now!
To Ispil: Thank you. But I'm not really sure if there is something like a reference to a reference in C plus plus? I mean, how can we make a reference pointing to another reference? References are quite different from pointers. They need to be initialized at declaration. After declaration, they are exactly the same as what they refer to. In other words, there is no dereferencing for references.