mangleFunc

Mangles a D function.

@safe pure nothrow
char[]
mangleFunc
(
T : FT*
FT
)
(
return scope const(char)[] fqn
,
return scope char[] dst = null
)
if (
is(FT == function)
)

Parameters

T

function pointer type.

fqn const(char)[]

The fully qualified name of the symbol.

dst char[]

An optional destination buffer.

Return Value

Type: char[]

The mangled name for a function with function pointer type T and the given fully qualified name.

Meta