Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mfreiholz/libmul-cpp
https://github.com/mfreiholz/libmul-cpp
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mfreiholz/libmul-cpp
- Owner: mfreiholz
- Created: 2021-02-24T14:16:03.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-28T06:16:49.000Z (4 months ago)
- Last Synced: 2024-06-28T07:34:13.641Z (4 months ago)
- Language: C++
- Size: 11.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
WIP - Not meant to be used right now
# Manuel's C++ Utility Library (MUL)
A C++ library... \
Easy to build, no other dependencies and everything is written as simple as possible.## Versioning
I try to keep up a semantic versioning and also try not to break the ABI.
## Notes
The project has been structured based on this guide: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p1204r0.html## Submodule Dependency Graph/Layers
| Core |
| Net | Unit |
| Geom |
| Geo |## Coding Rules
**Not allowed:**
- Exceptions
- Spaces for indentation**Musts:**
- Handle errors before return
- Use error codes or similar
- Prefer "expected" type to handle errors and return values
- Write a \*.test.cpp for each file
- Complicated implementations/calculations should always have good explanations (/docs, inline)