dgt.io

@nogc printing functions

Members

Functions

print
void print(int value)

Print the integer to stdout

print
void print(double value)

Print the double to stdout

print
void print(T obj)

Call the print function of the object

print
void print(T[] items)

Print an array of items

print
void print(T[] items)

Print a string (special case of an array)

print
void print(T obj, A a)

/Print some number of objects

println
void println(A values)

Print some number of objects followed by a newline

Meta