https://github.com/ufoym/cpp-core-guidelines-cheatsheet
Cheatsheet for the C++ core guidelines, including a set of tried-and-true guidelines, rules, and best practices about coding in C++.
https://github.com/ufoym/cpp-core-guidelines-cheatsheet
Last synced: 8 months ago
JSON representation
Cheatsheet for the C++ core guidelines, including a set of tried-and-true guidelines, rules, and best practices about coding in C++.
- Host: GitHub
- URL: https://github.com/ufoym/cpp-core-guidelines-cheatsheet
- Owner: ufoym
- License: mit
- Created: 2022-03-29T02:54:50.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-30T00:03:48.000Z (over 3 years ago)
- Last Synced: 2024-10-29T21:47:21.976Z (about 1 year ago)
- Size: 1010 KB
- Stars: 551
- Watchers: 31
- Forks: 17
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Awesome-Gamedev - link
README
# cpp-core-guidelines-cheatsheet
Cheatsheet for [the C++ core guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) (by Bjarne Stroustrup & Herb Sutter), including a set of tried-and-true guidelines, rules, and best practices about coding in C++.
- [x] P: Philosophy
- [ ] I: Interfaces
- [ ] F: Functions
- [ ] C: Classes and class hierarchies
- [ ] Enum: Enumerations
- [ ] R: Resource management
- [ ] ES: Expressions and statements
- [ ] Per: Performance
- [ ] CP: Concurrency and parallelism
- [ ] E: Error handling
- [ ] Con: Constants and immutability
- [ ] T: Templates and generic programming
- [ ] CPL: C-style programming
- [ ] SF: Source files
- [ ] SL: The Standard Library
---
### P: Philosophy
- [[Download PDF]](Philosophy.pdf)
- [[Download PNG Image]](Philosophy.png)
