mirror of
https://github.com/dlang/phobos.git
synced 2025-04-26 13:10:35 +03:00
Remove redundant parenthesis for getters, and use assignment syntax for setters
This commit is contained in:
parent
245274b408
commit
01df2f60be
28 changed files with 188 additions and 189 deletions
|
@ -77,8 +77,8 @@ version (all)
|
|||
OutBuffer b = new OutBuffer(); // outbuffer
|
||||
std.ctype.tolower('A'); // ctype
|
||||
RegExp r = new RegExp(null, null); // regexp
|
||||
uint ranseed = std.random.unpredictableSeed();
|
||||
thisTid();
|
||||
uint ranseed = std.random.unpredictableSeed;
|
||||
thisTid;
|
||||
int a[];
|
||||
a.reverse; // adi
|
||||
a.sort; // qsort
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue