MCPcopy Create free account
hub / github.com/Neargye/nameof

github.com/Neargye/nameof @v0.10.6

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.10.6 ↗ · + Follow
498 symbols 944 edges 6 files 27 documented · 5% updated 9d agov0.10.6 · 2026-07-04★ 2,340

Browse by type

Functions 350 Types & classes 148
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Github releases Conan package Vcpkg package License Compiler explorer Stand With Ukraine

Nameof C++

Header-only C++17 library provides nameof macros and functions to simply obtain the name of a variable, type, function, macro, and enum.

If you like this project, please consider donating to one of the funds that help victims of the war in Ukraine: https://u24.gov.ua.

Documentation

Features & Examples

  • Nameof

```cpp // Name of variable. NAMEOF(somevar) -> "somevar"

// Name of member variable. NAMEOF(person.address.zip_code) -> "zip_code"

// Name of function. NAMEOF(foo()) -> "foo"

// Name of member function. NAMEOF(somevar.some_method()) -> "some_method" NAMEOF(somevar.some_method

// Name of macro. NAMEOF(LINE) -> "LINE"

// Obtains full name of variable, function, macro. NAMEOF_FULL(somevar.some_method

// Obtains raw name of variable, function, macro. NAMEOF_RAW(somevar.some_method

  • Nameof enum

```cpp enum class Color { RED = 1, BLUE = 2, GREEN = 4 };

auto color = Color::RED; // Name of enum variable. NAMEOF_ENUM(color) -> "RED" nameof::nameof_enum(color) -> "RED"

// Static storage enum variable to string. // This version is much lighter on the compile times and is not restricted to the enum_range limitation. NAMEOF_ENUM_CONST(Color::GREEN) -> "GREEN" nameof::nameof_enum() -> "GREEN"

enum AnimalFlags { HasClaws = 1, CanFly = 2, EatsFish = 4 };

// Enum flags variable to string. auto flag = static_cast(CanFly | EatsFish); NAMEOF_ENUM_FLAG(flag) -> "CanFly|EatsFish" nameof::nameof_enum_flag(flag) -> "CanFly|EatsFish"

// Obtains name of enum variable or default value if enum variable out of range. NAMEOF_ENUM_OR(Color::GREEN, "none") -> "GREEN" NAMEOF_ENUM_OR((Color)0, "none") -> "none" ```

  • Nameof type

```cpp const my::detail::SomeClass

using T = const my::detail::SomeClass

my::detail::Base ptr = new my::detail::Derived(); // Name of type, using rtti. NAMEOF_TYPE_RTTI(ptr) -> "my::detail::Derived" NAMEOF_FULL_TYPE_RTTI(ptr) -> "my::detail::Derived&" NAMEOF_SHORT_TYPE_RTTI(ptr) -> "Derived"

struct A { int this_is_the_name; }; // Obtains name of member. NAMEOF_MEMBER(&A::this_is_the_name) -> "this_is_the_name" nameof::nameof_member<&A::this_is_the_name>() -> "this_is_the_name"

int someglobalvariable = 0; const int someglobalconstvariable = 42; // Obtains name of a function, a global or class static variable. NAMEOF_POINTER(&someglobalconstvariable) == "someglobalconstvariable" nameof::nameof_pointer<&someglobalconstvariable>() == "someglobalconstvariable"

constexpr auto global_ptr = &someglobalvariable; NAMEOF_POINTER(global_ptr) == "someglobalvariable" nameof::nameof_pointer() == "someglobalvariable" ```

Remarks

Integration

You should add required file nameof.hpp.

If you are using vcpkg on your project for external dependencies, then you can use the nameof package.

If you are using Conan to manage your dependencies, merely add nameof/x.y.z to your conan's requires, where x.y.z is the release version you want to use.

Archlinux users can install nameof by package manager AUR, using the following command: yay -S nameof.

Alternatively, you can use something like CPM which is based on CMake's Fetch_Content module.

CPMAddPackage(
    NAME nameof
    GITHUB_REPOSITORY Neargye/nameof
    GIT_TAG x.y.z # Where `x.y.z` is the release version you want to use.
)

Compiler compatibility

Check in the reference for each features.

Licensed under the MIT License

Core symbols most depended-on inside this repo

Shape

Method 220
Class 132
Function 130
Enum 16

Languages

C++100%

Modules by API surface

test/3rdparty/doctest/doctest.h320 symbols
include/nameof.hpp96 symbols
test/test.cpp39 symbols
example/example.cpp19 symbols
test/test_aliases.cpp15 symbols
example/example_custom_name.cpp9 symbols

For agents

$ claude mcp add nameof \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page