Re: TDPL reaches Thermopylae level

2009-10-30 Thread Lars T. Kyllingstad
Nick Sabalausky wrote: Chris Nicholson-Sauls ibisbase...@gmail.com wrote in message news:hcctuf$140...@digitalmars.com... Granted LTR is common enough to be expectable and acceptable. To be perfectly honest, I don't believe I have *ever* even used wchar/wstring. Char/string gosh yes;

Re: TDPL reaches Thermopylae level

2009-10-30 Thread Andrei Alexandrescu
Lars T. Kyllingstad wrote: Nick Sabalausky wrote: Chris Nicholson-Sauls ibisbase...@gmail.com wrote in message news:hcctuf$140...@digitalmars.com... Granted LTR is common enough to be expectable and acceptable. To be perfectly honest, I don't believe I have *ever* even used wchar/wstring.

Re: TDPL reaches Thermopylae level

2009-10-30 Thread Justin Johansson
Andrei Alexandrescu Wrote: Lars T. Kyllingstad wrote: Nick Sabalausky wrote: Chris Nicholson-Sauls ibisbase...@gmail.com wrote in message news:hcctuf$140...@digitalmars.com... Granted LTR is common enough to be expectable and acceptable. To be perfectly honest, I don't believe I

Re: TDPL reaches Thermopylae level

2009-10-30 Thread Andrei Alexandrescu
Justin Johansson wrote: Andrei Alexandrescu Wrote: Lars T. Kyllingstad wrote: Nick Sabalausky wrote: Chris Nicholson-Sauls ibisbase...@gmail.com wrote in message news:hcctuf$140...@digitalmars.com... Granted LTR is common enough to be expectable and acceptable. To be perfectly honest, I

Re: TDPL reaches Thermopylae level

2009-10-29 Thread Chris Nicholson-Sauls
Justin Johansson wrote: Chris Nicholson-Sauls Wrote: Andrei Alexandrescu wrote: Bill Baxter wrote: On Mon, Oct 26, 2009 at 11:51 AM, Andrei Alexandrescu seewebsiteforem...@erdani.org wrote: Bill Baxter wrote: On Mon, Oct 26, 2009 at 8:47 AM, Jeremie Pelletier jerem...@gmail.com wrote:

Re: TDPL reaches Thermopylae level

2009-10-29 Thread Leandro Lucarella
Andrei Alexandrescu, el 27 de octubre a las 19:32 me escribiste: Leandro Lucarella wrote: Bill Baxter, el 27 de octubre a las 13:12 me escribiste: They are? ...Then what is the point of wstring, dstring? They are all just different representations of Unicode. string, which is unicode in

Re: TDPL reaches Thermopylae level

2009-10-29 Thread Justin Johansson
Chris Nicholson-Sauls Wrote: Granted LTR is common enough to be expectable and acceptable. To be perfectly honest, I don't believe I have *ever* even used wchar/wstring. Char/string gosh yes; dchar/dstring quite a bit as well, where I need the simplicity; but I've yet to feel much

Re: TDPL reaches Thermopylae level

2009-10-29 Thread Nick Sabalausky
Chris Nicholson-Sauls ibisbase...@gmail.com wrote in message news:hcctuf$140...@digitalmars.com... Granted LTR is common enough to be expectable and acceptable. To be perfectly honest, I don't believe I have *ever* even used wchar/wstring. Char/string gosh yes; dchar/dstring quite a bit as

Re: TDPL reaches Thermopylae level

2009-10-27 Thread Chris Nicholson-Sauls
Andrei Alexandrescu wrote: Bill Baxter wrote: On Mon, Oct 26, 2009 at 11:51 AM, Andrei Alexandrescu seewebsiteforem...@erdani.org wrote: Bill Baxter wrote: On Mon, Oct 26, 2009 at 8:47 AM, Jeremie Pelletier jerem...@gmail.com wrote: Andrei Alexandrescu wrote: 303 pages and counting! Andrei

Re: TDPL reaches Thermopylae level

2009-10-27 Thread Bill Baxter
On Tue, Oct 27, 2009 at 4:37 AM, Denis Koroskin 2kor...@gmail.com wrote: On Tue, 27 Oct 2009 10:04:33 +0300, Chris Nicholson-Sauls ibisbase...@gmail.com wrote: Andrei Alexandrescu wrote: Bill Baxter wrote: On Mon, Oct 26, 2009 at 11:51 AM, Andrei Alexandrescu seewebsiteforem...@erdani.org

Re: TDPL reaches Thermopylae level

2009-10-27 Thread Andrei Alexandrescu
Chris Nicholson-Sauls wrote: Andrei Alexandrescu wrote: [snip] Well, I guess. In particular, to me it's not clear what type we should assign to a concatenation between a string and a wstring. With ~=, it's much easier... My intuition would be to expect the same as adding an int to a byte:

