Sometimes I wonder whatever something went wrong, but who cares? #cpp14 #cpp

BMEngine's tweet image. Sometimes I wonder whatever something went wrong, but who cares? #cpp14 #cpp

Why does this snippet of code crashes online c++ compiler? stackoverflow.com/questions/7198… #cpp #cpp14

overflow_meme's tweet image. Why does this snippet of code crashes online c++ compiler? stackoverflow.com/questions/7198… #cpp #cpp14

Here’s an attempt to think of all the nuances of the C++ language in order to write error-free code. Thank God PVS-Studio exists. :) #cpp #cpp11 #cpp14 #cpp17 #cpp20 #undefinedbehaviour


In-class Member Initialisation: From C++11 to C++20 buff.ly/3dQuT4M #programming #cpp11 #cpp14 #cpp20

fenbf's tweet image. In-class Member Initialisation: From C++11 to C++20 buff.ly/3dQuT4M

#programming #cpp11 #cpp14 #cpp20

Another day, another blog post :) C++ Lambda Week: Going Generic buff.ly/33wmilp #programming #cpp #cpp14 #cpp20

fenbf's tweet image. Another day, another blog post :)

C++ Lambda Week: Going Generic buff.ly/33wmilp

#programming #cpp #cpp14 #cpp20
fenbf's tweet image. Another day, another blog post :)

C++ Lambda Week: Going Generic buff.ly/33wmilp

#programming #cpp #cpp14 #cpp20

Heterogeneous Lookup in Ordered Containers, C++14 Feature j.mp/2HGiWBa #programming #cpp #cpp14

fenbf's tweet image. Heterogeneous Lookup in Ordered Containers, C++14 Feature j.mp/2HGiWBa

#programming #cpp #cpp14

Heterogeneous Lookup in Ordered Containers, C++14 Feature buff.ly/3xpHSDv #programming #cpp #cpp14 #cpp20

fenbf's tweet image. Heterogeneous Lookup in Ordered Containers, C++14 Feature buff.ly/3xpHSDv

#programming #cpp #cpp14 #cpp20

Heterogeneous Lookup in Ordered Containers, C++14 Feature buff.ly/3xpHSDv #programming #cpp #cpp14

fenbf's tweet image. Heterogeneous Lookup in Ordered Containers, C++14 Feature buff.ly/3xpHSDv

#programming #cpp #cpp14

Heterogeneous Lookup in Ordered Containers, C++14 Feature buff.ly/3xpHSDv #programming #cpp #cpp14

fenbf's tweet image. Heterogeneous Lookup in Ordered Containers, C++14 Feature buff.ly/3xpHSDv

#programming #cpp #cpp14

The last one! C++ Lambda Week: Some Tricks buff.ly/2PyURz4 And what are your tricks with lambda expressions? for example +[]() was on a t-shirt from the last @code_dive_pl conference! :) #programming #cpp #cpp14 #cpp17

fenbf's tweet image. The last one!

C++ Lambda Week: Some Tricks buff.ly/2PyURz4

And what are your tricks with lambda expressions?

for example +[]() was on a t-shirt from the last @code_dive_pl conference! :)

#programming #cpp #cpp14 #cpp17

Is it possible to wrap C-style callbacks so that you can use C++ lambdas with them? stackoverflow.com/questions/6852… #cpp14 #cpp #lambda #functionpointers #closures

overflow_meme's tweet image. Is it possible to wrap C-style callbacks so that you can use C++ lambdas with them? stackoverflow.com/questions/6852… #cpp14 #cpp #lambda #functionpointers #closures

Check out my post, "Control your numbers", you will learn about a feature that helps you keep your variables readable. bit.ly/482o3FJ #cplusplus #cpp #cpp14


