First
If the args short enough and have (almost) similar length, I think below visually good enough
int variable_with_really_long_name = functionWhichDoMore(Argument1, ArgumentA2,
ArgumentA3, Argument4,
ArgumentA5, Argument6);
Second
When It getting worse, one column of argument really help
int variable_with_really_long_name = somefunctionWhichDoMore(Argument_Expand1,
Argument2,
Argument_Expand3,
Argument_Expand4,
Argument_Expand5,
Argument6);
Third
But, now, How if it is worsen! What now? Try this one
int variable_with_really_long_name = someFunctionWhichDoMore
(
Argument_Expand_More1,
Argument_Expand_More2,
Argument_Expand3, Argument4,
Argument_Expand_More5, Argument6
);
By the way, if you want a consistent look, use the third in all condition above.
Justify : Neatly put on and we know that it is a function call with lots of (6) args. And I like my code looks neat and !(so_ugly)
.
Critics are welcome. Please comment up.