Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Disambiguate overloaded member function pointer being passed as template parameter

c++ templates c++11 typetraits

How do I write an ADL-enabled trailing return type, or noexcept specification?

C++11: std::thread pooled?

Transferring the ownership of object from one unique_ptr to another unique_ptr in C++11?

c++ c++11 std move-semantics

noexcept, stack unwinding and performance

When will Gnu C++ support C++11 without explicitly asking for it?

c++ gcc c++11 gcc4.8

Get min / max value of a static constexpr array at compile time

c++ c++11 constexpr

Cohabitation of boost::shared_ptr and std::shared_ptr

c++ boost c++11 shared-ptr

What is the difference between std::quick_exit and std::abort and why was std::quick_exit needed?

c++ c++11 language-lawyer

Calling a static method by repeating the object name?

c++ c++11

What are declarations and declarators and how are their types interpreted by the standard?

Get index of current element in C++ range-based for-loop

c++ for-loop c++11 iteration

Is it possible to write a function template which returns whether the number of arguments is divisible by N?

Set std::vector<int> to a range

c++ c++11 stl stdvector iota

Initializing std::atomic_bool?

Usage of auto in C++11

c++ c++11 auto

How do shared pointers work?

c++ c++11 shared-ptr

Convert between string, u16string & u32string

Why is std::pair faster than std::tuple

What STL algorithm can determine if exactly one item in a container satisfies a predicate?