Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Function dual to std::move?

c++ c++11 move-semantics

std::enable_if type checking

c++11 std::atomic compare_exchange_weak and the stack container

c++ c++11

Why does access to nested types affect member resolution in C++?

c++ c++11

std::move, std::forward, value type and template deduction

c++ templates c++11

C++ does not compile by uncommenting move operator

Can you initialize an STL container with unique_ptr from an initializer list?

c++11 stl unique-ptr

template metaprogramming with reference

C++ Templates: correct way to return a new type

Debugging SFINAE in gcc or clang

c++ templates gcc c++11 clang

C++ template declaration that restricts specializations too much

Why does case insensitive work with std::hash function for std::unordered_set?

c++ c++11 unordered-set

(n*2-1)%p: avoiding the use of 64 bits when n and p are 32 bits

c++ algorithm c++11 math modulus

do recursive templates producing runtime code?

c++ templates c++11 recursion

Compile time text to number translation (atoi)

Variadic template as parameters to std::function

What are the rules for using constructors vs braced initializer lists for initializing classes and structs?