io.text

Members

Functions

print
size_t print(Stream stream, T args)
size_t print(T args)

Serializes the given arguments to a text representation without a trailing new line.

printf
void printf(Stream stream, string format, T args)
void printf(string format, T args)

Serializes the given arguments according to the given format specifier string.

printfln
void printfln(Stream stream, string format, T args)
void printfln(string format, T args)

Like printf, but also writes a new line.

println
size_t println(T args)

Serializes the given arguments to a text representation followed by a new line.

Properties

byLine
auto byLine [@property getter]

Convenience function for returning a delimiter range that iterates over lines.

byLineCopy
auto byLineCopy [@property getter]

Like byLine, but duplicates each line. Obviously, this is less efficient than using byLine.

Meta

Authors

Jason White