Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Initialize static std::map with non copyable value in a uniformed inline initialization

Passing lambda as template parameter to templated by function-pointer function

Ok to use std::getline() with a moved-from std::string?

c++ c++11 stl c++14 c++17

When explicitly initializing std::optional's, should I use nullopt? [closed]

c++ optional c++17 idioms

Enum class initialization with int

c++ enums initialization c++17

Member initializer list: initialize two members from a function returning a tuple

Using clang-tidy to check c++17 code

c++ c++17 clang-tidy

Why are non member static constexpr variables not implicitly inline?

c++ static inline c++17

In C++, how to make a variant that can contain a vector of of same variant?

Why can I not retrieve the index of a variant and use that to get its content?

c++ c++17 variant

How to remove quotation marks from std::filesystem::path

c++ c++17 std-filesystem

C++ Default constructor not inherited with "using" when move and copy constructors present

Is it possible to static_assert that a lambda is not generic?

std::bind to a std::variant containing multiple std::function types

Cast lambda to std::function with parameter pack

Array class that will accept an braced-init-list and deduce length

If there's an if-constexpr, how come there's no switch-constexpr?

c++ c++17 c++20 if-constexpr

Why is try_emplace not implemented for std::multimap?

c++ c++17

Using std::apply with variadic packs

c++ templates c++17 stdapply

How can I make this variadic template code shorter using features from C++14 and C++1z?