Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

unit testing C++11 closures

std::pow produce different result in 32 bit and 64 bit application

c++ c++11 x86-64

What is the most compact way to extract the template arguments of a class and iterate over them?

Variadic templates and multiple inheritance in c++11

decltype parenthesis syntax for a lvalue

c++ c++11 typetraits decltype

Lambda function with different signatures from std::function

c++ c++11 lambda

How to avoid duplicate values in maps using c++

c++ c++11

How to use comparison expressions in C++ templates?

c++ c++11

can I std::find a string in a stringstream?

c++ c++11 find std

Does standard C++11 guarantee that temporary object passed to a function will have been destroyed after the end of the function?

Why C++ standard requires std::partition to meet different complexities for different types of iterator?

c++ algorithm c++11

Implicit conversion and operator overloading

c++ c++11

Writing more general pointer code

c++ c++11 smart-pointers

Why running std::thread with empty function spend a lot of memory

return type of deleted functions in c++11

Template Argument Deduction from String Literal

What Does ({}); Mean in C++?

c++ c++11 scope

Clone pattern for std::shared_ptr in C++

Cartesian Product using Iterators and Variadic Templates

c++ c++11 c++14

why std::move takes forward_reference instead of lvaue reference [duplicate]

c++ c++11 move-semantics