Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

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

How to create a tuple of vectors of type deduced from a variadic template in C++17?

Is C++17 copy elision applied to placement new?

c++ c++17

Difference in overload selection of user-defined conversion operator between clang and gcc

c++ c++17 language-lawyer

Create an array inside a lambda capture

c++ c++17

tbb:concurrent_hash_map<K,V>: sample code for Intel Threading Building Blocks (TBB)

Extracting parameter from auto template parameter callback [duplicate]

Is taking a reference from a temporary valid C++ code?

Why does the derived class have access to the private field of the base class?

c++ inheritance c++17 friend

Why does std::vector's swap function have a different noexcept specification than all other container's swap functions?

Modern approach to making std::vector allocate aligned memory

Why does std::vector CTAD accept both int and double?

c++ c++17 ctad

Can be the number of uncaught exceptions be more than one?

c++ exception c++17

Largest value representable by a floating-point type smaller than 1

Is `reinterpret_cast` actually good for anything?

`std::is_same_v<size_t, uint64_t>` evaluates to `false` when both types are 8 bytes long