symbolic-demangle
Demangling support for various languages and compilers.
Currently supported languages are:
- C++ (GCC-style compilers and MSVC)
- Rust (both
legacy
andv0
) - Swift (up to Swift 5.2)
- ObjC (only symbol detection)
As the demangling schemes for the languages are different, the supported demangling features are inconsistent. For example, argument types were not encoded in legacy Rust mangling and thus not available in demangled names.
This module is part of the symbolic
crate and can be enabled via the demangle
feature.
Examples
use ;
use ;
let name = new;
assert_eq!;
assert_eq!;
License: MIT