Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Constexpr parser hex string literal to std::array<std::uint8_t, Size> c++ 17

c++ c++17 metaprogramming

Can you construct a string from `volatile const char*` ? (without using `const_cast`)

c++ c++17 volatile const-cast

MSVC: static struct std::atomic<bool> Test::g_test has different type

Initialization order of inline variables

c++ c++17 inline-variable

How to make a conversion from std::string_view to std::string

using-declaration may not name namespace

c++ namespaces c++17 using

`bool n;` `n++;` is invalid but `n=n+1;` or `n=n+3` such things works what's the significance of this?

c++ boolean c++17 increment

Pass by Reference an vector inline

c++ vector c++17

Can I detect an integer type without listing all of them as template specializations?

c++ c++17 constexpr

How to assign a value to std::variant? [duplicate]

c++ c++17

Cleaner way to specify type to get from a std::variant?

c++ c++17 std-variant

g++ std::variant seems can't support user class with std::atomic/std::mutex variable member (with detail/code)

Are XOR linked lists still allowed in C++17?

Template specialization for variadic template

Can calls to member functions of function parameters be used as template arguments?

Implement is_destructible with Detected Idiom

Does providing an explicit deduction guide disable the generation/formation of implicit deduction guides

How the synchronized_pool_resource actually works?

c++ c++17 allocator c++pmr

What is the cleanest way of defining a no-delete pointer?

c++ c++17 smart-pointers

count std::optional types in variadic template tuple