mutils.stdio

Module to replace std.stdio write functions to @nogc ones

Members

Functions

write
void write(T el)

Writes string to stdout Compared to std.stdio.writeln this writeln is not using GC, can print @disable this() structs, can print core.simd.vector's write is not pure but we will pretend it is to enable write debug

writefln
void writefln(string format, T el)

Writes format to stdout changing %s to proper argument Only %s is supported, it is not printf

writeln
void writeln(T el)

Like write but adds new line at end

writelns
void writelns(T el)

Like writeln but adds space beetwen arguments

Static variables

gTmpStdioStrBuff
char[1024] gTmpStdioStrBuff;
Undocumented in source.

Meta