demangle

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

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

Parameters

buf
Type: const(char)[]

The string to demangle.

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

Suggestion Box / Bug Report