joinTypeName

Undocumented in source.
template joinTypeName(args...)
@safe pure
joinTypeName
()

Members

Functions

joinTypeName
auto joinTypeName()
Undocumented in source. Be warned that the author may not have intended to support it.

Examples

assertEquals(joinTypeName!(int, "foo", string, "bar"), "int foo,string bar");
assertEquals(joinTypeName!(const int, "i", immutable char, "c"), "const(int) i,immutable(char) c");

Meta