Nameof fork with modules for modern C++, simply obtain the name of a variable, type, function, macro, and enum
Find a file
2019-10-19 16:20:34 +05:00
doc add NAMEOF_ENUM_NO_CHECK_SUPPORT and NAMEOF_TYPE_NO_CHECK_SUPPORT 2019-10-04 13:57:06 +05:00
example update example 2019-10-09 22:48:06 +05:00
include less compile-time and fix min/max 2019-10-15 16:10:49 +05:00
test update catch 2019-10-09 22:57:30 +05:00
test_package update ci, cmake, conan 2019-08-24 20:34:41 +05:00
.appveyor.yml update ci 2019-10-01 18:43:46 +05:00
.gitignore update gitignore 2019-10-19 16:20:34 +05:00
.travis.yml update ci 2019-10-01 18:43:46 +05:00
CMakeLists.txt v0.9.1 2019-10-02 18:38:47 +05:00
conanfile.py v0.9.1 2019-10-02 18:38:47 +05:00
LICENSE wip v0.6.0 2019-03-20 21:41:51 +05:00
README.md update readme 2019-10-03 19:39:48 +05:00

 _   _                             __    _____
| \ | |                           / _|  / ____|_     _
|  \| | __ _ _ __ ___   ___  ___ | |_  | |   _| |_ _| |_
| . ` |/ _` | '_ ` _ \ / _ \/ _ \|  _| | |  |_   _|_   _|
| |\  | (_| | | | | | |  __/ (_) | |   | |____|_|   |_|
|_| \_|\__,_|_| |_| |_|\___|\___/|_|    \_____|

Github releases Conan package Vcpkg package License Build status Build status Codacy badge Try online

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.

Features

  • C++17
  • Header-only
  • Dependency-free
  • Compile-time
  • Name of variable, member variable
  • Name of type, variable type
  • Name of function, member function
  • Name of enum, enum variable
  • Name of macro
  • Enum to string

Documentation

Examples

  • Nameof

    // Name of variable.
    NAMEOF(somevar) -> "somevar"
    
    // Name of member variable.
    NAMEOF(person.address.zip_code) -> "zip_code"
    
    // Name of function.
    NAMEOF(foo<int, float>()) -> "foo"
    
    // Name of member function.
    NAMEOF(somevar.some_method()) -> "some_method"
    NAMEOF(somevar.some_method<int>()) -> "some_method"
    
    // Name of macro.
    NAMEOF(__LINE__) -> "__LINE__"
    NAMEOF(NAMEOF(structvar)) -> "NAMEOF"
    
  • Nameof enum

    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_CONST_ENUM(Color::GREEN) -> "GREEN"
    nameof::nameof_enum<Color::GREEN>() -> "GREEN"
    
  • Nameof type

    using T = const int&;
    T var = 42;
    // Name of variable type.
    NAMEOF_TYPE_EXPR(var) -> "int"
    NAMEOF_FULL_TYPE_EXPR(var) -> "const int&"
    nameof::nameof_type<decltype(var)>() -> "int"
    nameof::nameof_full_type<decltype(var)>() -> "const int&"
    
    // Name of type.
    NAMEOF_TYPE(T) -> "int"
    NAMEOF_FULL_TYPE(T) -> "const int&"
    nameof::nameof_type<T>() -> "int"
    nameof::nameof_full_type<T>() -> "const int&"
    
  • Compile-time

    constexpr auto somevar_name = NAMEOF(somevar);
    // somevar_name -> "somevar"
    constexpr auto color_name = NAMEOF_ENUM(Color::BLUE); // or nameof::nameof_enum(Color::BLUE)
    // color_name -> "BLUE"
    constexpr auto var_type_name = NAMEOF_TYPE_EXPR(var); // or nameof::nameof_type<decltype(var)>()
    // var_type_name -> "int"
    constexpr auto type_name = NAMEOF_TYPE(T); // or nameof::nameof_type<T>()
    // type_name -> "int"
    

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@neargye/stable to your conan's requires, where x.y.z is the release version you want to use.

Compiler compatibility

  • Clang/LLVM >= 5
  • Visual C++ >= 15.3 / Visual Studio >= 2017
  • Xcode >= 9
  • GCC >= 7 (GCC >= 9 for NAMEOF_ENUM)

Licensed under the MIT License