Ddoc $(D_S The D Style, $(P $(I The D Style) is a set of style conventions for writing D programs. The D Style is not enforced by the compiler, it is purely cosmetic and a matter of choice. Adhering to the D Style, however, will make it easier for others to work with your code and easier for you to work with others' code. The D Style can form the starting point for a project style guide customized for your project team. ) $(P Submissions to Phobos and other official D source code will follow these guidelines. )

White Space

$(UL $(LI One statement per line.) $(LI Use spaces instead of hardware tabs.) $(LI Each indentation level will be four columns.) $(LI Operators are separated by single spaces from their operands.) $(LI Two blank lines separating function bodies.) $(LI One blank line separating variable declarations from statements in function bodies.) )

Comments

$(UL $(LI Use // comments to document a single line: ------------------------------- statement; // comment statement; // comment ------------------------------- ) $(LI Use block comments to document a multiple line block of statements: ------------------------------- /* comment * comment */ statement; statement; ------------------------------- ) $(LI Use $(CODE version (none)) to $(SINGLEQUOTE comment out) a piece of trial code that is syntactically valid: ------------------------------- version (none) { /* comment * comment */ statement; statement; } ------------------------------- It can be turned on with $(CODE version(all)): ------------------------------- version (all) { /* comment * comment */ statement; statement; } ------------------------------- ) $(LI Use nesting comments to $(SINGLEQUOTE comment out) a piece of syntactically invalid code: ------------------------------- /+++++ /* comment * comment */ { statement; statement; +++++/ ------------------------------- ) )

Naming Conventions

$(DL $(DT General)
Names formed by joining multiple words should have each word other than the first capitalized. Names shall not begin with an underscore $(SINGLEQUOTE _) unless they are private member variables. ------------------------------- int myFunc(); ------------------------------- $(DT Module) $(DD Module and package names are all lower case, and only contain the characters [a..z][0..9][_]. This avoids problems dealing with case insensitive file systems.) $(DT C Modules) $(DD Modules that are interfaces to C functions go into the "c" package, for example: ------------------------------- import std.c.stdio; ------------------------------- Module names should be all lower case. ) $(DT Class, Struct, Union, Enum, Template names) $(DD are capitalized. ------------------------------- class Foo; class FooAndBar; ------------------------------- ) $(DD An exception is that eponymous templates that return a value instead of a type should not be capitalized, as they are conceptually more similar to functions. ------------------------- template GetSomeType(T) {} template isSomeType(T) {} ------------------------- ) $(DT Function names) $(DD Function names are not capitalized. ------------------------------- int done(); int doneProcessing(); ------------------------------- ) $(V1 $(DT Const names) $(DD Are in all caps.) ) $(DT Enum member names) $(DD Are in lowerCamelCase.) )

Meaningless Type Aliases

$(P Things like:) ------------------------------- alias void VOID; alias int INT; alias int* pint; ------------------------------- $(P should be avoided.)

Declaration Style

$(P Since the declarations are left-associative, left justify them:) ------------------------------- int[] x, y; // makes it clear that x and y are the same type int** p, q; // makes it clear that p and q are the same type ------------------------------- $(P to emphasize their relationship. Do not use the C style:) ------------------------------- int []x, y; // confusing since y is also an int[] int **p, q; // confusing since q is also an int** -------------------------------

Operator Overloading

$(P Operator overloading is a powerful tool to extend the basic types supported by the language. But being powerful, it has great potential for creating obfuscated code. In particular, the existing D operators have conventional meanings, such as $(SINGLEQUOTE +) means $(SINGLEQUOTE add) and $(SINGLEQUOTE <<) means $(SINGLEQUOTE shift left). Overloading operator $(SINGLEQUOTE +) with a meaning different from $(SINGLEQUOTE add) is arbitrarily confusing and should be avoided. )

Hungarian Notation

$(P Using hungarian notation to denote the type of a variable is a bad idea. However, using notation to denote the purpose of a variable (that cannot be expressed by its type) is often a good practice.)

Documentation

$(P All public declarations will be documented in $(LINK2 ddoc.html, Ddoc) format. )

Unit Tests

$(P As much as practical, all functions will be exercised by unit tests using unittest blocks immediately following the function to be tested. Every path of code should be executed at least once, verified by the $(LINK2 code_coverage.html, code coverage analyzer). ) ) Macros: TITLE=The D Style WIKI=DStyle