directly returning a lambda (#cpp14 - generic lambdas feature): "... auto CreateAddLambda(int y) { return [y](int x) { return x + y; }; } int main() { auto tenPlus = CreateAddLambda(10); return tenPlus(32); } "

Check out my article on lambdas: 5 Curious C++ Lambda Examples: Recursion, constexpr, Containers and More bit.ly/3yCnplf Bonus: C++23 technique included ) #programming #cpp #cpp23



In my latest blog post, "Control your numbers", you will learn about a feature that helps you keep your variables readable. andreasfertig.blog/2023/09/contro… #cplusplus #cpp #cpp14


SO post of the day: "Initialize std::tuple with classes which have two or more arguments" #cpp #cpp14 #stdtuple stackoverflow.com/questions/7558…


SO post of the day: "Does a constant reference member variable in an anonymous struct extend the lifetime of a temporary?" #cpp #cpp14 #language_lawyer #lifetime stackoverflow.com/questions/7518…


std::vector doesn't call move constructor with objects with noexcept move constructs - Visit programmatic.solutions/2lp3wp/stdvect… for the solution. #cpp #cpp14 #copy_constructor #move_semantics #move_constructor


In-class Member Initialisation: From C++11 to C++20 buff.ly/3dQuT4M #programming #cpp11 #cpp14 #cpp20

fenbf's tweet image. In-class Member Initialisation: From C++11 to C++20 buff.ly/3dQuT4M

#programming #cpp11 #cpp14 #cpp20

Why does this snippet of code crashes online c++ compiler? stackoverflow.com/questions/7198… #cpp #cpp14

overflow_meme's tweet image. Why does this snippet of code crashes online c++ compiler? stackoverflow.com/questions/7198… #cpp #cpp14

Sometimes I wonder whatever something went wrong, but who cares? #cpp14 #cpp

BMEngine's tweet image. Sometimes I wonder whatever something went wrong, but who cares? #cpp14 #cpp

Heterogeneous Lookup in Ordered Containers, C++14 Feature j.mp/2HGiWBa #programming #cpp #cpp14

fenbf's tweet image. Heterogeneous Lookup in Ordered Containers, C++14 Feature j.mp/2HGiWBa

#programming #cpp #cpp14

Another day, another blog post :) C++ Lambda Week: Going Generic buff.ly/33wmilp #programming #cpp #cpp14 #cpp20

fenbf's tweet image. Another day, another blog post :)

C++ Lambda Week: Going Generic buff.ly/33wmilp

#programming #cpp #cpp14 #cpp20
fenbf's tweet image. Another day, another blog post :)

C++ Lambda Week: Going Generic buff.ly/33wmilp

#programming #cpp #cpp14 #cpp20

Heterogeneous Lookup in Ordered Containers, C++14 Feature buff.ly/3xpHSDv #programming #cpp #cpp14 #cpp20

fenbf's tweet image. Heterogeneous Lookup in Ordered Containers, C++14 Feature buff.ly/3xpHSDv

#programming #cpp #cpp14 #cpp20

Is it possible to wrap C-style callbacks so that you can use C++ lambdas with them? stackoverflow.com/questions/6852… #cpp14 #cpp #lambda #functionpointers #closures

overflow_meme's tweet image. Is it possible to wrap C-style callbacks so that you can use C++ lambdas with them? stackoverflow.com/questions/6852… #cpp14 #cpp #lambda #functionpointers #closures

no viable conversion from returned value of type const_iterator to iterator stackoverflow.com/questions/3623… #cpp11 #templates #cpp14 #cpp #concurrency

overflow_meme's tweet image. no viable conversion from returned value of type const_iterator to iterator stackoverflow.com/questions/3623… #cpp11 #templates #cpp14 #cpp #concurrency

What's the difference between =delete for templates and just using explicit? stackoverflow.com/questions/6891… #cpp #cpp11 #cpp14 #cpp17

overflow_meme's tweet image. What's the difference between =delete for templates and just using explicit? stackoverflow.com/questions/6891… #cpp #cpp11 #cpp14 #cpp17

Loading...

Something went wrong.


Something went wrong.


United States Trends