Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

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

Custom iterator for use in `std::sort`

c++ c++17

Test if elements are sorted with C++17 fold-expression

c++ c++17 fold-expression

Does "if constexpr(something false)" ALWAYS omit template instantiation

Fill a C++ array with numbers according to a pattern

c++ lambda c++17

overloading std::to_string and std::to_chars for a custom type?

c++ c++17 std

Move object from local variable to std::shared_ptr

What is the difference between std::trivially_copyable_v and std::is_pod_v (std::is_standard_layout && std::is_trivial_v)

c++ c++17 type-traits