Re: TDPL reaches Thermopylae level

2009-10-27 Thread Justin Johansson
Chris Nicholson-Sauls Wrote: Andrei Alexandrescu wrote: Bill Baxter wrote: On Mon, Oct 26, 2009 at 11:51 AM, Andrei Alexandrescu seewebsiteforem...@erdani.org wrote: Bill Baxter wrote: On Mon, Oct 26, 2009 at 8:47 AM, Jeremie Pelletier jerem...@gmail.com wrote: Andrei Alexandrescu

Re: TDPL reaches Thermopylae level

2009-10-27 Thread Michel Fortin
On 2009-10-27 09:07:06 -0400, Andrei Alexandrescu seewebsiteforem...@erdani.org said: My current thought is to ascribe lhs ~ rhs the same type as lhs (thereby making ~ consistent with ~= by making lhs ~= rhs same as lhs = lhs ~ rhs) in case lhs is a string type. If lhs is a character type,

Re: TDPL reaches Thermopylae level

2009-10-27 Thread Bill Baxter
On Tue, Oct 27, 2009 at 6:56 AM, Michel Fortin michel.for...@michelf.com wrote: On 2009-10-27 09:07:06 -0400, Andrei Alexandrescu seewebsiteforem...@erdani.org said: My current thought is to ascribe lhs ~ rhs the same type as lhs (thereby making ~ consistent with ~= by making lhs ~= rhs same

Re: TDPL reaches Thermopylae level

2009-10-27 Thread Andrei Alexandrescu
Bill Baxter wrote: On Tue, Oct 27, 2009 at 6:56 AM, Michel Fortin michel.for...@michelf.com wrote: On 2009-10-27 09:07:06 -0400, Andrei Alexandrescu seewebsiteforem...@erdani.org said: My current thought is to ascribe lhs ~ rhs the same type as lhs (thereby making ~ consistent with ~= by

Re: TDPL reaches Thermopylae level

2009-10-27 Thread Pelle Månsson
Bill Baxter wrote: On Tue, Oct 27, 2009 at 6:56 AM, Michel Fortin michel.for...@michelf.com wrote: On 2009-10-27 09:07:06 -0400, Andrei Alexandrescu seewebsiteforem...@erdani.org said: My current thought is to ascribe lhs ~ rhs the same type as lhs (thereby making ~ consistent with ~= by

Re: TDPL reaches Thermopylae level

2009-10-27 Thread Bill Baxter
On Tue, Oct 27, 2009 at 12:48 PM, Pelle Månsson pelle.mans...@gmail.com wrote: Bill Baxter wrote: On Tue, Oct 27, 2009 at 6:56 AM, Michel Fortin michel.for...@michelf.com wrote: On 2009-10-27 09:07:06 -0400, Andrei Alexandrescu seewebsiteforem...@erdani.org said: My current thought is to

Re: TDPL reaches Thermopylae level

2009-10-27 Thread Pelle Månsson
Bill Baxter wrote: On Tue, Oct 27, 2009 at 12:48 PM, Pelle Månsson pelle.mans...@gmail.com wrote: Bill Baxter wrote: On Tue, Oct 27, 2009 at 6:56 AM, Michel Fortin michel.for...@michelf.com wrote: On 2009-10-27 09:07:06 -0400, Andrei Alexandrescu seewebsiteforem...@erdani.org said: My

Re: TDPL reaches Thermopylae level

2009-10-27 Thread Bill Baxter
On Tue, Oct 27, 2009 at 1:06 PM, Pelle Månsson pelle.mans...@gmail.com wrote: Bill Baxter wrote: On Tue, Oct 27, 2009 at 12:48 PM, Pelle Månsson pelle.mans...@gmail.com wrote: Bill Baxter wrote: On Tue, Oct 27, 2009 at 6:56 AM, Michel Fortin michel.for...@michelf.com wrote: On

Re: TDPL reaches Thermopylae level

2009-10-27 Thread Pelle Månsson
Bill Baxter wrote: On Tue, Oct 27, 2009 at 1:06 PM, Pelle Månsson pelle.mans...@gmail.com wrote: Bill Baxter wrote: On Tue, Oct 27, 2009 at 12:48 PM, Pelle Månsson pelle.mans...@gmail.com wrote: Bill Baxter wrote: On Tue, Oct 27, 2009 at 6:56 AM, Michel Fortin michel.for...@michelf.com

Re: TDPL reaches Thermopylae level

2009-10-27 Thread Leandro Lucarella
Bill Baxter, el 27 de octubre a las 13:12 me escribiste: They are? ...Then what is the point of wstring, dstring? They are all just different representations of Unicode. string, which is unicode in UTF-8, is good because it's the least wasteful for mostly ASCII text. And has a nice

Re: TDPL reaches Thermopylae level

2009-10-27 Thread Andrei Alexandrescu
Leandro Lucarella wrote: Bill Baxter, el 27 de octubre a las 13:12 me escribiste: They are? ...Then what is the point of wstring, dstring? They are all just different representations of Unicode. string, which is unicode in UTF-8, is good because it's the least wasteful for mostly ASCII text.

Re: TDPL reaches Thermopylae level

2009-10-27 Thread Leandro Lucarella
Andrei Alexandrescu, el 27 de octubre a las 19:32 me escribiste: Leandro Lucarella wrote: Bill Baxter, el 27 de octubre a las 13:12 me escribiste: They are? ...Then what is the point of wstring, dstring? They are all just different representations of Unicode. string, which is unicode in

Re: TDPL reaches Thermopylae level

2009-10-26 Thread Jeremie Pelletier
Andrei Alexandrescu wrote: 303 pages and counting! Andrei Soon the PI level, or at least 10 times PI!

Re: TDPL reaches Thermopylae level

2009-10-26 Thread Bill Baxter
On Mon, Oct 26, 2009 at 8:47 AM, Jeremie Pelletier jerem...@gmail.com wrote: Andrei Alexandrescu wrote: 303 pages and counting! Andrei Soon the PI level, or at least 10 times PI! A hundred even. ;-) --bb

Re: TDPL reaches Thermopylae level

2009-10-26 Thread Andrei Alexandrescu
Bill Baxter wrote: On Mon, Oct 26, 2009 at 8:47 AM, Jeremie Pelletier jerem...@gmail.com wrote: Andrei Alexandrescu wrote: 303 pages and counting! Andrei Soon the PI level, or at least 10 times PI! A hundred even. ;-) Coming along. I'm writing about strings and Unicode right now. I was

Re: TDPL reaches Thermopylae level

2009-10-26 Thread Bill Baxter
On Mon, Oct 26, 2009 at 11:51 AM, Andrei Alexandrescu seewebsiteforem...@erdani.org wrote: Bill Baxter wrote: On Mon, Oct 26, 2009 at 8:47 AM, Jeremie Pelletier jerem...@gmail.com wrote: Andrei Alexandrescu wrote: 303 pages and counting! Andrei Soon the PI level, or at least 10 times

Re: TDPL reaches Thermopylae level

2009-10-26 Thread Jeremie Pelletier
Andrei Alexandrescu wrote: Bill Baxter wrote: On Mon, Oct 26, 2009 at 8:47 AM, Jeremie Pelletier jerem...@gmail.com wrote: Andrei Alexandrescu wrote: 303 pages and counting! Andrei Soon the PI level, or at least 10 times PI! A hundred even. ;-) Coming along. I'm writing about strings

