Hacker News
- The C++ tadpole operators explained http://blogs.msdn.com/b/oldnewthing/archive/2015/05/26/10617079.aspx 10 comments
- C++ named operators https://github.com/klmr/named-operator 29 comments
Lobsters
- New C++ experimental feature: The tadpole operators http://blogs.msdn.com/b/oldnewthing/archive/2015/05/25/10616865.aspx 5 comments c
- Making the C++ conditional operator overloadable https://mattkretz.github.io/2019/07/25/making-the-conditional-operator-overloadable.html 21 comments cpp
- Challenge your performance intuition with C++ operators http://wordsandbuttons.online/challenge_your_performance_intuition_with_cpp_operators.html 6 comments programming
- C++ operator precedence problem http://venus.cs.qc.edu/~waxman/211/cs211%20practice_files/image002.jpg 5 comments learnprogramming
- [RFC] Adding variadic operators to the next C++ standard https://github.com/ombre5733/cpp_variadic_operators_proposal/blob/master/proposal.md 30 comments cpp
- Why is my C++ character operation code not working? https://gist.github.com/anonymous/f18e2de41f2f828fc4e8fc1d7127da2f 5 comments learnprogramming
- C++ Coroutines: Understanding operator co_await https://lewissbaker.github.io/2017/11/17/understanding-operator-co-await 15 comments cpp
- Conditional ternary operator ( ? ) in C++ https://www.reddit.com/r/learnprogramming/comments/6prw58/conditional_ternary_operator_in_c/ 7 comments learnprogramming
- The long arrow operator in C++ http://cukic.co/2017/07/12/the-long-arrow-operator-in-cxx/ 25 comments cpp
- Operating principles for evolving C++ http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0559r0.pdf 3 comments cpp
- An amazing set of resources for optimizing C++ and assembly for different processors and operating systems. http://www.agner.org/optimize/ 17 comments programming
- A bit of background for the operator dot proposal—Bjarne Stroustrup : Standard C++ https://isocpp.org/blog/2016/02/a-bit-of-background-for-the-operator-dot-proposal-bjarne-stroustrup 20 comments cpp
- Abusing C++ operators http://www.curly-brace.com/aspartame.html 24 comments programming
- Rust for C++ programmers part 3: primitive types and operators http://featherweightmusings.blogspot.co.nz/2014/04/rust-for-c-programmers-part-3-primitive.html 8 comments rust
- Operator Overloading: Scala vs. C++ http://dynamicsofprogramming.blogspot.co.uk/2012/04/operator-overloading-scala-vs-c.html 11 comments scala
- Operator Overloading: Scala vs. C++ http://dynamicsofprogramming.blogspot.co.uk/2012/04/operator-overloading-scala-vs-c.html 27 comments programming
- UNIXlite - a lightweight operating system written in C++ http://sourceforge.net/projects/unixlite/ 3 comments osdev
- 10 Rules for Operator Overloading in C++ http://www.engineeringblog.indiabtech.com/2009/10/10rules-for-operator-overloading-in-cpp/ 3 comments cpp
- Android Operating System: One Potential Vulnerability per 4000 Lines of C++ Code https://medium.com/@cpp_coder/android-operating-system-one-potential-vulnerability-per-4000-lines-of-c-code-85041585927b 11 comments programming
- Android Operating System: One Potential Vulnerability per 4000 Lines of C++ Code https://medium.com/@cpp_coder/android-operating-system-one-potential-vulnerability-per-4000-lines-of-c-code-85041585927b 12 comments coding
- ELI5 : In C++ what is the function of the operator (' ->* ') ? https://www.reddit.com/r/learnprogramming/comments/5x76q4/eli5_in_c_what_is_the_function_of_the_operator/ 5 comments learnprogramming
- GitHub - SamyPesse/How-to-Make-a-Computer-Operating-System: How to Make a Computer Operating System in C++ https://github.com/samypesse/how-to-make-a-computer-operating-system 8 comments cpp
- help with using friend and overloading operators C++ https://gist.github.com/2034920 3 comments learnprogramming
- C++ doesn't know how to do customization points that aren't operators https://quuxplusone.github.io/blog/2018/08/23/customization-point-or-named-function-pick-one/ 18 comments cpp
- C++ Comma Operator: Introduction to our filthy friend http://blog.codeisc.com/2017/12/26/cpp-comma-operator-introduction.html 8 comments programming
- C++ Comma Operator: Introduction to our filthy friend http://blog.codeisc.com/2017/12/26/cpp-comma-operator-introduction.html 54 comments cpp
- New C++ experimental feature: The tadpole operators https://blogs.msdn.microsoft.com/oldnewthing/20150525-00/?p=45044/ 61 comments programming
- New C++ experimental feature: The tadpole operators http://blogs.msdn.com/b/oldnewthing/archive/2015/05/25/10616865.aspx 27 comments coding
- New C++ experimental feature: The tadpole operators http://blogs.msdn.com/b/oldnewthing/archive/2015/05/25/10616865.aspx 15 comments cpp
- The many faces of operator new in C++ http://eli.thegreenplace.net/2011/02/17/the-many-faces-of-operator-new-in-c/ 23 comments programming
- Demo of SerenityOS (from-scratch C++ operating system) at Handmade Seattle https://media.handmade-seattle.com/serenityos/ 24 comments cpp
- Rust macros are amazing. I recently ran into a profound limitation of C++ at my job trying to apply an operation to a collection of identifiers https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=f30756e54d5fce01d44de67312e841d5 10 comments rust
- Startup Cloudius announces OSv, a new C++ open-source VM operating system http://isocpp.org/blog/2013/09/startup-cloudius-announces-osv-a-new-c-open-source-vm-operating-system 9 comments cpp
- TIL essentially every C++ operator precedence table I have ever referred to places ?: at the wrong precedence level (x-post r/cpp) http://operator-precedence.com/?page=cppternary 6 comments programming
- TIL essentially every C++ operator precedence table I have ever referred to places ?: at the wrong precedence level http://operator-precedence.com/?page=cppternary 35 comments cpp
- You guys might be interested in AngelScript. It's a simple approximation of OO C++ with const, refs, overloads, operators, classes, interfaces etc. Designed for one-line binding to C++. http://www.angelcode.com/angelscript/ 14 comments cpp
- Today I had 21485 lines of C++ compiler output, because of a operator<<(...) function template I added. This is my longest compiler output so far, it took emacs 8 Seconds on my Core i7 machine to scroll to the end of the output. Just thinking, "Templates, you are doing it wrong." http://dl.dropbox.com/u/26474870/compiling_cplusplus_source_canhazlongerror.png 14 comments programming
- Amazing Collection of Computer Science Video Lectures (Haskell, OO Programming in C++ & Java, Operating Systems, Data Mining, Networking and many more!) http://xrl.us/bb3wf 14 comments programming