Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Why does enable_if<>* = nullptr work when enable_if<> = void doesn't?

c++ templates c++17 enable-if

Most efficient safe way to cast std::map<int, std::shared_ptr<Base>> to std::map<int, std::shared_ptr<Derived>>

c++ casting c++17 shared-ptr

Default constructor expression and lvalues

Compile-Time Base64 Decoding in C++

A question about name lookup with friend function

Is it safe to return a static string_view created from a string literal?

Multi-dimension array template with dimension deduction

Why can't I create a std::string_view from std::string iterators?

Recursively defining and visiting a `boost::variant` using an `std::vector` containing an incomplete type - libstdc++ vs libc++

std::optional<std::reference_wrapper<T>> - is it OK?

How to define a class that can save variadic template arguments?

C++17 support Eclipse Neon

c++ eclipse-cdt c++17

How do I get a code point literal in utf8

c++ utf-8 c++17

Difference between indexing operator ([]) of string and string_view

c++ c++17

Possibility of store object type for std::any

Mixing void_t and variadic templates?

Const casting empty base class

Why does auto return type lose move semantics in this example?

c++ templates auto c++17

Is prvalue elision allowed in throw expressions

What's the syntax to partially specialize a parmeter pack argument for void type?