Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

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?

Can a noexcept function still call a function that throws in C++17?

while statement with initializer

c++ scope initialization c++17

Why does std::filesystem provide so many non-member functions?

Shocked by the strange behavior of unordered_map

c++ c++14 unordered-map c++17

Is it possible to get the first type of a parameter pack in a one-liner?

Is object storage allowed to be implicitly or explicitly reused if lifetime ended?