MayaFlux 0.4.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ strip_namespaces()

std::string_view MayaFlux::Reflect::detail::strip_namespaces ( std::string_view  name)
inlinenoexcept

Definition at line 11 of file TypeInfo.hpp.

12 {
13 auto pos = name.rfind(':');
14 return (pos != std::string_view::npos) ? name.substr(pos + 1) : name;
15 }

Referenced by MayaFlux::Reflect::short_dynamic_type_name(), and MayaFlux::Reflect::short_type_name().

+ Here is the caller graph for this function: