Re: template instance template 'appender' is not defined

2015-05-31 Thread anonymous via Digitalmars-d-learn
On Sunday, 31 May 2015 at 21:33:53 UTC, Assembly wrote: why that page I've linked use std.format? You mean that first example? Simple oversight. It's already fixed in the prerelease version where it imports std.array now: http://dlang.org/phobos-prerelease/std_format.html

Re: template instance template 'appender' is not defined

2015-05-31 Thread Ali Çehreli via Digitalmars-d-learn
On 05/31/2015 02:33 PM, Assembly wrote: appender is in std.array. Ali why that page I've linked use std.format? Some examples simply use appender. For example, the following appears in some of the examples there: import std.array : appender; Ali

Re: template instance template 'appender' is not defined

2015-05-31 Thread Assembly via Digitalmars-d-learn
On Sunday, 31 May 2015 at 21:32:34 UTC, Ali Çehreli wrote: On 05/31/2015 02:30 PM, Assembly wrote: So after a while without write any D code (such a sad time) I'm back. I needed to use appender but it returned a compile error: template instance template 'appender' is not defined I've import

Re: template instance template 'appender' is not defined

2015-05-31 Thread Ali Çehreli via Digitalmars-d-learn
On 05/31/2015 02:30 PM, Assembly wrote: So after a while without write any D code (such a sad time) I'm back. I needed to use appender but it returned a compile error: template instance template 'appender' is not defined I've imported the std.format module but it still doesn't works. What cha

Re: template instance template 'appender' is not defined

2015-05-31 Thread Assembly via Digitalmars-d-learn
I'm aware about format() from std.string but I have some code written which uses appender and I'm a bit affraid that this won't compile anymore