Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Is there boost::visit like std::visit, for boost::variant?

Avoid infinite recursion in destructor

What is expected lifetime of std::intializer_list object in C++14?

decltype(auto) vs auto&& to perform generic handling of function's return type

c++ c++14

C++1y/C++14: Converting static constexpr array to non-type template parameter pack?

Why can't templates be deprecated with [[deprecated]]?

c++ templates c++14 deprecated

Can it be safe to keep a copy of an std::initializer_list? What is the rationale?

Why does make_unique have an extra move with a constructor that can take std::bind as an argument?

c++ c++11 c++14

using alias for static member functions?

c++ c++11 c++14

Where in the Standard (C++14) does it say that the following two declarations are equivalent?

c++ language-lawyer c++14

Is it possible to introspect on methods using Boost Hana?

std::equal_range with lambda

capturing everything vs. capturing only some in a lambda

c++ lambda c++14

Is it a bad habit to initialize a unique_ptr using reset?

c++ c++14 unique-ptr

Build Proxygen under Ubuntu 16.04

C++ Recursive Variadic Lambda

Passing a mutable lambda with unique_ptr into a const& std::function

c++ lambda c++14

Why forwarding return value is needed

C++14. Declare a function with same-type-and-fixed-length argument list

Using template parameter in a generic lambda

c++ lambda c++14 c++20