I would like to assign an object of a class C, from multiple parameters in differnet variables.
I could make a structure containing all those parameters and an assignment operator for this type, but that would mean an additionnal copy of the value or address of each parameter.
Are we allowed to define an assignmeent operator C& C::operator=(P1 param1, P2 param2);
that would be callled like