dtext

Convenience functions for converting one or more arguments of any type into text (the three character widths).

dstring
dtext
(
T...
)
()
if (
T.length > 0
)

Examples

assert( text(42, ' ', 1.5, ": xyz") == "42 1.5: xyz"c);
assert(wtext(42, ' ', 1.5, ": xyz") == "42 1.5: xyz"w);
assert(dtext(42, ' ', 1.5, ": xyz") == "42 1.5: xyz"d);

Meta