concat

Concatenates a series of strings.

template concat(Strs...)
nothrow @nogc
concat
(
void* buffer = (mixin (allocExpr) <= allocaLimit) ? alloca(mixin (allocExpr)) : null
)

Members

Functions

concat
auto concat(void* buffer)
Undocumented in source. Be warned that the author may not have intended to support it.

Manifest constants

allocExpr
enum allocExpr;
Undocumented in source.

Parameters

Strs

a series of string symbols or literals to be concatenated

buffer

optional buffer, implicitly allocated

Return Value

A TempBuffer!char containing the concatenated string. It is kept alive for as long as it is in scope.

Meta