reading file byLine

via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Wed Sep 2 13:03:51 PDT 2015


On Wednesday, 2 September 2015 at 15:04:10 UTC, cym13 wrote:
> You can also reset a variable to its initial state (what you 
> would hav had if you hadn't initialized it) using:
>
> buffer.init();

Huh? That doesn't work... Instead, use:

     buffer = buffer.init;


More information about the Digitalmars-d-learn mailing list