Re: Why does the example on page 8 of TDPL work without importing std.algorithm for splitter?

2011-01-04 Thread Lars T. Kyllingstad
On Mon, 03 Jan 2011 17:18:34 -0600, Ellery Newcomer wrote: If you're importing some other phobos module, I would guess an instance of this bug: http://d.puremagic.com/issues/show_bug.cgi?id=314 On 01/03/2011 10:56 AM, Bryce Watkins wrote: However when I use splitter in my code it works

Re: Why does the example on page 8 of TDPL work without importing std.algorithm for splitter?

2011-01-04 Thread Bryce Watkins
On 4/01/2011 9:26 p.m., Lars T. Kyllingstad wrote: On Mon, 03 Jan 2011 17:18:34 -0600, Ellery Newcomer wrote: If you're importing some other phobos module, I would guess an instance of this bug: http://d.puremagic.com/issues/show_bug.cgi?id=314 On 01/03/2011 10:56 AM, Bryce Watkins wrote:

Why does the example on page 8 of TDPL work without importing std.algorithm for splitter?

2011-01-03 Thread Bryce Watkins
Hi all, Can someone explain this to me please? I have been trying to understand why you would use splitter over split between the examples on page 8 and page 12, as an errata has been posted: http://erdani.com/tdpl/errata/index.php?title=Main_Page which states that splitter should be used

Re: Why does the example on page 8 of TDPL work without importing std.algorithm for splitter?

2011-01-03 Thread Ellery Newcomer
If you're importing some other phobos module, I would guess an instance of this bug: http://d.puremagic.com/issues/show_bug.cgi?id=314 On 01/03/2011 10:56 AM, Bryce Watkins wrote: However when I use splitter in my code it works without having imported std.algorithm. Thanks, Bryce.