demangle

Demangles D mangled names. If it is not a D mangled name, it returns its argument name.

nothrow pure @safe @nogc
char[]
demangle
(
const(char)[] buf
,
char[] dst = null
)

Parameters

buf const(char)[]

The string to demangle.

dst char[]

An optional destination buffer.

Return Value

Type: char[]

The demangled name or the original string if the name is not a mangled D name.

Meta