initial commit

This commit is contained in:
dl92
2026-01-06 15:05:27 +00:00
parent a94f174a39
commit 62ab80b1d6
25 changed files with 1291 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
Take Aways:
1. std::string_view: manipulation of strings without the costs of ownership:
i. copying and storing large string objects
implemented as an type storing the first element and lenght of string
see [link](https://stackoverflow.com/questions/20803826/what-is-string-view)
2. Explain sync pattern or idiom in relation to string_view
3. clang-tidy static checking -how does it work?