Initial Course

This commit is contained in:
David Gil de Gómez Pérez
2026-08-11 17:40:36 +03:00
commit 9aed1d1d86
202 changed files with 3420 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# Module 13: C++23 Library Additions
## Learning Goals
- Handle expected success/failure with `std::expected`
- Format and print text with `<format>` and `<print>`
- Work with multidimensional data using `std::mdspan`
- Combine ranges with `views::zip` and `views::chunk`
## Exercises
| Exercise | Feature |
|----------|---------|
| `expected` | std::expected error handling |
| `print_and_format` | std::format and std::print |
| `mdspan` | Multidimensional spans |
| `ranges_zip` | zip, chunk, adjacent views |