{fmt} VS Better Enums

Compare {fmt} vs Better Enums and see what are their differences.

SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
{fmt} Better Enums
167 5
21,169 1,713
1.5% 1.8%
9.8 3.7
4 days ago 12 months ago
C++ C++
MIT BSD 2-clause "Simplified" License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

{fmt}

Posts with mentions or reviews of {fmt}. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-12-05.
  • How is my Browser blocking RWX execution?
    1 project | news.ycombinator.com | 7 Jan 2025
    it's probably not chrome because they are using this third party library: (https://github.com/fmtlib/fmt). also, it might be that this sink is actually meant to write a message to the console but due to configuration options its a noop.
  • Move semantics in Rust, C++, and Hylo
    2 projects | news.ycombinator.com | 5 Dec 2024
    Some people are noticing that println is very new. But there already is https://github.com/fmtlib/fmt and it has been there quite a long time.
  • The C23 edition of Modern C is now available for free
    5 projects | news.ycombinator.com | 15 Oct 2024
    It was emulated using horrible macros: https://github.com/fmtlib/fmt/blob/8f5e07656e25ec64ec7c843f0.... IIRC some early versions of `std::tuple` did something similar.
  • Fmt: A Modern and Lightweight C++ Formatting Library
    1 project | news.ycombinator.com | 14 Aug 2024
  • A Modern Formatting Library
    1 project | news.ycombinator.com | 5 Jul 2024
  • C++ left arrow operator (2016)
    1 project | news.ycombinator.com | 24 Mar 2024
    Continuation passing monads form the basis of a perfectly valid and usable software architecture and programming pattern.

    In the case of ostream and operator<<, this pattern reduces the number of intermediate objects that would otherwise be constructed.

    If you object to iostream on religious or stylistic grounds, there's always fmt which is more like Go or Python string interpolation.[0]

    0. https://fmt.dev

  • C++ Game Utility Libraries: for Game Dev Rustaceans
    9 projects | dev.to | 13 Mar 2024
    GitHub repo: fmtlib/fmt
  • Creating k-NN with C++ (from Scratch)
    6 projects | dev.to | 11 Jan 2024
    cmake_minimum_required(VERSION 3.5) project(knn_cpp CXX) # Set up C++ version and properties include(CheckIncludeFileCXX) check_include_file_cxx(any HAS_ANY) check_include_file_cxx(string_view HAS_STRING_VIEW) check_include_file_cxx(coroutine HAS_COROUTINE) set(CMAKE_CXX_STANDARD 20) set(CMAKE_BUILD_TYPE Debug) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) # Copy data file to build directory file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/iris.data DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) # Download library usinng FetchContent include(FetchContent) FetchContent_Declare(matplotplusplus GIT_REPOSITORY https://github.com/alandefreitas/matplotplusplus GIT_TAG origin/master) FetchContent_GetProperties(matplotplusplus) if(NOT matplotplusplus_POPULATED) FetchContent_Populate(matplotplusplus) add_subdirectory(${matplotplusplus_SOURCE_DIR} ${matplotplusplus_BINARY_DIR} EXCLUDE_FROM_ALL) endif() FetchContent_Declare( fmt GIT_REPOSITORY https://github.com/fmtlib/fmt.git GIT_TAG 7.1.3 # Adjust the version as needed ) FetchContent_MakeAvailable(fmt) # Add executable and link project libraries and folders add_executable(${PROJECT_NAME} main.cc) target_link_libraries(${PROJECT_NAME} PUBLIC matplot fmt::fmt) aux_source_directory(lib LIB_SRC) target_include_directories(${PROJECT_NAME} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}) target_sources(${PROJECT_NAME} PRIVATE ${LIB_SRC}) add_subdirectory(tests)
  • Optimizing the unoptimizable: a journey to faster C++ compile times
    1 project | news.ycombinator.com | 7 Jan 2024
    Good catch, thanks! Fixed now. This explains why the difference was kinda low compared to another benchmark: https://github.com/fmtlib/fmt?tab=readme-ov-file#compile-tim....
  • Learn Modern C++
    6 projects | news.ycombinator.com | 26 Dec 2023
    > This is from C++23, right?

    std::println is, yes.

    > I wonder how available this is within compilers

    https://en.cppreference.com/w/cpp/compiler_support says clang, gcc, and msvc all support it, though I don't know how recent those versions are off the top of my head.

    In my understanding, with this specific feature, if you want a polyfill for older compilers, or to use some more cutting-edge features that haven't been standardized yet, https://github.com/fmtlib/fmt is available to you.

Better Enums

Posts with mentions or reviews of Better Enums. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-30.
  • How to convert an enum to string in C++
    4 projects | news.ycombinator.com | 30 Sep 2023
    I really like better_enums instead of magic_enums. There’s no limit on enum size with it: http://aantron.github.io/better-enums/

    It was heavily used at a former employer of mine, so definitely a solid production-ready solution.

  • What C++ library do you wish existed but hasn’t been created yet?
    18 projects | /r/cpp | 8 Jul 2023
    IIRC I then switched to another library doing the same stuff: https://github.com/aantron/better-enums It is not as magical, as it uses a special macro to define the enum, using dedicated syntax. So it only works for enums you yourself define. However, it did work a lot better for me with enums with huge values.
  • Behind the magic of magic_enum
    4 projects | /r/cpp | 12 Feb 2023
    I can't keep up! First we have better enum, then some guy at a conference says we have to use wise enum instead, and now you speak of magic enum!
  • What are some cool modern libraries you enjoy using?
    32 projects | /r/cpp | 18 Sep 2022
  • let's all be chads
    2 projects | /r/ProgrammerHumor | 28 Jul 2022
    If you need a laugh today, look at Better Enums library for C++. If you thought moving from C to C++ would let you leave macros behind, think again! Enums in C++ still suck (a bit less than in C though), so someone built a library to help with that. And it's built on macros. So you can only have 64 entries per enum. And the library's code is barely readable.

What are some alternatives?

When comparing {fmt} and Better Enums you can also consider the following projects:

ZXing - ZXing ("Zebra Crossing") barcode scanning library for Java, Android

American Fuzzy Lop - american fuzzy lop - a security-oriented fuzzer

spdlog - Fast C++ logging library.

Boost.Signals - Boost.org signals2 module

FastFormat - The fastest, most robust C++ formatting library

Klib - A standalone and lightweight C library

Serial Communication Library - Cross-platform, Serial Port library written in C++

stb - stb single-file public domain libraries for C/C++

Scintilla

constexpr-8cc - Compile-time C Compiler implemented as C++14 constant expressions

ZBar - Clone of the mercurial repository http://zbar.hg.sourceforge.net:8000/hgroot/zbar/zbar

Cppcheck - static analysis of C/C++ code

SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured