Home

Awesome

This repository contains single-header libraries from the Magnum engine.

Join the chat at https://gitter.im/mosra/magnum Build Status MIT License

LIBRARIES

There are the following single-header libraries at the moment. This list will grow with more Magnum features being exposed this way.

LibraryLoCPpLoC<sup>[1]</sup>Description
CorradeArrayView.h9142026Containers::ArrayView and Containers::StaticArrayView, lightweight alternatives to std::span
CorradeStridedArrayView.h1313<sup>[2]</sup>2858Containers::StridedArrayView, multi-dimensional strided array view. Depends on CorradeArrayView.h.
CorradeArray.h1060<sup>[2]</sup>2727Containers::Array and Containers::StaticArray, lightweight alternatives to std::vector and std::array. Depends on CorradeArrayView.h.
CorradeGrowableArray.h1067<sup>[2]</sup>4311Growable APIs for Containers::Array. Depends on CorradeArray.h.
CorradeEnumSet.h2651705Containers::EnumSet, a type-safe set of bits
CorradeFunction.h5111919Containers::Function, a lightweight alternative to std::function
CorradeOptional.h4561879Containers::Optional, a lightweight alternative to std::optional
CorradePair.h4201745Containers::Pair, a lightweight alternative to std::pair
CorradePointer.h3811786Containers::Pointer, a lightweight alternative to std::unique_ptr
CorradeReference.h1311630Containers::Reference, a lightweight alternative to std::reference_wrapper
CorradeScopeGuard.h2631706Containers::ScopeGuard, a lightweight alternative to std::unique_ptr with a custom deleter
CorradeString.hpp2515<sup>[2]</sup>2192Containers::String and Containers::StringView, lightweight and optimized string (view) classes. Depends on CorradeEnumSet.h, the implementation depends on CorradePair.h and CorradeCpu.hpp.
CorradeTriple.h4641762Containers::Triple, a lightweight alternative to a three-component std::tuple
CorradeCpu.hpp17161995Cpu library, compile-time and runtime CPU feature detection and dispatch
CorradeStlForwardArray.h8897<sup>[3]</sup>Corrade's forward declaration for std::array, a lightweight alternative to the full <array> (15k PpLOC<sup>[1]</sup>) where supported
CorradeStlForwardString.h8968Corrade's forward declaration for std::string, a lightweight alternative to the full <string> (11k PpLOC<sup>[1]</sup>) where supported
CorradeStlForwardTuple.h1022228Corrade's forward declaration for std::tuple, a lightweight alternative to the full <tuple> (13k PpLOC<sup>[1]</sup>) where supported
CorradeStlForwardVector.h77498<sup>[3]</sup>Corrade's forward declaration for std::vector, a lightweight alternative to the full <vector> (9k PpLOC<sup>[1]</sup>) where supported
CorradeStlMath.h733222<sup>[4]</sup>Corrade's optimized <cmath>, without the heavy C++17 additions (which is otherwise 11k PpLOC<sup>[4]</sup>)
MagnumMath.hpp795010096Math namespace, a full-featured graphics-oriented linear algebra library

<sup>[1]</sup> — lines of code after a preprocessor run, with system includes expanded. Gathered using GCC 13.2 and libstdc++, unless said otherwise.

<sup>[2]</sup> — not a total size due to inter-library dependencies

<sup>[3]</sup> — gathered using Clang 16.0 and libc++, since libstdc++ doesn't have a forward declaration for std::array / std::vector

<sup>[4]</sup> — gathered using GCC 13.2, libstdc++ and -std=c++17

Where is the documentation?

Single-header libraries provided here are generated from multi-file sources in the Magnum project. This is done for two reasons — first, documentation and test coverage is much easier to maintain in the setting of a bigger project, avoiding any redundancy or duplicated efforts. Second, because the resulting files are generated with non-essential parts stripped away, there's no need to worry about bloating them due to original implementations having extensive documentation or rarely used features.

With the goal being easy integration, the files are deliberately free of all comments and documentation blocks to keep their size small. Documentation for each library is provided in the official Magnum documentation, linked from the table above. Each library file contains the same documentation link, together with a concrete Git revision it was generated from and a changelog for a few versions back for easier overview when updating.

For more information read the single-header library docs. The libraries are generated using acme.py, which is a part of Corrade. See its documentation, if you are interested. Particular libraries are introduced on the Magnum blog:

What about test coverage?

Testing done in this repository is mainly to ensure the libraries are generated correctly. Extensive testing on variety of compilers and OSes with > 99% test coverage is done in the Magnum Project itself. See the Build Status page for more information.

Reporting bugs and contributing

As always, bug reports, feature requests and code contributions are very welcome. However again please note the files in this repository are generated from original sources in the corrade and magnum repositories, meaning that ideally all PRs should go there instead, as there's a better infrastructure for documentation and testing. We don't enforce this rule though — if you have an important bugfix, it's better if you submit it here than not at all 😉

SUPPORTED PLATFORMS

All libraries are tested on these platforms:

And on these compilers:

CONTACT & SUPPORT

See also the Magnum Project Contact & Support page for further information.

Credits

Libraries presented here are a result of a dedicated work by many community members. List of all contributors to the Magnum Project can be found in the documentation.

License

Magnum is licensed under the MIT/Expat license, see the COPYING file for details.