Whether or not to accept terminal colour tokens and use them to tint the text.
Output range to sink items into.
Variadic list of things to put into the output range.
import std.array : Appender; Appender!(char[]) sink; .put(sink, "abc", long.min, "def", 456, true); assert((sink.data == "abc-9223372036854775808def456true"), sink.data);
Puts a variadic list of values into an output range sink.