digitalmars.D.announce - Ali Cehrili on D Ranges at D Conference 2012
- Walter Bright (7/7) May 27 2012 Elements of containers (and pseudo-containers) are accessed by the range...
- =?UTF-8?B?QWxpIMOHZWhyZWxp?= (6/13) May 27 2012 Great! :) Walter, there is a typo in my last name and it's not the first...
- Walter Bright (4/5) May 27 2012 OOPS! Fixed.
- Jonathan M Davis (11/18) May 27 2012 o? Is
- Walter Bright (4/20) May 27 2012 Thanks! Checking it out, there's an entity for it:
- Jonathan M Davis (7/28) May 27 2012 too? Is
- Walter Bright (3/5) May 27 2012 I also love D's support for entities: http://dlang.org/entity.html
- =?UTF-8?B?QWxpIMOHZWhyZWxp?= (9/15) May 27 2012 Thanks but the misspelling has overpowered the correct one: Now both the...
- Walter Bright (6/11) May 27 2012 I generally prefer using named entities, as some of my programs cannot d...
- Andrei Alexandrescu (3/15) May 27 2012 Also please make sure the "C" has a cedilla.
Elements of containers (and pseudo-containers) are accessed by the range abstraction of D. D's InputRange, ForwardRange, BidirectionalRange, RandomAccessRange, and OutputRange are sufficient to connect many types of containers and many types of algorithms. Most modules of Phobos, including std.range, provide algorithms and ranges that make programs consistent, fast, and easy to maintain. -- http://astoriaseminar.com/sessions.html
May 27 2012
On 05/27/2012 01:12 PM, Walter Bright wrote:Elements of containers (and pseudo-containers) are accessed by the range abstraction of D. D's InputRange, ForwardRange, BidirectionalRange, RandomAccessRange, and OutputRange are sufficient to connect many types of containers and many types of algorithms. Most modules of Phobos, including std.range, provide algorithms and ranges that make programs consistent, fast, and easy to maintain. -- http://astoriaseminar.com/sessions.htmlGreat! :) Walter, there is a typo in my last name and it's not the first letter. ;) Ali -- D Programming Language Tutorial: http://ddili.org/ders/d.en/index.html
May 27 2012
On 5/27/2012 1:38 PM, Ali Çehreli wrote:Great! :) Walter, there is a typo in my last name and it's not the first letter. ;)OOPS! Fixed. What's the Unicode number for the first letter, so I can fix that, too? Is there an entity name for it?
May 27 2012
On Sunday, May 27, 2012 13:53:24 Walter Bright wrote:On 5/27/2012 1:38 PM, Ali =C3=87ehreli wrote:firstGreat! :) Walter, there is a typo in my last name and it's not the =o? Isletter. ;)OOPS! Fixed. =20 What's the Unicode number for the first letter, so I can fix that, to=there an entity name for it?According to this import std.stdio; void main() { writefln("%x", '=C3=87'); } it's \u00c7. - Jonathan M Davis
May 27 2012
On 5/27/2012 2:01 PM, Jonathan M Davis wrote:On Sunday, May 27, 2012 13:53:24 Walter Bright wrote:Thanks! Checking it out, there's an entity for it: Ç Fixed the web pages.On 5/27/2012 1:38 PM, Ali Çehreli wrote:According to this import std.stdio; void main() { writefln("%x", 'Ç'); } it's \u00c7. - Jonathan M DavisGreat! :) Walter, there is a typo in my last name and it's not the first letter. ;)OOPS! Fixed. What's the Unicode number for the first letter, so I can fix that, too? Is there an entity name for it?
May 27 2012
On Sunday, May 27, 2012 14:01:09 Jonathan M Davis wrote:On Sunday, May 27, 2012 13:53:24 Walter Bright wrote:e firstOn 5/27/2012 1:38 PM, Ali =C3=87ehreli wrote:Great! :) Walter, there is a typo in my last name and it's not th=too? Isletter. ;)=20 OOPS! Fixed. =20 What's the Unicode number for the first letter, so I can fix that, =Having .d files be able to be UTF-8 combined with unicode support built= into=20 the language itself can be _very_ handy. - Jonathan M Davisthere an entity name for it?=20 According to this =20 import std.stdio; =20 void main() { writefln("%x", '=C3=87'); } =20 =20 it's \u00c7.
May 27 2012
On 5/27/2012 2:03 PM, Jonathan M Davis wrote:Having .d files be able to be UTF-8 combined with unicode support built into the language itself can be _very_ handy.I also love D's support for entities: http://dlang.org/entity.html I'm amazed this is not adopted by other languages. It is so damned convenient.
May 27 2012
On 05/27/2012 01:53 PM, Walter Bright wrote:On 5/27/2012 1:38 PM, Ali Çehreli wrote:Thanks but the misspelling has overpowered the correct one: Now both the Speakers and the Sessions page has the wrong name! :D Also, there is a rogue "Ddoc" at the end of the speaker bio. About the letter, if you are using ddoc as I suspect, just copy paste the Ç into the ddoc source file. Both D and ddoc support Unicode. ;) Ali -- D Programming Language Tutorial: http://ddili.org/ders/d.en/index.htmlGreat! :) Walter, there is a typo in my last name and it's not the first letter. ;)OOPS! Fixed. What's the Unicode number for the first letter, so I can fix that, too? Is there an entity name for it?
May 27 2012
On 5/27/2012 2:15 PM, Ali Çehreli wrote:Thanks but the misspelling has overpowered the correct one: Now both the Speakers and the Sessions page has the wrong name! :D Also, there is a rogue "Ddoc" at the end of the speaker bio.Alas! Someday, I might get this right. Fixed.About the letter, if you are using ddoc as I suspect, just copy paste the Ç into the ddoc source file. Both D and ddoc support Unicode. ;)I generally prefer using named entities, as some of my programs cannot deal with non-ascii. I've also had trouble with copy-pasta of these things, because I'll get the hex value for some random code page, rather than the Unicode code point.
May 27 2012
On 5/27/12 3:38 PM, Ali Çehreli wrote:On 05/27/2012 01:12 PM, Walter Bright wrote:Also please make sure the "C" has a cedilla. AndreiElements of containers (and pseudo-containers) are accessed by the range abstraction of D. D's InputRange, ForwardRange, BidirectionalRange, RandomAccessRange, and OutputRange are sufficient to connect many types of containers and many types of algorithms. Most modules of Phobos, including std.range, provide algorithms and ranges that make programs consistent, fast, and easy to maintain. -- http://astoriaseminar.com/sessions.htmlGreat! :) Walter, there is a typo in my last name and it's not the first letter. ;)
May 27 2012