Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Default function that just returns the passed value?

Why start with std::placeholders::_1 instead of _0?

c++ c++11 placeholder stdbind

What is "member initializer" in C++11?

Is it possible to move an item out of a std::set?

c++ c++11

Where can we use list initialization?

Function signature as template parameter

c++ templates c++11

Can I overload functions with type-traits?

Extract range of elements from char array into string

c++ arrays string c++11 stdarray

Calling a member function if it exists, falling back to a free function and vice-versa

c++ c++11 sfinae

SFINAE: "enable_if cannot be used to disable this declaration"

c++ c++11 sfinae clang++

Is there a difference between [&foo]{ ... } capture and [foo]{ ... } capture if 'foo' is a reference variable?

c++ lambda c++11

C++11: ill-formed calls are undefined behavior?

Compile time computing of number of bits needed to encode n different states

Why don't unordered associative containers implement the less than operator?

c++ c++11 stl std

Iterator for a subset of a vector

c++ c++11 vector range

No error for negative-size array

c++ arrays c++11 stdarray

Why does add function have no effect in c++ 11 thread?

Function return a tuple made of vectors

c++ function c++11 tuples

remove not working correctly

Design of constexpr classes : merging constexpr and non-constexpr versions?