Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

hashmap for 2d(3d) coordinates (i.e. vector of doubles)?

c++ hash c++11 hashmap

Calling a function with specific arguments from a variadic templated class

Auto with uniform initialization expands to unexpected type

Does it make sense to use std::unordered_map<int, int> instead of std::map<int, int>?

Most simple way to get string containing time interval

c++ c++11 c++-chrono

Why does std::is_function evaluate to false when using on a dereferenced function pointer?

Branchless way to represent a "ping-pong" value?

c++ function math c++11 numbers

Xcode compiler cannot find C++ 11 includes

xcode c++11

Constructing Vectors in C++

c++ c++11 vector

Why can std::function not accept a deduced type as its template parameter?

is compare_exchange_weak for std::shared_ptr broken in msvs 2013?

Decltype in template parameter of variable

c++ c++11

Initializing a static constexpr from an incomplete type because of a template base class

c++ templates c++11 constexpr

In the example below the function object "rev" is defined in terms of itself. How is this possible?

c++ c++11 lambda functor

Efficiently and elegantly returning emplaced unique_ptr

Let C++ deduce location of the class/namespace a parameter is defined in

c++ c++11

Why does push_back succeed on a struct containing a unique_ptr unless that struct has a custom destructor?

c++ c++11 stl

Get the number of trading days in between two days

c++ boost c++11

std::array member functions empty(), max_size() - useless but for consistency?

c++ c++11 stdarray

Is it valid C++ to cast an rvalue to a const pointer?

c++ c++11 c++03