Re: TDPL reaches Thermopylae level

2009-10-26 Thread Andrei Alexandrescu
Jeremie Pelletier wrote: Andrei Alexandrescu wrote: Bill Baxter wrote: On Mon, Oct 26, 2009 at 8:47 AM, Jeremie Pelletier jerem...@gmail.com wrote: Andrei Alexandrescu wrote: 303 pages and counting! Andrei Soon the PI level, or at least 10 times PI! A hundred even. ;-) Coming along.

Re: TDPL reaches Thermopylae level

2009-10-26 Thread Andrei Alexandrescu
Bill Baxter wrote: On Mon, Oct 26, 2009 at 11:51 AM, Andrei Alexandrescu seewebsiteforem...@erdani.org wrote: Bill Baxter wrote: On Mon, Oct 26, 2009 at 8:47 AM, Jeremie Pelletier jerem...@gmail.com wrote: Andrei Alexandrescu wrote: 303 pages and counting! Andrei Soon the PI level, or at

Re: TDPL reaches Thermopylae level

2009-10-26 Thread Bill Baxter
On Mon, Oct 26, 2009 at 4:05 PM, Jeremie Pelletier jerem...@gmail.com wrote: Andrei Alexandrescu wrote: Jeremie Pelletier wrote: Andrei Alexandrescu wrote: Bill Baxter wrote: On Mon, Oct 26, 2009 at 8:47 AM, Jeremie Pelletier jerem...@gmail.com wrote: Andrei Alexandrescu wrote: 303

TDPL reaches Thermopylae level

2009-10-25 Thread Andrei Alexandrescu
303 pages and counting! Andrei

Re: TDPL reaches Thermopylae level

2009-10-25 Thread Walter Bright
Andrei Alexandrescu wrote: 303 pages and counting! Come and get them!