Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Mark a member function as const when it is conceptually not

c++ c++11 constants

Handmade auto template (without using C++0x)

c++ templates c++11

constexpr initialization of array to sort contents

How to detect if a type is shared_ptr at compile time

Is std::unordered_set contiguous (like std::vector)?

Use std::initializer_list in Visual C++ Compiler November 2012 CTP

Can we erase the items in range-based for loop in c++11 [duplicate]

c++ c++11

Why can't I declare a pure virtual function with `= delete;`?

c++ c++11

Why doesn't std::unique_ptr implicitly convert to T* and const T*?

c++ c++11

Difference between C++0x lambdas and operator(), closure and functor

c++ lambda c++11 closures

Can I tell the size of an array created with "new type[n]" in C++?

c++ c++11

How to elegantly return an object that is default-initialized?

Why std::make_move_iterator works on vector<string> but not on vector<int>

How to prohibit the construction of object?

Compiling C++11 in Visual Studio Code [closed]

Is &vec[0] defined behavior for a std::vector vec?

c++ c++11

What is the difference between std::function and std::mem_fn

Was the raw-pointer constructor of shared_ptr a mistake?

how to write a fold /sum function for C++ tuple?

c++ c++11 c++17 stdtuple

How do you pass a std::array?

c++ c++11