Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is "using std::begin;" a good practice?

How to elegantly modify all elements in a container in-place?

lifetime of an object managed by const std::unique_ptr

c++ c++11 unique-ptr

`#define` a very large number in c++ source code

c++ arrays c++11 compile-time

scope of std::lock_guard inside if block

c++ multithreading c++11 mutex

Initializing a std::string with function return value, is there a copy?

c++ c++11 swap

How does the vector::size() returns size of the vector in constant time?

c++ c++11 stl

Why does std::future::wait_for not wait for the correct duration?

c++ c++11

Can I exclude a number or subrange of numbers inside a range of random numbers in modern C++?

c++ c++11 random c++17

how is auto implemented in C++11

c++ c++11

In-place std::copy_if

c++ c++11 stl

A polymorphic collection of Curiously Recurring Template Pattern (CRTP) in C++?

How can I concisely find all digits in a string without using a loop?

c++ c++11 c++14

Where in the Standard does it say that the declaration `auto f()() ->int;` is not allowed?

c++ c++11 language-lawyer

Checking for existence of an (overloaded) member function

c++ templates c++11 sfinae

Is it useful to mark variables as volatile if they are shared across threads? [duplicate]

Partial specialization for pointer as function return type

c++ templates c++11

C++ compiler does not detect error in class template

c++ templates c++11

RAII state management

c++ c++11 c++14 raii

How to filter object in c++ [duplicate]

c++ c++11 vector lambda