Yomm11 alternatives and similar libraries
Based on the "Frameworks" category.
Alternatively, view Yomm11 alternatives based on common mentions on social networks and blogs.
-
OpenFrameworks
openFrameworks is a community-developed cross platform toolkit for creative coding in C++. -
JUCE
JUCE is an open-source cross-platform C++ application framework for desktop and mobile applications, including VST, VST3, AU, AUv3, RTAS and AAX audio plug-ins. -
Cinder
Cinder is a community-developed, free and open source library for professional-quality creative coding in C++. -
libPhenom
libPhenom is an eventing framework for building high performance and high scalability systems in C. [Apache2] -
BDE
Basic Development Environment - a set of foundational C++ libraries used at Bloomberg. -
LibSourcey
C++14 evented IO libraries for high performance networking and media based applications -
ffead-cpp
Framework for Enterprise Application Development in c++, HTTP1/HTTP2/HTTP3 compliant, Supports multiple server backends -
EASTL
Obsolete repo, please go to: https://github.com/electronicarts/EASTL -
LibU
LibU is a multiplatform utility library written in C, with APIs for handling memory allocation, networking and URI parsing, string manipulation, debugging, and logging in a very compact way, plus many other miscellaneous tasks -
Loki
Loki is a C++ library of designs, containing flexible implementations of common design patterns and idioms. -
Yomm2
Fast, orthogonal, open multi-methods. Solve the Expression Problem in C++17. -
Apache C++ Standard Library
Mirror of Apache C++ Standard Library -
XPLPC - Cross Platform Lite Procedure Call
Cross Platform Lite Procedure Call -
Windows Template Library
A C++ library for developing Windows applications and UI components. [Public] -
Ultimate++
A C++ cross-platform rapid application development framework. [BSD] -
GLib
GLib provides the core application building blocks for libraries and applications written in C. [LGPL] -
ROOT
A set of OO frameworks with all the functionality needed to handle and analyze large amounts of data in a very efficient way. Used at CERN. [LGPL] -
Reason
A cross platform framework designed to bring the ease of use of Java, .Net, or Python to developers who require the performance and strength of C++. [GPL2] -
Cxxomfort
A small, header-only library that backports to C++03 some of the nifty C++11 goodies. [MIT] -
ASL
Adobe Source Libraries provides peer-reviewed and portable C++ source libraries. [MIT]
Access the most powerful time series database as a service
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Yomm11 or a related project?
Popular Comparisons
README
YOMM11 IS DEPRECATED
Thank you for the stars and the feedback!
In 2017 I learned the D language, and I implemented an open method library for D. In the process I had a few fresh ideas, some of which are applicable to C++. Also, my colleague David Goffredo educated me on the power of modern preprocessor macros.
Consequently, I set out to re-implement Yomm11 from scratch. The result is Yomm2, which I feel is a much better library. Read about the improvements here.
I will no longer actively develop Yomm11 but I will consider PRs. I strongly recommend switching to Yomm2 though.
Old content:
This library implements open multi-methods for C++11.
Salient features are:
syntax: is relatively uncluttered. There are no limitations on the number of virtual arguments. Virtual and non-virtual arguments can be arbitrarily mixed. Virtual and multiple inheritance are supported.
speed: close to a virtual function call when the hierarchies involved in the virtual arguments collaborate with the library. Calling a method that does nothing, with a single virtual argument in a single inheritance hierarchy is 33% slower than the equivalent virtual function call. The difference becomes unnoticeable if the functions perform a few simple maths operations. See tests/benchmarks.cpp.
size: dispatch tables are constructed in terms of class groups. This results in a tables devoid of redundancies.
support for "foreign" class hierarchies: the library can be used without modifications to existing classes, at the cost of lower performance. Collaborating and foreign arguments can be freely mixed. Performance is still quite good, see the benchmarks.
next: a pointer to the next most specialized method is available inside method specializations - see examples/next.cpp. Alternatively, it is possible to call a specialization directly.
Documentation: http://www.yorel.be/mm/ - see also the articles on Code Project http://tinyurl.com/m8kg2y3
Support and discussions: yomm11 on Google Groups (https://groups.google.com/forum/#!forum/yomm11)
Author: Jean-Louis Leroy - [email protected]