Re: GC-less string formatting

2020-10-20 Thread drug via Digitalmars-d-learn

On 10/20/20 9:42 AM, Per Nordlöw wrote:
If I want GC-free string formatting and outputting to stdout/stderr what 
packages should I prefer at code.dlang.org?


Probably https://code.dlang.org/packages/nogc


Re: GC-less string formatting

2020-10-20 Thread rikki cattermole via Digitalmars-d-learn

https://dlang.org/phobos/std_format.html#formattedWrite

Uses GC for exception (so cannot be @nogc yet), but otherwise it should 
be GC free.


GC-less string formatting

2020-10-20 Thread Per Nordlöw via Digitalmars-d-learn
If I want GC-free string formatting and outputting to 
stdout/stderr what packages should I prefer at code.dlang.org?