mangleFunc

Mangles a D function.

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

Parameters

T

function pointer type.

fqn
Type: const(char)[]

The fully qualified name of the symbol.

dst
Type: 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.

Suggestion Box / Bug Report