profiles
profiles copied to clipboard
site for discussing profiles design
I suggest adding topics such as `cpp`, `cplusplus`, `memory-safety` in the About section
Hi, I'm curious how the idea of "profiles" intersects with ideas about specifying or restricting "side effects" that code can use For example, I might be trying to develop code...
This issue expands a question raised by @FalcoGer in https://github.com/BjarneStroustrup/profiles/issues/3#issuecomment-1850526165_ The question there, reworded, is this: say I write some library code and then annotate it as satisfying some profile....
Hello @BjarneStroustrup First of all, thank you for your groundbreaking contributions to the development of the C++ programming language. It is truly appreciated. [Based on your talk](https://youtu.be/eo-4ZSLn3jc?si=PYDU4kmW41WKOtSF&t=3235), I assume that...
I was just thinking about this situation and I dont know if the Profiles idea already include something like the following, if so, just disregard this text. It seems like...
I'm not really experienced enough with C++ compiler architecture to have a thorough opinion on the design of this, but I think profiles should be something like composable rules or...
I am not sure if I am doing this right, but it would be great to upper bounds on execution of code paths. if there were some way to normalize...
Will profiles permit me to create a type on which it will be illegal to obtain a reference or pointer on? One way to ensure referential integrity is to prevent...
This is more in line with C++0x concept design and other languages such as Swift, Rust, Haskell etc. Now that C++ has concepts, it would be nice to have a...
I was thinking about memory safety recently but I'm still learning C++ and I'm not an advanced user but based on all the lectures I've watched I had this simple...