Line continuation with operators cc4m_logo_inline

IDLAYOUT-10
TitleBinary operators in multi-line statements shall be placed at the start and not at the end of the line.
PriorityRecommended
Severity level9
DescriptionPlace binary operators in multi-line statements at the start and not at the end of the line.
RationaleBy placing binary operators at the start of the line, it is immediately clear what the line does.

Avoid:

isDone = isImplemented && ...
    isTested && ...
    isDocumented;

Instead use:

isDone = isImplemented ...
    && isTested ...
    && isDocumented;