Where is naming convention?

2012-05-30 Thread Denis Shelomovskij
According to http://dlang.org/dstyle.html "Names formed by joining multiple words should have each word other than the first capitalized." So I thought that this is right: core.cpuid.fp16c /// Is FP16C supported core.cpuid.amdMmx /// Are AMD extensions to MMX supported? But in Phobos we hav

Re: Where is naming convention?

2012-05-30 Thread Alex Rønne Petersen
On 30-05-2012 20:50, Denis Shelomovskij wrote: According to http://dlang.org/dstyle.html "Names formed by joining multiple words should have each word other than the first capitalized." So I thought that this is right: core.cpuid.fp16c /// Is FP16C supported core.cpuid.amdMmx /// Are AMD extensi

Re: Where is naming convention?

2012-05-30 Thread Denis Shelomovskij
30.05.2012 22:53, Alex Rønne Petersen написал: We're moving towards using ASCII rather than Ascii as the naming style for abbreviations. (The style rule about joining words only concerns itself with whole words, not abbreviations.) Could someone with good English state it in dstyle.html? --

Re: Where is naming convention?

2012-05-30 Thread Jonathan M Davis
On Wednesday, May 30, 2012 22:59:17 Denis Shelomovskij wrote: > 30.05.2012 22:53, Alex Rønne Petersen написал: > > We're moving towards using ASCII rather than Ascii as the naming style > > for abbreviations. > > > > (The style rule about joining words only concerns itself with whole > > words, no

Re: Where is naming convention?

2012-06-01 Thread Denis Shelomovskij
30.05.2012 22:53, Alex Rønne Petersen написал: We're moving towards using ASCII rather than Ascii as the naming style for abbreviations. (The style rule about joining words only concerns itself with whole words, not abbreviations.) Does it mean that we loose our first latter rule (capitalized

Re: Where is naming convention?

2012-06-01 Thread Jonathan M Davis
On Saturday, June 02, 2012 09:39:06 Denis Shelomovskij wrote: > 30.05.2012 22:53, Alex Rønne Petersen написал: > > We're moving towards using ASCII rather than Ascii as the naming style > > for abbreviations. > > > > (The style rule about joining words only concerns itself with whole > > words, no

Re: Where is naming convention?

2012-06-02 Thread Kevin Cox
On Jun 2, 2012 1:54 AM, "Jonathan M Davis" wrote: > No. It simply means that all of the letters of an acronym are always the same > case. So, you'd have > > class ASCIIException {} > void funcASCII() {} > int asciiVar; > enum UTFEnum { asciiEnum, utfEnum } Oh, good solution, I could never decide

Re: Where is naming convention?

2012-06-02 Thread Denis Shelomovskij
02.06.2012 9:53, Jonathan M Davis написал: No. It simply means that all of the letters of an acronym are always the same case. Good! -- Денис В. Шеломовский Denis V. Shelomovskij

Re: Where is naming convention?

2012-06-02 Thread John Belmonte
On Wednesday, 30 May 2012 at 18:53:26 UTC, Alex Rønne Petersen wrote: We're moving towards using ASCII rather than Ascii as the naming style for abbreviations. I don't agree with this style. Camel case employs capitalization as a word delineation cue in lieu of spaces. Incorporating acronym

Re: Where is naming convention?

2012-06-02 Thread q66
On Saturday, 2 June 2012 at 21:01:03 UTC, John Belmonte wrote: On Wednesday, 30 May 2012 at 18:53:26 UTC, Alex Rønne Petersen wrote: We're moving towards using ASCII rather than Ascii as the naming style for abbreviations. I don't agree with this style. Camel case employs capitalization as a

Re: Where is naming convention?

2012-06-02 Thread Alex Rønne Petersen
On 03-06-2012 01:55, q66 wrote: On Saturday, 2 June 2012 at 21:01:03 UTC, John Belmonte wrote: On Wednesday, 30 May 2012 at 18:53:26 UTC, Alex Rønne Petersen wrote: We're moving towards using ASCII rather than Ascii as the naming style for abbreviations. I don't agree with this style. Camel c