Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

In C++11 and beyond does std::string::operator[] do bounds checking?

C++0x Lambda overhead

How to use lambda auto parameters in C++11

c++ c++11 auto

When to use functors over lambdas

c++ c++11 lambda functor

Most efficient way to return+reset member variable?

c++ c++11 copy move-semantics

C++ member function overloading with & (ampersand)

Why is C++0x's `noexcept` checked dynamically?

c++ exception c++11

Why can't I construct a queue/stack with brace-enclosed initializer lists? (C++11)

What is the purpose of specifying captured variable in lambda expression?

c++ c++11 lambda

Why does std::string("\x00") report length of 0?

Should std::future::wait be using so much CPU? Is there a more performant call?

c++ multithreading c++11

Is it useless to declare a local variable as rvalue-reference, e.g. T&& r = move(v)?

Why does std::tuple break small-size struct calling convention optimization in C++?

Should std::atomic be volatile?

c++ c++11 atomic volatile

Why does the template-id in "A<0>=0" not compile without space because of the greater-or-equal-than operator ">="?

Are infinite std::chrono::duration objects legal?

What does the void() in decltype(void()) mean exactly?

Does casting to a pointer to a template instantiate that template?

New std::map::erase() signature C++17

Can I override a virtual function with a pure virtual one?