I've just came upon a strange construct:
void (std::thread::*&&)()
I know it is a sort of a pointer to a class member function. But how to interpret the '&&' operand? What is the meaning of this?
I've just came upon a strange construct:
void (std::thread::*&&)()
I know it is a sort of a pointer to a class member function. But how to interpret the '&&' operand? What is the meaning of this?