Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 320 Bytes

STYLE.md

File metadata and controls

14 lines (8 loc) · 320 Bytes

Coding Style

Use good judgment, and taste. Appreciate simplicity.

In absence of the above, consider the C++ Core Guidelines.

Logical connectives

Use:

  • not for logical negation
  • and for logical conjunction
  • or for logical disjunction