Skip to content

Latest commit

 

History

History
55 lines (40 loc) · 862 Bytes

RR0049.md

File metadata and controls

55 lines (40 loc) · 862 Bytes

Wrap binary expression

Property Value
Id RR0049
Title Wrap binary expression
Syntax logical and/or expression, bitwise and/or expression
Enabled by Default

Usage

Before

if (x && y && z)
{
}

After

if (x
    && y
    && z)
{
}

Before

if (x
    && y
    && z)
{
}

After

if (x && y && z)
{
}

See Also

(Generated with DotMarkdown)