dgt.io

@nogc printing functions

Members

Functions

print
void print(in int value)

Print the integer to stdout

print
void print(in double value)

Print the double to stdout

print
void print(in T obj)

Call the print function of the object

print
void print(in T[] items)

Print an array of items

print
void print(in T[] items)

Print a string (special case of an array)

print
void print(in T obj, in A a)

Print some number of objects

println
void println(in A values)

Print some number of objects followed by a newline

Meta